aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/flame_graphs
diff options
context:
space:
mode:
Diffstat (limited to 'flame_graphs')
-rw-r--r--flame_graphs/flame_graph_output_long.svg34165
-rw-r--r--flame_graphs/flame_graph_output_simple.svg31789
2 files changed, 65954 insertions, 0 deletions
diff --git a/flame_graphs/flame_graph_output_long.svg b/flame_graphs/flame_graph_output_long.svg
new file mode 100644
index 0000000..7041d32
--- /dev/null
+++ b/flame_graphs/flame_graph_output_long.svg
@@ -0,0 +1,34165 @@
+<?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="1142" onload="init(evt)" viewBox="0 0 1400 1142" 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="1142.0" fill="url(#background)" />
+<text id="title" x="700.00" y="24" >Flame Graph</text>
+<text id="details" x="10.00" y="1125" > </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="1125" > </text>
+<g id="frames">
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="494.0" y="805" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="497.01" y="815.5" ></text>
+</g>
+<g >
+<title>mb_clear_bits (10,101,010 samples, 0.03%)</title><rect x="154.5" y="501" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="157.51" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="560.4" y="741" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="563.45" y="751.5" ></text>
+</g>
+<g >
+<title>__release_sock (10,101,010 samples, 0.03%)</title><rect x="10.0" y="789" width="0.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="13.00" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.06%)</title><rect x="573.0" y="677" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="575.96" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="488.8" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="491.84" y="735.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="160.1" y="725" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="163.12" y="735.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="554.4" y="565" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="557.41" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="258.5" y="565" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="261.48" y="575.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="610.5" y="645" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="613.49" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (40,404,040 samples, 0.13%)</title><rect x="318.4" y="677" width="1.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="321.44" y="687.5" ></text>
+</g>
+<g >
+<title>cimple-server (868,686,860 samples, 2.69%)</title><rect x="10.0" y="1077" width="37.1" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="13.00" y="1087.5" >cim..</text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="484.1" y="357" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="487.09" y="367.5" ></text>
+</g>
+<g >
+<title>git_config_open_ondisk (30,303,030 samples, 0.09%)</title><rect x="539.3" y="837" width="1.3" height="15.0" fill="rgb(0,205,63)" rx="2" ry="2" />
+<text x="542.31" y="847.5" ></text>
+</g>
+<g >
+<title>apparmor_file_free_security (10,101,010 samples, 0.03%)</title><rect x="251.1" y="677" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="254.14" y="687.5" ></text>
+</g>
+<g >
+<title>blk_mq_submit_bio (10,101,010 samples, 0.03%)</title><rect x="231.3" y="501" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="234.30" y="511.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="220.5" y="677" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="223.52" y="687.5" ></text>
+</g>
+<g >
+<title>sock_close (70,707,070 samples, 0.22%)</title><rect x="1377.1" y="789" width="3.0" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="1380.06" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.03%)</title><rect x="550.1" y="485" width="0.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="553.09" y="495.5" ></text>
+</g>
+<g >
+<title>free_unref_page_prepare (10,101,010 samples, 0.03%)</title><rect x="676.1" y="725" width="0.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="679.06" y="735.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (20,202,020 samples, 0.06%)</title><rect x="420.7" y="597" width="0.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="423.68" y="607.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.03%)</title><rect x="145.5" y="613" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="148.45" y="623.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (585,858,580 samples, 1.81%)</title><rect x="694.2" y="741" width="25.0" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="697.18" y="751.5" >f..</text>
+</g>
+<g >
+<title>__inet_aton_exact (10,101,010 samples, 0.03%)</title><rect x="1389.1" y="933" width="0.5" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1392.14" y="943.5" ></text>
+</g>
+<g >
+<title>d_instantiate (10,101,010 samples, 0.03%)</title><rect x="41.1" y="773" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="44.06" y="783.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (20,202,020 samples, 0.06%)</title><rect x="438.4" y="757" width="0.8" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="441.37" y="767.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.06%)</title><rect x="445.7" y="581" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="448.70" y="591.5" ></text>
+</g>
+<g >
+<title>mas_wr_store_entry.isra.0 (90,909,090 samples, 0.28%)</title><rect x="652.3" y="725" width="3.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="655.33" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (121,212,120 samples, 0.38%)</title><rect x="508.2" y="741" width="5.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="511.25" y="751.5" ></text>
+</g>
+<g >
+<title>ksys_write (50,505,050 samples, 0.16%)</title><rect x="530.3" y="757" width="2.1" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="533.25" y="767.5" ></text>
+</g>
+<g >
+<title>do_faccessat (50,505,050 samples, 0.16%)</title><rect x="622.6" y="725" width="2.1" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="625.57" y="735.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="992.7" y="661" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="995.69" y="671.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.03%)</title><rect x="992.7" y="597" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="995.69" y="607.5" ></text>
+</g>
+<g >
+<title>read (20,202,020 samples, 0.06%)</title><rect x="227.0" y="677" width="0.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="229.99" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (70,707,070 samples, 0.22%)</title><rect x="247.7" y="805" width="3.0" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="250.69" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="403.0" y="501" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="405.99" y="511.5" ></text>
+</g>
+<g >
+<title>do_faccessat (131,313,130 samples, 0.41%)</title><rect x="89.8" y="965" width="5.6" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="92.81" y="975.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="502.2" y="805" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="505.21" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="462.5" y="677" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="465.52" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="362.9" y="661" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="365.87" y="671.5" ></text>
+</g>
+<g >
+<title>net_send_buf (131,313,130 samples, 0.41%)</title><rect x="10.0" y="965" width="5.6" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="13.00" y="975.5" ></text>
+</g>
+<g >
+<title>generic_write_end (10,101,010 samples, 0.03%)</title><rect x="421.5" y="597" width="0.5" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="424.54" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.03%)</title><rect x="112.7" y="661" width="0.4" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="115.67" y="671.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="110.5" y="613" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="113.51" y="623.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="370.6" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="373.64" y="671.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="724.4" y="789" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="727.37" y="799.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="507.8" y="757" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="510.82" y="767.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="173.5" y="661" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="176.49" y="671.5" ></text>
+</g>
+<g >
+<title>__napi_poll (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="469" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1031.50" y="479.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.03%)</title><rect x="459.5" y="629" width="0.4" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="462.50" y="639.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="677" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1373.59" y="687.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.03%)</title><rect x="283.1" y="885" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="286.07" y="895.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="168.3" y="725" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="171.32" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="362.0" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="365.01" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.03%)</title><rect x="611.8" y="613" width="0.4" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="614.78" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="532.0" y="565" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="534.98" y="575.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="552.7" y="629" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="555.68" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="1036.3" y="901" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1039.26" y="911.5" ></text>
+</g>
+<g >
+<title>ksys_write (30,303,030 samples, 0.09%)</title><rect x="485.8" y="661" width="1.3" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="488.82" y="671.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="629" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1373.59" y="639.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.03%)</title><rect x="547.1" y="405" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="550.07" y="415.5" ></text>
+</g>
+<g >
+<title>net_rx_action (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="517" width="1.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1014.24" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_claim_free_clusters (10,101,010 samples, 0.03%)</title><rect x="486.7" y="501" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="489.68" y="511.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.03%)</title><rect x="125.2" y="549" width="0.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="128.18" y="559.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (20,202,020 samples, 0.06%)</title><rect x="1024.2" y="709" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1027.19" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="127.3" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="130.34" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="351.7" y="789" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="354.66" y="799.5" ></text>
+</g>
+<g >
+<title>alloc_fd (10,101,010 samples, 0.03%)</title><rect x="558.7" y="661" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="561.72" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (20,202,020 samples, 0.06%)</title><rect x="554.8" y="549" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="557.84" y="559.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="461.2" y="693" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="464.23" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="603.6" y="709" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="606.59" y="719.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.03%)</title><rect x="219.2" y="709" width="0.5" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="222.22" y="719.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="1327.4" y="869" width="0.5" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1330.45" y="879.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="383.6" y="725" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="386.58" y="735.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.03%)</title><rect x="409.5" y="581" width="0.4" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="412.46" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="244.2" y="677" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="247.24" y="687.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="1028.9" y="261" width="0.5" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="1031.93" y="271.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="206.7" y="773" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="209.71" y="783.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="999.6" y="613" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1002.60" y="623.5" ></text>
+</g>
+<g >
+<title>do_poll.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="869" width="0.4" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1373.59" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.03%)</title><rect x="189.9" y="677" width="0.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="192.89" y="687.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="1363.3" y="677" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1366.25" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="1371.9" y="789" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1374.88" y="799.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (20,202,020 samples, 0.06%)</title><rect x="1316.2" y="821" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1319.23" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.41%)</title><rect x="619.1" y="853" width="5.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="622.12" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.06%)</title><rect x="16.0" y="853" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="19.04" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="569.9" y="661" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="572.94" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="151.9" y="501" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="154.93" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (20,202,020 samples, 0.06%)</title><rect x="230.0" y="645" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="233.01" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="167.0" y="629" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="170.02" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="480.6" y="565" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="483.64" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (30,303,030 samples, 0.09%)</title><rect x="1028.1" y="773" width="1.3" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1031.07" y="783.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="486.2" y="485" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="489.25" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_match.part.0 (10,101,010 samples, 0.03%)</title><rect x="529.0" y="661" width="0.4" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="531.96" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.25%)</title><rect x="365.5" y="789" width="3.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="368.46" y="799.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (50,505,050 samples, 0.16%)</title><rect x="11.3" y="405" width="2.2" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="14.29" y="415.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="569.1" y="757" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="572.07" y="767.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="423.7" y="629" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="426.70" y="639.5" ></text>
+</g>
+<g >
+<title>mtree_range_walk (10,101,010 samples, 0.03%)</title><rect x="1365.4" y="789" width="0.4" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1368.41" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="217.1" y="693" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="220.06" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (60,606,060 samples, 0.19%)</title><rect x="1377.5" y="677" width="2.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1380.49" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="217.1" y="565" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="220.06" y="575.5" ></text>
+</g>
+<g >
+<title>should_failslab (10,101,010 samples, 0.03%)</title><rect x="446.6" y="581" width="0.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="449.56" y="591.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="39.3" y="725" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="42.33" y="735.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.03%)</title><rect x="257.6" y="549" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="260.61" y="559.5" ></text>
+</g>
+<g >
+<title>git_repository_set_head (787,878,780 samples, 2.44%)</title><rect x="371.9" y="853" width="33.7" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="374.93" y="863.5" >gi..</text>
+</g>
+<g >
+<title>proc_capture (2,222,222,200 samples, 6.88%)</title><rect x="632.9" y="917" width="94.9" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="635.92" y="927.5" >proc_capture</text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="547.9" y="373" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="550.94" y="383.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="456.9" y="661" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="459.91" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (10,101,010 samples, 0.03%)</title><rect x="163.6" y="629" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="166.57" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (101,010,100 samples, 0.31%)</title><rect x="114.0" y="677" width="4.3" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="116.96" y="687.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (121,212,120 samples, 0.38%)</title><rect x="338.7" y="661" width="5.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="341.72" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.09%)</title><rect x="415.9" y="805" width="1.3" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="418.93" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="485.8" y="709" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="488.82" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_init_acl (10,101,010 samples, 0.03%)</title><rect x="86.8" y="853" width="0.4" height="15.0" fill="rgb(0,227,159)" rx="2" ry="2" />
+<text x="89.79" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_inode_table (10,101,010 samples, 0.03%)</title><rect x="288.7" y="581" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="291.67" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_release_dir (10,101,010 samples, 0.03%)</title><rect x="327.9" y="693" width="0.5" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="330.93" y="703.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.03%)</title><rect x="610.9" y="533" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="613.92" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="228.3" y="613" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="231.28" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="111.4" y="693" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="114.38" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="128.2" y="757" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="131.20" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="361.6" y="533" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="364.58" y="543.5" ></text>
+</g>
+<g >
+<title>do_rmdir (101,010,100 samples, 0.31%)</title><rect x="114.0" y="661" width="4.3" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="116.96" y="671.5" ></text>
+</g>
+<g >
+<title>iput (90,909,090 samples, 0.28%)</title><rect x="106.6" y="629" width="3.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="109.63" y="639.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="589.8" y="677" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="592.78" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="54.4" y="853" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="57.43" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (30,303,030 samples, 0.09%)</title><rect x="176.1" y="677" width="1.3" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="179.08" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="490.6" y="597" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="493.56" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="591.1" y="661" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="594.08" y="671.5" ></text>
+</g>
+<g >
+<title>__check_heap_object (10,101,010 samples, 0.03%)</title><rect x="449.1" y="453" width="0.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="452.15" y="463.5" ></text>
+</g>
+<g >
+<title>step_into (20,202,020 samples, 0.06%)</title><rect x="64.4" y="869" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="67.35" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="727.0" y="853" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="729.96" y="863.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (40,404,040 samples, 0.13%)</title><rect x="360.3" y="613" width="1.7" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="363.28" y="623.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="603.6" y="581" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="606.59" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (40,404,040 samples, 0.13%)</title><rect x="420.2" y="645" width="1.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="423.25" y="655.5" ></text>
+</g>
+<g >
+<title>out_of_line_wait_on_bit (10,101,010 samples, 0.03%)</title><rect x="253.7" y="613" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="256.73" y="623.5" ></text>
+</g>
+<g >
+<title>rename (111,111,110 samples, 0.34%)</title><rect x="230.0" y="821" width="4.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="233.01" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.09%)</title><rect x="135.5" y="629" width="1.3" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="138.53" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.06%)</title><rect x="73.4" y="821" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="76.41" y="831.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="362.4" y="581" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="365.44" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.09%)</title><rect x="174.8" y="661" width="1.3" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="177.79" y="671.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="227.8" y="709" width="0.5" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="230.85" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (10,101,010 samples, 0.03%)</title><rect x="200.2" y="645" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="203.24" y="655.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="393.5" y="693" width="0.4" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="396.50" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="207.1" y="837" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="210.14" y="847.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (60,606,060 samples, 0.19%)</title><rect x="577.3" y="709" width="2.6" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="580.27" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (50,505,050 samples, 0.16%)</title><rect x="425.0" y="565" width="2.1" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="427.99" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="277.9" y="757" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="280.89" y="767.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="614.8" y="629" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="617.80" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (282,828,280 samples, 0.88%)</title><rect x="66.9" y="853" width="12.1" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="69.94" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_link (10,101,010 samples, 0.03%)</title><rect x="412.1" y="693" width="0.4" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="415.05" y="703.5" ></text>
+</g>
+<g >
+<title>tzset (10,101,010 samples, 0.03%)</title><rect x="239.9" y="821" width="0.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="242.93" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (181,818,180 samples, 0.56%)</title><rect x="601.9" y="853" width="7.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="604.86" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="380.1" y="677" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="383.13" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (90,909,090 samples, 0.28%)</title><rect x="513.4" y="741" width="3.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="516.43" y="751.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="493.2" y="725" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="496.15" y="735.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (30,303,030 samples, 0.09%)</title><rect x="481.9" y="597" width="1.3" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="484.93" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.22%)</title><rect x="400.4" y="741" width="3.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="403.40" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="114.4" y="581" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="117.40" y="591.5" ></text>
+</g>
+<g >
+<title>__sbrk (191,919,190 samples, 0.59%)</title><rect x="733.0" y="837" width="8.2" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="736.00" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="48.4" y="997" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="51.39" y="1007.5" ></text>
+</g>
+<g >
+<title>vfs_open (50,505,050 samples, 0.16%)</title><rect x="60.9" y="885" width="2.2" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="63.90" y="895.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.03%)</title><rect x="296.0" y="517" width="0.4" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="299.01" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (50,505,050 samples, 0.16%)</title><rect x="146.7" y="613" width="2.2" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="149.75" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (40,404,040 samples, 0.13%)</title><rect x="1377.9" y="309" width="1.7" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1380.92" y="319.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (161,616,160 samples, 0.50%)</title><rect x="270.6" y="853" width="6.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="273.56" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="459.5" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="462.50" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="255.0" y="581" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="258.03" y="591.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="376.2" y="597" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="379.25" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="364.2" y="757" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="367.17" y="767.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.06%)</title><rect x="216.2" y="693" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="219.20" y="703.5" ></text>
+</g>
+<g >
+<title>__rseq_handle_notify_resume (10,101,010 samples, 0.03%)</title><rect x="462.1" y="629" width="0.4" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="465.09" y="639.5" ></text>
+</g>
+<g >
+<title>do_wp_page (10,101,010 samples, 0.03%)</title><rect x="1044.5" y="821" width="0.4" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1047.46" y="831.5" ></text>
+</g>
+<g >
+<title>tcp_finish_connect (10,101,010 samples, 0.03%)</title><rect x="1028.1" y="725" width="0.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1031.07" y="735.5" ></text>
+</g>
+<g >
+<title>vma_alloc_folio (101,010,100 samples, 0.31%)</title><rect x="996.6" y="693" width="4.3" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="999.58" y="703.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (101,010,100 samples, 0.31%)</title><rect x="31.6" y="437" width="4.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="34.57" y="447.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="999.6" y="469" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1002.60" y="479.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="416.8" y="757" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="419.80" y="767.5" ></text>
+</g>
+<g >
+<title>schedule (20,202,020 samples, 0.06%)</title><rect x="730.4" y="741" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="733.41" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.03%)</title><rect x="566.9" y="629" width="0.4" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="569.92" y="639.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="300.8" y="517" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="303.75" y="527.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (50,505,050 samples, 0.16%)</title><rect x="1007.4" y="341" width="2.1" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1010.36" y="351.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="502.2" y="661" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="505.21" y="671.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="371.5" y="677" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="374.50" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="601.0" y="693" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="604.00" y="703.5" ></text>
+</g>
+<g >
+<title>filemap_flush (60,606,060 samples, 0.19%)</title><rect x="510.0" y="613" width="2.6" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="512.97" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="441.4" y="805" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="444.38" y="815.5" ></text>
+</g>
+<g >
+<title>list_lru_add (10,101,010 samples, 0.03%)</title><rect x="95.0" y="837" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="97.98" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="578.1" y="677" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="581.13" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_readlink (20,202,020 samples, 0.06%)</title><rect x="450.0" y="709" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="453.01" y="719.5" ></text>
+</g>
+<g >
+<title>libjson_new_object (10,101,010 samples, 0.03%)</title><rect x="1328.3" y="917" width="0.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1331.31" y="927.5" ></text>
+</g>
+<g >
+<title>bio_add_folio (10,101,010 samples, 0.03%)</title><rect x="434.9" y="485" width="0.4" height="15.0" fill="rgb(0,205,63)" rx="2" ry="2" />
+<text x="437.91" y="495.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.03%)</title><rect x="383.6" y="613" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="386.58" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="452.6" y="757" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="455.60" y="767.5" ></text>
+</g>
+<g >
+<title>alloc_pages (10,101,010 samples, 0.03%)</title><rect x="489.7" y="501" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="492.70" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="527.7" y="613" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="530.66" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="458.6" y="821" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="461.64" y="831.5" ></text>
+</g>
+<g >
+<title>filemap_flush (30,303,030 samples, 0.09%)</title><rect x="549.2" y="613" width="1.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="552.23" y="623.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="1317.1" y="837" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1320.10" y="847.5" ></text>
+</g>
+<g >
+<title>lh_table_free (10,101,010 samples, 0.03%)</title><rect x="732.1" y="917" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="735.14" y="927.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="965.9" y="821" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="968.95" y="831.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="539.7" y="645" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="542.74" y="655.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="217.9" y="693" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="220.93" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.16%)</title><rect x="356.8" y="693" width="2.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="359.83" y="703.5" ></text>
+</g>
+<g >
+<title>dentry_kill (20,202,020 samples, 0.06%)</title><rect x="30.3" y="725" width="0.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="33.28" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (90,909,090 samples, 0.28%)</title><rect x="208.9" y="805" width="3.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="211.87" y="815.5" ></text>
+</g>
+<g >
+<title>mt_free_rcu (10,101,010 samples, 0.03%)</title><rect x="963.8" y="693" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="966.79" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.06%)</title><rect x="453.0" y="725" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="456.03" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="378.0" y="661" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="380.97" y="671.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (50,505,050 samples, 0.16%)</title><rect x="1033.7" y="789" width="2.1" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1036.68" y="799.5" ></text>
+</g>
+<g >
+<title>strchrnul@plt (10,101,010 samples, 0.03%)</title><rect x="470.7" y="645" width="0.5" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="473.72" y="655.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.1.0] (6,090,909,030 samples, 18.85%)</title><rect x="743.4" y="869" width="260.1" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="746.35" y="879.5" >[libjson-c.so.5.1.0]</text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.06%)</title><rect x="143.7" y="613" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="146.73" y="623.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="731.7" y="741" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="734.71" y="751.5" ></text>
+</g>
+<g >
+<title>sock_close (131,313,130 samples, 0.41%)</title><rect x="31.1" y="741" width="5.6" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="34.14" y="751.5" ></text>
+</g>
+<g >
+<title>git_repository_free (151,515,150 samples, 0.47%)</title><rect x="95.4" y="917" width="6.5" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="98.41" y="927.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (535,353,530 samples, 1.66%)</title><rect x="65.6" y="885" width="22.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="68.65" y="895.5" >l..</text>
+</g>
+<g >
+<title>alloc_pages (10,101,010 samples, 0.03%)</title><rect x="396.1" y="517" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="399.09" y="527.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.03%)</title><rect x="1037.1" y="853" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1040.13" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="116.6" y="549" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="119.55" y="559.5" ></text>
+</g>
+<g >
+<title>tcp_schedule_loss_probe.part.0 (10,101,010 samples, 0.03%)</title><rect x="1023.8" y="709" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1026.75" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.06%)</title><rect x="359.0" y="677" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="361.99" y="687.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.03%)</title><rect x="300.8" y="405" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="303.75" y="415.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (2,171,717,150 samples, 6.72%)</title><rect x="495.7" y="853" width="92.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="498.74" y="863.5" >[libgit2.so..</text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="102.3" y="677" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="105.32" y="687.5" ></text>
+</g>
+<g >
+<title>os_xsave (10,101,010 samples, 0.03%)</title><rect x="312.0" y="549" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="314.97" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="412.5" y="757" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="415.48" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.03%)</title><rect x="515.6" y="613" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="518.58" y="623.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (10,101,010 samples, 0.03%)</title><rect x="1021.6" y="101" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1024.60" y="111.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.06%)</title><rect x="356.0" y="645" width="0.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="358.97" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_event_new_data_sent (10,101,010 samples, 0.03%)</title><rect x="1023.3" y="709" width="0.5" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1026.32" y="719.5" ></text>
+</g>
+<g >
+<title>json_object_new_object (10,101,010 samples, 0.03%)</title><rect x="1371.9" y="837" width="0.4" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="1374.88" y="847.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="288.2" y="549" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="291.24" y="559.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.06%)</title><rect x="217.9" y="725" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="220.93" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="277.5" y="789" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="280.46" y="799.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (10,101,010 samples, 0.03%)</title><rect x="347.8" y="469" width="0.4" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="350.77" y="479.5" ></text>
+</g>
+<g >
+<title>git_refdb_backend_fs (10,101,010 samples, 0.03%)</title><rect x="381.0" y="741" width="0.4" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="383.99" y="751.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="273.6" y="709" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="276.58" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="515.2" y="661" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="518.15" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="603.6" y="741" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="606.59" y="751.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="408.2" y="597" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="411.17" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.09%)</title><rect x="315.0" y="741" width="1.3" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="317.99" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (121,212,120 samples, 0.38%)</title><rect x="431.5" y="773" width="5.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="434.46" y="783.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="728.7" y="757" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="731.69" y="767.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="246.4" y="805" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="249.40" y="815.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="584.2" y="405" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="587.17" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="106.2" y="517" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="109.20" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="731.7" y="821" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="734.71" y="831.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="191.6" y="533" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="194.61" y="543.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="270.1" y="869" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="273.13" y="879.5" ></text>
+</g>
+<g >
+<title>generic_write_end (20,202,020 samples, 0.06%)</title><rect x="410.3" y="597" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="413.33" y="607.5" ></text>
+</g>
+<g >
+<title>net_rx_action (30,303,030 samples, 0.09%)</title><rect x="1387.4" y="581" width="1.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1390.41" y="591.5" ></text>
+</g>
+<g >
+<title>iput (101,010,100 samples, 0.31%)</title><rect x="161.8" y="693" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="164.85" y="703.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="426.3" y="485" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="429.29" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (303,030,300 samples, 0.94%)</title><rect x="174.4" y="709" width="12.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="177.36" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="364.2" y="741" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="367.17" y="751.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="277.9" y="469" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="280.89" y="479.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="228.3" y="565" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="231.28" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_bio_write_folio (20,202,020 samples, 0.06%)</title><rect x="434.5" y="501" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="437.48" y="511.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (10,101,010 samples, 0.03%)</title><rect x="12.2" y="293" width="0.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="15.16" y="303.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.03%)</title><rect x="1356.4" y="757" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1359.35" y="767.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="397.4" y="501" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="400.38" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="489.7" y="757" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="492.70" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_ack (10,101,010 samples, 0.03%)</title><rect x="1008.7" y="261" width="0.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1011.66" y="271.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="48.8" y="933" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="51.82" y="943.5" ></text>
+</g>
+<g >
+<title>storvsc_queuecommand (10,101,010 samples, 0.03%)</title><rect x="402.1" y="325" width="0.5" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="405.13" y="335.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.09%)</title><rect x="484.5" y="645" width="1.3" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="487.52" y="655.5" ></text>
+</g>
+<g >
+<title>mutex_unlock (10,101,010 samples, 0.03%)</title><rect x="213.2" y="757" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="216.18" y="767.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct (10,101,010 samples, 0.03%)</title><rect x="466.4" y="533" width="0.4" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="469.41" y="543.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="623.9" y="661" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="626.86" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (20,202,020 samples, 0.06%)</title><rect x="257.2" y="613" width="0.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="260.18" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="502.6" y="725" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="505.64" y="735.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="613.5" y="629" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="616.51" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="332.2" y="725" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="335.24" y="735.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (20,202,020 samples, 0.06%)</title><rect x="665.3" y="709" width="0.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="668.27" y="719.5" ></text>
+</g>
+<g >
+<title>ima_file_check (10,101,010 samples, 0.03%)</title><rect x="602.7" y="613" width="0.5" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="605.72" y="623.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="430.2" y="613" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="433.17" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.06%)</title><rect x="442.7" y="677" width="0.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="445.68" y="687.5" ></text>
+</g>
+<g >
+<title>copyout (10,101,010 samples, 0.03%)</title><rect x="552.7" y="565" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="555.68" y="575.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="385.7" y="565" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="388.74" y="575.5" ></text>
+</g>
+<g >
+<title>down_read_trylock (10,101,010 samples, 0.03%)</title><rect x="1365.0" y="805" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1367.98" y="815.5" ></text>
+</g>
+<g >
+<title>rw_verify_area (10,101,010 samples, 0.03%)</title><rect x="719.2" y="789" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="722.20" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="341" width="1.3" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1385.67" y="351.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.06%)</title><rect x="352.1" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="355.09" y="623.5" ></text>
+</g>
+<g >
+<title>mas_store (101,010,100 samples, 0.31%)</title><rect x="651.9" y="741" width="4.3" height="15.0" fill="rgb(0,213,96)" rx="2" ry="2" />
+<text x="654.90" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_setent (10,101,010 samples, 0.03%)</title><rect x="436.2" y="661" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="439.21" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="462.5" y="709" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="465.52" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="288.2" y="613" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="291.24" y="623.5" ></text>
+</g>
+<g >
+<title>storvsc_queuecommand (10,101,010 samples, 0.03%)</title><rect x="466.0" y="373" width="0.4" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="468.97" y="383.5" ></text>
+</g>
+<g >
+<title>__destroy_inode (10,101,010 samples, 0.03%)</title><rect x="544.1" y="565" width="0.4" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="547.05" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (101,010,100 samples, 0.31%)</title><rect x="151.1" y="597" width="4.3" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="154.06" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.03%)</title><rect x="107.9" y="581" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="110.92" y="591.5" ></text>
+</g>
+<g >
+<title>inet_create.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="837" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1030.64" y="847.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (20,202,020 samples, 0.06%)</title><rect x="556.1" y="677" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="559.13" y="687.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.06%)</title><rect x="604.0" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="607.02" y="623.5" ></text>
+</g>
+<g >
+<title>pthread_mutex_lock@plt (10,101,010 samples, 0.03%)</title><rect x="595.0" y="789" width="0.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="597.96" y="799.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="591.5" y="677" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="594.51" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="224.8" y="581" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="227.83" y="591.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.03%)</title><rect x="106.2" y="469" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="109.20" y="479.5" ></text>
+</g>
+<g >
+<title>generic_fillattr (10,101,010 samples, 0.03%)</title><rect x="170.5" y="661" width="0.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="173.48" y="671.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="487.1" y="453" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="490.11" y="463.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="529.0" y="549" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="531.96" y="559.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="316.7" y="677" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="319.71" y="687.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.06%)</title><rect x="387.0" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="390.03" y="623.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.03%)</title><rect x="433.2" y="437" width="0.4" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="436.19" y="447.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="102.3" y="709" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="105.32" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.03%)</title><rect x="626.9" y="757" width="0.4" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="629.88" y="767.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.03%)</title><rect x="319.3" y="613" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="322.30" y="623.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="334.8" y="581" width="0.5" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="337.83" y="591.5" ></text>
+</g>
+<g >
+<title>dput (40,404,040 samples, 0.13%)</title><rect x="508.2" y="677" width="1.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="511.25" y="687.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="159.3" y="693" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="162.26" y="703.5" ></text>
+</g>
+<g >
+<title>__inet_stream_connect (151,515,150 samples, 0.47%)</title><rect x="1382.2" y="837" width="6.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1385.24" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="370.6" y="709" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="373.64" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="472.0" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="475.01" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="398.2" y="613" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="401.25" y="623.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="527.2" y="709" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="530.23" y="719.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (20,202,020 samples, 0.06%)</title><rect x="169.2" y="773" width="0.8" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="172.18" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (40,404,040 samples, 0.13%)</title><rect x="603.6" y="677" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="606.59" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (50,505,050 samples, 0.16%)</title><rect x="190.3" y="661" width="2.2" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="193.32" y="671.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (70,707,070 samples, 0.22%)</title><rect x="32.0" y="325" width="3.0" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="35.00" y="335.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="1004.3" y="709" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1007.34" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_child_process (20,202,020 samples, 0.06%)</title><rect x="1383.1" y="325" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1386.10" y="335.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="598.8" y="677" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="601.84" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (50,505,050 samples, 0.16%)</title><rect x="630.3" y="693" width="2.2" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="633.33" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (121,212,120 samples, 0.38%)</title><rect x="431.5" y="757" width="5.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="434.46" y="767.5" ></text>
+</g>
+<g >
+<title>process_backlog (90,909,090 samples, 0.28%)</title><rect x="31.6" y="357" width="3.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="34.57" y="367.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="614.8" y="725" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="617.80" y="735.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.03%)</title><rect x="349.9" y="693" width="0.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="352.93" y="703.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="549" width="1.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1377.47" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="1037.1" y="821" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1040.13" y="831.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="250.7" y="789" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="253.71" y="799.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (40,404,040 samples, 0.13%)</title><rect x="108.8" y="565" width="1.7" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="111.79" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (484,848,480 samples, 1.50%)</title><rect x="469.0" y="789" width="20.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="471.99" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.03%)</title><rect x="409.9" y="597" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="412.89" y="607.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="523.3" y="597" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="526.35" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (10,101,010 samples, 0.03%)</title><rect x="276.6" y="741" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="279.60" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="381.9" y="709" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="384.85" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="614.4" y="677" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="617.37" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="548.8" y="629" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="551.80" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="493.2" y="709" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="496.15" y="719.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="1048.8" y="741" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1051.77" y="751.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="290.0" y="565" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="292.97" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="459.5" y="853" width="2.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="462.50" y="863.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (20,202,020 samples, 0.06%)</title><rect x="1374.5" y="357" width="0.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1377.47" y="367.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="198.5" y="661" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="201.52" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="458.6" y="789" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="461.64" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_read_inode_bitmap (10,101,010 samples, 0.03%)</title><rect x="149.3" y="597" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="152.34" y="607.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (40,404,040 samples, 0.13%)</title><rect x="729.5" y="917" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="732.55" y="927.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="444.4" y="741" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="447.40" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="468.1" y="725" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="471.13" y="735.5" ></text>
+</g>
+<g >
+<title>wbt_track (10,101,010 samples, 0.03%)</title><rect x="434.1" y="453" width="0.4" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="437.05" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.41%)</title><rect x="609.6" y="821" width="5.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="612.62" y="831.5" ></text>
+</g>
+<g >
+<title>mtree_range_walk (10,101,010 samples, 0.03%)</title><rect x="1326.6" y="837" width="0.4" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1329.59" y="847.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="461.2" y="677" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="464.23" y="687.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (10,101,010 samples, 0.03%)</title><rect x="466.0" y="565" width="0.4" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="468.97" y="575.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.03%)</title><rect x="1036.3" y="917" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1039.26" y="927.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="362.4" y="661" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="365.44" y="671.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (60,606,060 samples, 0.19%)</title><rect x="1377.5" y="661" width="2.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1380.49" y="671.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.03%)</title><rect x="217.1" y="645" width="0.4" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="220.06" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="362.9" y="613" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="365.87" y="623.5" ></text>
+</g>
+<g >
+<title>request_create_new_worker (10,101,010 samples, 0.03%)</title><rect x="1389.6" y="965" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1392.57" y="975.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="614.8" y="773" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="617.80" y="783.5" ></text>
+</g>
+<g >
+<title>dput (121,212,120 samples, 0.38%)</title><rect x="338.7" y="693" width="5.2" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="341.72" y="703.5" ></text>
+</g>
+<g >
+<title>submit_bio (20,202,020 samples, 0.06%)</title><rect x="433.6" y="533" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="436.62" y="543.5" ></text>
+</g>
+<g >
+<title>from_kgid (10,101,010 samples, 0.03%)</title><rect x="123.5" y="565" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="126.45" y="575.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (101,010,100 samples, 0.31%)</title><rect x="106.6" y="645" width="4.3" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="109.63" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="278.3" y="773" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="281.32" y="783.5" ></text>
+</g>
+<g >
+<title>[[kernel.kallsyms]] (30,303,030 samples, 0.09%)</title><rect x="1384.0" y="613" width="1.3" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1386.96" y="623.5" ></text>
+</g>
+<g >
+<title>anon_pipe_buf_release (10,101,010 samples, 0.03%)</title><rect x="670.0" y="789" width="0.5" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="673.02" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_dx_find_entry (10,101,010 samples, 0.03%)</title><rect x="208.9" y="725" width="0.4" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="211.87" y="735.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="217.5" y="741" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="220.50" y="751.5" ></text>
+</g>
+<g >
+<title>__default_morecore (40,404,040 samples, 0.13%)</title><rect x="1046.2" y="885" width="1.7" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1049.19" y="895.5" ></text>
+</g>
+<g >
+<title>mktime (10,101,010 samples, 0.03%)</title><rect x="239.9" y="837" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="242.93" y="847.5" ></text>
+</g>
+<g >
+<title>__strdup (10,101,010 samples, 0.03%)</title><rect x="239.5" y="757" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="242.50" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="504.8" y="709" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="507.80" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (161,616,160 samples, 0.50%)</title><rect x="270.6" y="869" width="6.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="273.56" y="879.5" ></text>
+</g>
+<g >
+<title>event_loop_run (60,606,060 samples, 0.19%)</title><rect x="1370.6" y="965" width="2.6" height="15.0" fill="rgb(0,235,193)" rx="2" ry="2" />
+<text x="1373.59" y="975.5" ></text>
+</g>
+<g >
+<title>__wake_up (10,101,010 samples, 0.03%)</title><rect x="255.5" y="629" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="258.46" y="639.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.03%)</title><rect x="41.9" y="933" width="0.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="44.92" y="943.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="609.6" y="757" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="612.62" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (40,404,040 samples, 0.13%)</title><rect x="408.6" y="613" width="1.7" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="411.60" y="623.5" ></text>
+</g>
+<g >
+<title>__fdget_pos (10,101,010 samples, 0.03%)</title><rect x="16.0" y="821" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="19.04" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="199.4" y="661" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="202.38" y="671.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="277.9" y="549" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="280.89" y="559.5" ></text>
+</g>
+<g >
+<title>mas_next_slot (10,101,010 samples, 0.03%)</title><rect x="651.5" y="725" width="0.4" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="654.47" y="735.5" ></text>
+</g>
+<g >
+<title>mkdtemp (151,515,150 samples, 0.47%)</title><rect x="626.4" y="917" width="6.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="629.45" y="927.5" ></text>
+</g>
+<g >
+<title>inflateInit2_ (10,101,010 samples, 0.03%)</title><rect x="353.0" y="757" width="0.4" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="355.95" y="767.5" ></text>
+</g>
+<g >
+<title>new_inode (10,101,010 samples, 0.03%)</title><rect x="495.3" y="661" width="0.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="498.31" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="603.6" y="725" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="606.59" y="735.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="283.1" y="757" width="0.4" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="286.07" y="767.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (20,202,020 samples, 0.06%)</title><rect x="665.3" y="693" width="0.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="668.27" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_link (40,404,040 samples, 0.13%)</title><rect x="310.7" y="709" width="1.7" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="313.68" y="719.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (10,101,010 samples, 0.03%)</title><rect x="14.3" y="581" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="17.31" y="591.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="447.4" y="661" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="450.42" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.09%)</title><rect x="407.3" y="757" width="1.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="410.31" y="767.5" ></text>
+</g>
+<g >
+<title>io_schedule (10,101,010 samples, 0.03%)</title><rect x="572.1" y="613" width="0.4" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="575.09" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="491.9" y="661" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="494.86" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="389.6" y="645" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="392.62" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.09%)</title><rect x="121.3" y="677" width="1.3" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="124.30" y="687.5" ></text>
+</g>
+<g >
+<title>common_perm_cond (10,101,010 samples, 0.03%)</title><rect x="255.9" y="709" width="0.4" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="258.89" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="501.3" y="741" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="504.35" y="751.5" ></text>
+</g>
+<g >
+<title>ipv4_conntrack_local (10,101,010 samples, 0.03%)</title><rect x="1033.7" y="693" width="0.4" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1036.68" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="560.4" y="709" width="1.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="563.45" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.06%)</title><rect x="291.3" y="629" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="294.26" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (60,606,060 samples, 0.19%)</title><rect x="152.8" y="533" width="2.6" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="155.79" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.25%)</title><rect x="469.9" y="709" width="3.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="472.86" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (20,202,020 samples, 0.06%)</title><rect x="210.2" y="709" width="0.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="213.16" y="719.5" ></text>
+</g>
+<g >
+<title>inode_maybe_inc_iversion (10,101,010 samples, 0.03%)</title><rect x="124.3" y="581" width="0.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="127.32" y="591.5" ></text>
+</g>
+<g >
+<title>fstatat64 (131,313,130 samples, 0.41%)</title><rect x="533.7" y="837" width="5.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="536.70" y="847.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="184.7" y="357" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="187.71" y="367.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="251.6" y="757" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="254.58" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="595.0" y="805" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="597.96" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="380.1" y="645" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="383.13" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="249.4" y="645" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="252.42" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="268.8" y="709" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="271.83" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.03%)</title><rect x="203.7" y="709" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="206.69" y="719.5" ></text>
+</g>
+<g >
+<title>security_d_instantiate (10,101,010 samples, 0.03%)</title><rect x="81.2" y="821" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="84.18" y="831.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="446.1" y="533" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="449.13" y="543.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="462.1" y="677" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="465.09" y="687.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.03%)</title><rect x="601.4" y="677" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="604.43" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="491.4" y="629" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="494.43" y="639.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="300.8" y="549" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="303.75" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="397.4" y="565" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="400.38" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.03%)</title><rect x="473.7" y="517" width="0.5" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="476.74" y="527.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.03%)</title><rect x="71.7" y="645" width="0.4" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="74.69" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="170.0" y="709" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="173.04" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="605.3" y="709" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="608.31" y="719.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.03%)</title><rect x="51.4" y="757" width="0.4" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="54.41" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="239.9" y="693" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="242.93" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="225.7" y="757" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="228.69" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_htree_store_dirent (20,202,020 samples, 0.06%)</title><rect x="197.7" y="693" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="200.65" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="730.0" y="869" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="732.98" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (30,303,030 samples, 0.09%)</title><rect x="466.0" y="581" width="1.3" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="468.97" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="281.3" y="725" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="284.34" y="735.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.03%)</title><rect x="488.4" y="661" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="491.41" y="671.5" ></text>
+</g>
+<g >
+<title>_copy_from_iter (40,404,040 samples, 0.13%)</title><rect x="1019.0" y="741" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1022.01" y="751.5" ></text>
+</g>
+<g >
+<title>kmalloc_reserve (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="261" width="0.4" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1027.19" y="271.5" ></text>
+</g>
+<g >
+<title>inet_release (10,101,010 samples, 0.03%)</title><rect x="36.3" y="709" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="39.31" y="719.5" ></text>
+</g>
+<g >
+<title>__fdget_pos (10,101,010 samples, 0.03%)</title><rect x="259.8" y="645" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="262.77" y="655.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="407.3" y="661" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="410.31" y="671.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="1317.5" y="821" width="0.5" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1320.53" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (20,202,020 samples, 0.06%)</title><rect x="68.7" y="837" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="71.67" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="82.9" y="757" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="85.90" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="487.1" y="661" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="490.11" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="591.1" y="757" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="594.08" y="767.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="55.3" y="885" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="58.30" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="473.7" y="469" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="476.74" y="479.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="471.2" y="677" width="0.4" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="474.15" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="455.6" y="645" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="458.62" y="655.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.03%)</title><rect x="463.4" y="645" width="0.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="466.39" y="655.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (30,303,030 samples, 0.09%)</title><rect x="344.3" y="437" width="1.3" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="347.32" y="447.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="499.6" y="581" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="502.62" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="414.6" y="677" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="417.64" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.31%)</title><rect x="445.3" y="789" width="4.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="448.27" y="799.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="383.6" y="661" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="386.58" y="671.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_recv (50,505,050 samples, 0.16%)</title><rect x="1371.0" y="917" width="2.2" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1374.02" y="927.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="584.2" y="453" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="587.17" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.03%)</title><rect x="230.4" y="581" width="0.5" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="233.44" y="591.5" ></text>
+</g>
+<g >
+<title>evict (60,606,060 samples, 0.19%)</title><rect x="202.8" y="741" width="2.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="205.83" y="751.5" ></text>
+</g>
+<g >
+<title>__do_softirq (50,505,050 samples, 0.16%)</title><rect x="1377.5" y="469" width="2.1" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1380.49" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="577.7" y="645" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="580.70" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="113.5" y="581" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="116.53" y="591.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (30,303,030 samples, 0.09%)</title><rect x="413.3" y="789" width="1.3" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="416.34" y="799.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.06%)</title><rect x="356.0" y="629" width="0.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="358.97" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="590.2" y="741" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="593.21" y="751.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="439.2" y="773" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="442.23" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (40,404,040 samples, 0.13%)</title><rect x="271.0" y="693" width="1.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="273.99" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="502.6" y="709" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="505.64" y="719.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.03%)</title><rect x="95.0" y="821" width="0.4" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="97.98" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="597.5" y="805" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="600.55" y="815.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.03%)</title><rect x="728.3" y="725" width="0.4" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="731.26" y="735.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.03%)</title><rect x="409.5" y="565" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="412.46" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="460.4" y="741" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="463.37" y="751.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (30,303,030 samples, 0.09%)</title><rect x="400.4" y="645" width="1.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="403.40" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.06%)</title><rect x="289.5" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="292.54" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="170.0" y="805" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="173.04" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="727.8" y="821" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="730.82" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="441.4" y="821" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="444.38" y="831.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="300.8" y="437" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="303.75" y="447.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="491.9" y="581" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="494.86" y="591.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="693" width="1.3" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1377.47" y="703.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.03%)</title><rect x="629.5" y="741" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="632.47" y="751.5" ></text>
+</g>
+<g >
+<title>generic_write_end (10,101,010 samples, 0.03%)</title><rect x="541.0" y="565" width="0.5" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="544.03" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="237.3" y="805" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="240.34" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.25%)</title><rect x="198.5" y="805" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="201.52" y="815.5" ></text>
+</g>
+<g >
+<title>_compound_head (10,101,010 samples, 0.03%)</title><rect x="1041.9" y="821" width="0.4" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="1044.87" y="831.5" ></text>
+</g>
+<g >
+<title>ksys_write (30,303,030 samples, 0.09%)</title><rect x="215.8" y="757" width="1.3" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="218.77" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="249.4" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="252.42" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.03%)</title><rect x="195.9" y="677" width="0.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="198.93" y="687.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="461.2" y="661" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="464.23" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.03%)</title><rect x="170.5" y="693" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="173.48" y="703.5" ></text>
+</g>
+<g >
+<title>capable_wrt_inode_uidgid (20,202,020 samples, 0.06%)</title><rect x="309.8" y="661" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="312.81" y="671.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.03%)</title><rect x="80.3" y="789" width="0.4" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="83.32" y="799.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="429.7" y="725" width="1.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="432.74" y="735.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="321.0" y="741" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="324.03" y="751.5" ></text>
+</g>
+<g >
+<title>delete_from_page_cache_batch (10,101,010 samples, 0.03%)</title><rect x="343.0" y="549" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="346.03" y="559.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.03%)</title><rect x="158.4" y="485" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="161.40" y="495.5" ></text>
+</g>
+<g >
+<title>__d_add (10,101,010 samples, 0.03%)</title><rect x="727.8" y="693" width="0.5" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="730.82" y="703.5" ></text>
+</g>
+<g >
+<title>lock_vma_under_rcu (30,303,030 samples, 0.09%)</title><rect x="1001.3" y="757" width="1.3" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1004.32" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (20,202,020 samples, 0.06%)</title><rect x="1378.8" y="277" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1381.78" y="287.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (60,606,060 samples, 0.19%)</title><rect x="1007.4" y="389" width="2.5" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1010.36" y="399.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="487.5" y="517" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="490.54" y="527.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.06%)</title><rect x="217.9" y="805" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="220.93" y="815.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="885" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1373.59" y="895.5" ></text>
+</g>
+<g >
+<title>journal_end_buffer_io_sync (10,101,010 samples, 0.03%)</title><rect x="487.1" y="277" width="0.4" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="490.11" y="287.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="231.7" y="469" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="234.73" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.03%)</title><rect x="532.0" y="677" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="534.98" y="687.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (191,919,190 samples, 0.59%)</title><rect x="1319.3" y="885" width="8.1" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1322.25" y="895.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="757" width="0.5" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1047.03" y="767.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (20,202,020 samples, 0.06%)</title><rect x="565.6" y="533" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="568.62" y="543.5" ></text>
+</g>
+<g >
+<title>adler32_z (10,101,010 samples, 0.03%)</title><rect x="260.6" y="725" width="0.5" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="263.63" y="735.5" ></text>
+</g>
+<g >
+<title>list_lru_del (10,101,010 samples, 0.03%)</title><rect x="186.9" y="629" width="0.4" height="15.0" fill="rgb(0,216,113)" rx="2" ry="2" />
+<text x="189.87" y="639.5" ></text>
+</g>
+<g >
+<title>mutex_lock (10,101,010 samples, 0.03%)</title><rect x="171.3" y="725" width="0.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="174.34" y="735.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.03%)</title><rect x="489.7" y="549" width="0.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="492.70" y="559.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (10,101,010 samples, 0.03%)</title><rect x="1387.4" y="261" width="0.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1390.41" y="271.5" ></text>
+</g>
+<g >
+<title>ext4_fc_track_inode (10,101,010 samples, 0.03%)</title><rect x="208.4" y="725" width="0.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="211.44" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="390.9" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="393.91" y="687.5" ></text>
+</g>
+<g >
+<title>git_odb_read (141,414,140 samples, 0.44%)</title><rect x="259.8" y="837" width="6.0" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="262.77" y="847.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.03%)</title><rect x="177.4" y="645" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="180.38" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (30,303,030 samples, 0.09%)</title><rect x="131.2" y="549" width="1.3" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="134.22" y="559.5" ></text>
+</g>
+<g >
+<title>__find_get_block (20,202,020 samples, 0.06%)</title><rect x="83.3" y="725" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="86.34" y="735.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.03%)</title><rect x="466.0" y="405" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="468.97" y="415.5" ></text>
+</g>
+<g >
+<title>libjson_send (131,313,130 samples, 0.41%)</title><rect x="10.0" y="981" width="5.6" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="13.00" y="991.5" ></text>
+</g>
+<g >
+<title>evict (70,707,070 samples, 0.22%)</title><rect x="115.3" y="613" width="3.0" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="118.26" y="623.5" ></text>
+</g>
+<g >
+<title>__rseq_handle_notify_resume (20,202,020 samples, 0.06%)</title><rect x="665.3" y="789" width="0.8" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="668.27" y="799.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.06%)</title><rect x="432.3" y="629" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="435.33" y="639.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="212.3" y="709" width="0.5" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="215.32" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_clean_rtx_queue.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="1004.8" y="693" width="0.4" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="1007.77" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="247.3" y="789" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="250.26" y="799.5" ></text>
+</g>
+<g >
+<title>ksys_write (50,505,050 samples, 0.16%)</title><rect x="257.2" y="725" width="2.1" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="260.18" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="601.0" y="741" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="604.00" y="751.5" ></text>
+</g>
+<g >
+<title>release_pages (60,606,060 samples, 0.19%)</title><rect x="736.0" y="661" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="739.02" y="671.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (80,808,080 samples, 0.25%)</title><rect x="464.2" y="741" width="3.5" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="467.25" y="751.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="221.8" y="693" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="224.81" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.16%)</title><rect x="622.6" y="773" width="2.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="625.57" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="385.7" y="645" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="388.74" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (10,101,010 samples, 0.03%)</title><rect x="346.9" y="485" width="0.4" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="349.91" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (40,404,040 samples, 0.13%)</title><rect x="420.2" y="709" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="423.25" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="406.4" y="677" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="409.44" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (525,252,520 samples, 1.63%)</title><rect x="1004.3" y="869" width="22.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1007.34" y="879.5" >e..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="1047.0" y="837" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1050.05" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (20,202,020 samples, 0.06%)</title><rect x="561.7" y="725" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="564.74" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.06%)</title><rect x="564.8" y="629" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="567.76" y="639.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="474.2" y="549" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="477.17" y="559.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (242,424,240 samples, 0.75%)</title><rect x="540.6" y="821" width="10.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="543.60" y="831.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (40,404,040 samples, 0.13%)</title><rect x="1377.9" y="325" width="1.7" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1380.92" y="335.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="588.5" y="773" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="591.49" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="16.0" y="869" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="19.04" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_find_dest_de (10,101,010 samples, 0.03%)</title><rect x="578.6" y="693" width="0.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="581.57" y="703.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.03%)</title><rect x="415.5" y="805" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="418.50" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_append (60,606,060 samples, 0.19%)</title><rect x="51.8" y="869" width="2.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="54.84" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="491.4" y="725" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="494.43" y="735.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="184.7" y="389" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="187.71" y="399.5" ></text>
+</g>
+<g >
+<title>cmd_dispatcher_handle_conn_internal (50,505,050 samples, 0.16%)</title><rect x="1371.0" y="933" width="2.2" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1374.02" y="943.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="610.9" y="581" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="613.92" y="591.5" ></text>
+</g>
+<g >
+<title>ksys_read (1,181,818,170 samples, 3.66%)</title><rect x="669.2" y="821" width="50.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="672.16" y="831.5" >ksys_..</text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="508.7" y="453" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="511.68" y="463.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="491.9" y="613" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="494.86" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="278.3" y="757" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="281.32" y="767.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="1327.9" y="853" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1330.88" y="863.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="102.3" y="629" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="105.32" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (393,939,390 samples, 1.22%)</title><rect x="139.4" y="677" width="16.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="142.42" y="687.5" ></text>
+</g>
+<g >
+<title>xas_start (10,101,010 samples, 0.03%)</title><rect x="95.0" y="789" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="97.98" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="16.5" y="821" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="19.47" y="831.5" ></text>
+</g>
+<g >
+<title>__sk_mem_reduce_allocated (10,101,010 samples, 0.03%)</title><rect x="1372.3" y="661" width="0.4" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1375.31" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (20,202,020 samples, 0.06%)</title><rect x="166.2" y="645" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="169.16" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="601.4" y="661" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="604.43" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (10,101,010 samples, 0.03%)</title><rect x="232.2" y="533" width="0.4" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="235.16" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="1372.3" y="773" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1375.31" y="783.5" ></text>
+</g>
+<g >
+<title>memcg_list_lru_alloc (10,101,010 samples, 0.03%)</title><rect x="51.4" y="789" width="0.4" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="54.41" y="799.5" ></text>
+</g>
+<g >
+<title>__pte_offset_map_lock (20,202,020 samples, 0.06%)</title><rect x="991.8" y="693" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="994.83" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="221.4" y="741" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="224.38" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.28%)</title><rect x="424.1" y="757" width="3.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="427.13" y="767.5" ></text>
+</g>
+<g >
+<title>git_odb_hash (10,101,010 samples, 0.03%)</title><rect x="265.4" y="805" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="268.38" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.22%)</title><rect x="553.1" y="725" width="3.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="556.11" y="735.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="190.8" y="469" width="0.4" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="193.75" y="479.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (282,828,280 samples, 0.88%)</title><rect x="1351.6" y="789" width="12.1" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1354.61" y="799.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.03%)</title><rect x="110.9" y="757" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="113.94" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.06%)</title><rect x="257.2" y="581" width="0.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="260.18" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="591.5" y="725" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="594.51" y="735.5" ></text>
+</g>
+<g >
+<title>folio_batch_move_lru (20,202,020 samples, 0.06%)</title><rect x="994.4" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="997.42" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (90,909,090 samples, 0.28%)</title><rect x="151.5" y="581" width="3.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="154.49" y="591.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="1018.6" y="677" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1021.58" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="220.9" y="629" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="223.95" y="639.5" ></text>
+</g>
+<g >
+<title>__netif_rx (10,101,010 samples, 0.03%)</title><rect x="1021.6" y="69" width="0.4" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1024.60" y="79.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="286.5" y="677" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="289.52" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="606.6" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="609.61" y="767.5" ></text>
+</g>
+<g >
+<title>rcu_cblist_dequeue (10,101,010 samples, 0.03%)</title><rect x="992.7" y="565" width="0.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="995.69" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (20,202,020 samples, 0.06%)</title><rect x="103.6" y="629" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="106.61" y="639.5" ></text>
+</g>
+<g >
+<title>dentry_kill (121,212,120 samples, 0.38%)</title><rect x="338.7" y="677" width="5.2" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="341.72" y="687.5" ></text>
+</g>
+<g >
+<title>rb_next (10,101,010 samples, 0.03%)</title><rect x="664.4" y="757" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="667.41" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.03%)</title><rect x="482.4" y="533" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="485.37" y="543.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="227.4" y="549" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="230.42" y="559.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (30,303,030 samples, 0.09%)</title><rect x="313.7" y="741" width="1.3" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="316.69" y="751.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="579.9" y="709" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="582.86" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (50,505,050 samples, 0.16%)</title><rect x="425.0" y="597" width="2.1" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="427.99" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (40,404,040 samples, 0.13%)</title><rect x="1382.2" y="773" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1385.24" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="220.9" y="725" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="223.95" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="917" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1373.59" y="927.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_reschedule_ipi (10,101,010 samples, 0.03%)</title><rect x="250.3" y="709" width="0.4" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="253.28" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="615.2" y="725" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="618.23" y="735.5" ></text>
+</g>
+<g >
+<title>__folio_put (10,101,010 samples, 0.03%)</title><rect x="342.6" y="549" width="0.4" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="345.60" y="559.5" ></text>
+</g>
+<g >
+<title>tcp_conn_request (10,101,010 samples, 0.03%)</title><rect x="1035.0" y="357" width="0.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1037.97" y="367.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (40,404,040 samples, 0.13%)</title><rect x="1324.9" y="741" width="1.7" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1327.86" y="751.5" ></text>
+</g>
+<g >
+<title>apparmor_current_getsecid_subj (10,101,010 samples, 0.03%)</title><rect x="356.4" y="565" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="359.40" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.03%)</title><rect x="112.2" y="677" width="0.5" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="115.24" y="687.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (10,101,010 samples, 0.03%)</title><rect x="1033.7" y="677" width="0.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1036.68" y="687.5" ></text>
+</g>
+<g >
+<title>journal_end_buffer_io_sync (10,101,010 samples, 0.03%)</title><rect x="71.7" y="613" width="0.4" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="74.69" y="623.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="554.0" y="517" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="556.98" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="415.9" y="853" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="418.93" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="349.9" y="789" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="352.93" y="799.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.03%)</title><rect x="308.1" y="677" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="311.09" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (40,404,040 samples, 0.13%)</title><rect x="126.5" y="773" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="129.47" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.06%)</title><rect x="106.6" y="517" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="109.63" y="527.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="281.8" y="629" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="284.77" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="274.4" y="805" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="277.44" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="152.4" y="517" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="155.36" y="527.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.03%)</title><rect x="487.1" y="309" width="0.4" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="490.11" y="319.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="312.4" y="693" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="315.40" y="703.5" ></text>
+</g>
+<g >
+<title>git_remote_create (565,656,560 samples, 1.75%)</title><rect x="417.7" y="885" width="24.1" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="420.66" y="895.5" >g..</text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.06%)</title><rect x="147.6" y="597" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="150.61" y="607.5" ></text>
+</g>
+<g >
+<title>__pte_offset_map (10,101,010 samples, 0.03%)</title><rect x="642.4" y="693" width="0.4" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="645.41" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="398.2" y="597" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="401.25" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.22%)</title><rect x="378.4" y="789" width="3.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="381.40" y="799.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (20,202,020 samples, 0.06%)</title><rect x="1317.1" y="901" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1320.10" y="911.5" ></text>
+</g>
+<g >
+<title>rw_verify_area (10,101,010 samples, 0.03%)</title><rect x="419.8" y="661" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="422.82" y="671.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="491.4" y="645" width="0.5" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="494.43" y="655.5" ></text>
+</g>
+<g >
+<title>alloc_file (30,303,030 samples, 0.09%)</title><rect x="39.8" y="773" width="1.3" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="42.77" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="447.0" y="677" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="449.99" y="687.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="336.1" y="725" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="339.13" y="735.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="430.2" y="629" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="433.17" y="639.5" ></text>
+</g>
+<g >
+<title>json_object_new_object (10,101,010 samples, 0.03%)</title><rect x="1328.3" y="901" width="0.4" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="1331.31" y="911.5" ></text>
+</g>
+<g >
+<title>filename_lookup (121,212,120 samples, 0.38%)</title><rect x="90.2" y="933" width="5.2" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="93.24" y="943.5" ></text>
+</g>
+<g >
+<title>readdir64 (60,606,060 samples, 0.19%)</title><rect x="170.9" y="821" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="173.91" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.22%)</title><rect x="527.2" y="789" width="3.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="530.23" y="799.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.03%)</title><rect x="420.7" y="565" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="423.68" y="575.5" ></text>
+</g>
+<g >
+<title>d_lookup (10,101,010 samples, 0.03%)</title><rect x="475.0" y="581" width="0.5" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="478.03" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="199.4" y="613" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="202.38" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.06%)</title><rect x="242.5" y="725" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="245.52" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="381.9" y="741" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="384.85" y="751.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (20,202,020 samples, 0.06%)</title><rect x="626.4" y="789" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="629.45" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="588.9" y="837" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="591.92" y="847.5" ></text>
+</g>
+<g >
+<title>pipe_write (30,303,030 samples, 0.09%)</title><rect x="215.8" y="725" width="1.3" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="218.77" y="735.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (20,202,020 samples, 0.06%)</title><rect x="197.7" y="709" width="0.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="200.65" y="719.5" ></text>
+</g>
+<g >
+<title>generic_write_end (10,101,010 samples, 0.03%)</title><rect x="499.6" y="629" width="0.5" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="502.62" y="639.5" ></text>
+</g>
+<g >
+<title>folio_wait_bit (10,101,010 samples, 0.03%)</title><rect x="547.5" y="501" width="0.4" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="550.51" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="618.7" y="661" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="621.68" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="362.9" y="549" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="365.87" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="394.4" y="693" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="397.36" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="361.6" y="549" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="364.58" y="559.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="620.4" y="821" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="623.41" y="831.5" ></text>
+</g>
+<g >
+<title>mas_push_data (30,303,030 samples, 0.09%)</title><rect x="654.5" y="645" width="1.3" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="657.49" y="655.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.03%)</title><rect x="727.8" y="757" width="0.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="730.82" y="767.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="614.4" y="741" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="617.37" y="751.5" ></text>
+</g>
+<g >
+<title>access_error (10,101,010 samples, 0.03%)</title><rect x="980.2" y="773" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="983.18" y="783.5" ></text>
+</g>
+<g >
+<title>block_write_end (20,202,020 samples, 0.06%)</title><rect x="410.3" y="581" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="413.33" y="591.5" ></text>
+</g>
+<g >
+<title>__schedule (60,606,060 samples, 0.19%)</title><rect x="24.2" y="805" width="2.6" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="27.24" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="341" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1027.19" y="351.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="453.5" y="677" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="456.46" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.03%)</title><rect x="394.4" y="533" width="0.4" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="397.36" y="543.5" ></text>
+</g>
+<g >
+<title>filemap_flush (60,606,060 samples, 0.19%)</title><rect x="433.2" y="645" width="2.6" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="436.19" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (161,616,160 samples, 0.50%)</title><rect x="29.8" y="869" width="6.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="32.84" y="879.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="555.7" y="597" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="558.70" y="607.5" ></text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.06%)</title><rect x="30.3" y="677" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="33.28" y="687.5" ></text>
+</g>
+<g >
+<title>__close (161,616,160 samples, 0.50%)</title><rect x="29.8" y="885" width="6.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="32.84" y="895.5" ></text>
+</g>
+<g >
+<title>ima_file_check (10,101,010 samples, 0.03%)</title><rect x="517.7" y="693" width="0.5" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="520.74" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="388.8" y="629" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="391.76" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (20,202,020 samples, 0.06%)</title><rect x="308.5" y="645" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="311.52" y="655.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.03%)</title><rect x="472.4" y="533" width="0.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="475.44" y="543.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (20,202,020 samples, 0.06%)</title><rect x="1011.2" y="421" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1014.24" y="431.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.16%)</title><rect x="524.6" y="805" width="2.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="527.64" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.03%)</title><rect x="244.2" y="581" width="0.5" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="247.24" y="591.5" ></text>
+</g>
+<g >
+<title>chmod_common (30,303,030 samples, 0.09%)</title><rect x="500.1" y="725" width="1.2" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="503.05" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="515.2" y="645" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="518.15" y="655.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.03%)</title><rect x="344.3" y="373" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="347.32" y="383.5" ></text>
+</g>
+<g >
+<title>xas_start (10,101,010 samples, 0.03%)</title><rect x="83.8" y="645" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="86.77" y="655.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.03%)</title><rect x="433.2" y="421" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="436.19" y="431.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="224.8" y="549" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="227.83" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="731.7" y="885" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="734.71" y="895.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="490.6" y="677" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="493.56" y="687.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (60,606,060 samples, 0.19%)</title><rect x="11.3" y="437" width="2.6" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="14.29" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="568.2" y="597" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="571.21" y="607.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.03%)</title><rect x="549.2" y="469" width="0.5" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="552.23" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (50,505,050 samples, 0.16%)</title><rect x="478.5" y="517" width="2.1" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="481.48" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="591.1" y="773" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="594.08" y="783.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (30,303,030 samples, 0.09%)</title><rect x="403.4" y="773" width="1.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="406.42" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_mb_release_context.isra.0 (10,101,010 samples, 0.03%)</title><rect x="299.0" y="549" width="0.5" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="302.03" y="559.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.03%)</title><rect x="41.9" y="965" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="44.92" y="975.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.06%)</title><rect x="606.6" y="677" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="609.61" y="687.5" ></text>
+</g>
+<g >
+<title>libgit_repository_free (151,515,150 samples, 0.47%)</title><rect x="95.4" y="933" width="6.5" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="98.41" y="943.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.03%)</title><rect x="488.4" y="645" width="0.4" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="491.41" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="597.1" y="741" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="600.11" y="751.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="1327.4" y="885" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1330.45" y="895.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="1316.7" y="645" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1319.66" y="655.5" ></text>
+</g>
+<g >
+<title>filemap_flush (40,404,040 samples, 0.13%)</title><rect x="231.3" y="677" width="1.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="234.30" y="687.5" ></text>
+</g>
+<g >
+<title>fput (10,101,010 samples, 0.03%)</title><rect x="110.9" y="661" width="0.5" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" />
+<text x="113.94" y="671.5" ></text>
+</g>
+<g >
+<title>evict (40,404,040 samples, 0.13%)</title><rect x="563.0" y="613" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="566.04" y="623.5" ></text>
+</g>
+<g >
+<title>journal_end_buffer_io_sync (10,101,010 samples, 0.03%)</title><rect x="1316.7" y="677" width="0.4" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="1319.66" y="687.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (101,010,100 samples, 0.31%)</title><rect x="10.9" y="773" width="4.3" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="13.86" y="783.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="317.1" y="741" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="320.15" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_io_submit (10,101,010 samples, 0.03%)</title><rect x="345.6" y="533" width="0.4" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="348.62" y="543.5" ></text>
+</g>
+<g >
+<title>ip_local_out (80,808,080 samples, 0.25%)</title><rect x="1006.5" y="613" width="3.4" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1009.50" y="623.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="613.1" y="437" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="616.08" y="447.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="618.7" y="725" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="621.68" y="735.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="132.9" y="453" width="0.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="135.94" y="463.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (30,303,030 samples, 0.09%)</title><rect x="1315.8" y="901" width="1.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1318.80" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="242.1" y="709" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="245.09" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="334.0" y="533" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="336.97" y="543.5" ></text>
+</g>
+<g >
+<title>do_softirq (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="517" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1031.50" y="527.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_reschedule_ipi (20,202,020 samples, 0.06%)</title><rect x="1318.0" y="901" width="0.8" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="1320.96" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.19%)</title><rect x="1373.2" y="853" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1376.18" y="863.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.06%)</title><rect x="1026.8" y="933" width="0.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1029.77" y="943.5" ></text>
+</g>
+<g >
+<title>schedule (595,959,590 samples, 1.84%)</title><rect x="693.7" y="773" width="25.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="696.74" y="783.5" >s..</text>
+</g>
+<g >
+<title>ext4_add_nondir (10,101,010 samples, 0.03%)</title><rect x="482.8" y="549" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="485.80" y="559.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="314.1" y="517" width="0.5" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="317.13" y="527.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="510.4" y="501" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="513.41" y="511.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="620.0" y="757" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="622.98" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="615.2" y="805" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="618.23" y="815.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="469" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1027.19" y="479.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="420.7" y="533" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="423.68" y="543.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.03%)</title><rect x="626.4" y="773" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="629.45" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (40,404,040 samples, 0.13%)</title><rect x="190.8" y="645" width="1.7" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="193.75" y="655.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.06%)</title><rect x="359.0" y="725" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="361.99" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="457.8" y="709" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="460.78" y="719.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="599.7" y="597" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="602.70" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (10,101,010 samples, 0.03%)</title><rect x="359.4" y="565" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="362.42" y="575.5" ></text>
+</g>
+<g >
+<title>__blk_rq_map_sg (10,101,010 samples, 0.03%)</title><rect x="511.3" y="277" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="514.27" y="287.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="286.5" y="661" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="289.52" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="88.9" y="981" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="91.94" y="991.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.03%)</title><rect x="142.0" y="581" width="0.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="145.00" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="385.7" y="629" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="388.74" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="384.0" y="725" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="387.01" y="735.5" ></text>
+</g>
+<g >
+<title>loopback_xmit (10,101,010 samples, 0.03%)</title><rect x="14.3" y="565" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="17.31" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="598.4" y="725" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="601.41" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.16%)</title><rect x="356.8" y="709" width="2.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="359.83" y="719.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (10,101,010 samples, 0.03%)</title><rect x="1008.2" y="181" width="0.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1011.22" y="191.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="41.9" y="949" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="44.92" y="959.5" ></text>
+</g>
+<g >
+<title>__alloc_percpu_gfp (10,101,010 samples, 0.03%)</title><rect x="662.3" y="725" width="0.4" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="665.25" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="263.2" y="757" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="266.22" y="767.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="359.9" y="613" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="362.85" y="623.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (10,101,010 samples, 0.03%)</title><rect x="393.9" y="597" width="0.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="396.93" y="607.5" ></text>
+</g>
+<g >
+<title>fscrypt_file_open (10,101,010 samples, 0.03%)</title><rect x="61.3" y="837" width="0.5" height="15.0" fill="rgb(0,198,33)" rx="2" ry="2" />
+<text x="64.33" y="847.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="349.5" y="789" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="352.50" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.09%)</title><rect x="135.5" y="613" width="1.3" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="138.53" y="623.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="122.2" y="645" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="125.16" y="655.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="612.6" y="757" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="615.64" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="491.4" y="677" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="494.43" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="288.7" y="597" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="291.67" y="607.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (40,404,040 samples, 0.13%)</title><rect x="508.2" y="629" width="1.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="511.25" y="639.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="645" width="1.3" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1014.24" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (262,626,260 samples, 0.81%)</title><rect x="354.2" y="789" width="11.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="357.25" y="799.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="245.5" y="645" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="248.54" y="655.5" ></text>
+</g>
+<g >
+<title>evict (10,101,010 samples, 0.03%)</title><rect x="527.7" y="725" width="0.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="530.66" y="735.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.03%)</title><rect x="625.2" y="869" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="628.15" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (10,101,010 samples, 0.03%)</title><rect x="527.7" y="709" width="0.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="530.66" y="719.5" ></text>
+</g>
+<g >
+<title>post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="271.4" y="565" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="274.42" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.03%)</title><rect x="142.0" y="613" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="145.00" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="426.7" y="421" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="429.72" y="431.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (10,101,010 samples, 0.03%)</title><rect x="1387.8" y="261" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1390.84" y="271.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (20,202,020 samples, 0.06%)</title><rect x="730.4" y="709" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="733.41" y="719.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (60,606,060 samples, 0.19%)</title><rect x="1377.5" y="549" width="2.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1380.49" y="559.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.03%)</title><rect x="599.3" y="549" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="602.27" y="559.5" ></text>
+</g>
+<g >
+<title>cgroup_rstat_flush (10,101,010 samples, 0.03%)</title><rect x="553.5" y="517" width="0.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="556.54" y="527.5" ></text>
+</g>
+<g >
+<title>alloc_pages (10,101,010 samples, 0.03%)</title><rect x="420.7" y="549" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="423.68" y="559.5" ></text>
+</g>
+<g >
+<title>skb_do_copy_data_nocache (40,404,040 samples, 0.13%)</title><rect x="1019.0" y="757" width="1.7" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1022.01" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="390.1" y="645" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="393.05" y="655.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.03%)</title><rect x="283.1" y="725" width="0.4" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="286.07" y="735.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited_flags (10,101,010 samples, 0.03%)</title><rect x="553.5" y="581" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="556.54" y="591.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="314.1" y="453" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="317.13" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_setattr (10,101,010 samples, 0.03%)</title><rect x="500.9" y="693" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="503.92" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="600.1" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="603.13" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.03%)</title><rect x="255.5" y="677" width="0.4" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="258.46" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="259.3" y="805" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="262.34" y="815.5" ></text>
+</g>
+<g >
+<title>read (20,202,020 samples, 0.06%)</title><rect x="1372.3" y="853" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1375.31" y="863.5" ></text>
+</g>
+<g >
+<title>release_sock (20,202,020 samples, 0.06%)</title><rect x="1373.2" y="773" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1376.18" y="783.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="363.3" y="533" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="366.30" y="543.5" ></text>
+</g>
+<g >
+<title>prepare_to_wait_event (10,101,010 samples, 0.03%)</title><rect x="693.3" y="773" width="0.4" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="696.31" y="783.5" ></text>
+</g>
+<g >
+<title>git_repository_is_empty (313,131,310 samples, 0.97%)</title><rect x="601.9" y="885" width="13.3" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="604.86" y="895.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="567.8" y="597" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="570.78" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_rearm_rto (10,101,010 samples, 0.03%)</title><rect x="1026.8" y="613" width="0.4" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1029.77" y="623.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="406.9" y="597" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="409.87" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="336.6" y="757" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="339.56" y="767.5" ></text>
+</g>
+<g >
+<title>main (30,313,131,010 samples, 93.81%)</title><rect x="95.4" y="1013" width="1294.6" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="98.41" y="1023.5" >main</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="279.6" y="853" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="282.62" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="118.3" y="709" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="121.28" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="487.1" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="490.11" y="655.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="312.0" y="597" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="314.97" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="396.1" y="709" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="399.09" y="719.5" ></text>
+</g>
+<g >
+<title>tzset (10,101,010 samples, 0.03%)</title><rect x="405.1" y="757" width="0.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="408.15" y="767.5" ></text>
+</g>
+<g >
+<title>inet_csk_reqsk_queue_drop (10,101,010 samples, 0.03%)</title><rect x="1028.5" y="309" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="1031.50" y="319.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (60,606,060 samples, 0.19%)</title><rect x="535.4" y="677" width="2.6" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="538.43" y="687.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="273.6" y="725" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="276.58" y="735.5" ></text>
+</g>
+<g >
+<title>walk_component (90,909,090 samples, 0.28%)</title><rect x="535.4" y="693" width="3.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="538.43" y="703.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.03%)</title><rect x="542.8" y="757" width="0.4" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="545.76" y="767.5" ></text>
+</g>
+<g >
+<title>dup_task_struct (10,101,010 samples, 0.03%)</title><rect x="21.2" y="949" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="24.22" y="959.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="452.6" y="741" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="455.60" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (20,202,020 samples, 0.06%)</title><rect x="505.7" y="565" width="0.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="508.66" y="575.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="385.7" y="517" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="388.74" y="527.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="225.7" y="741" width="1.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="228.69" y="751.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="261.1" y="581" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="264.07" y="591.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="400.0" y="709" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="402.97" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="234.8" y="773" width="1.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="237.75" y="783.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct (20,202,020 samples, 0.06%)</title><rect x="433.6" y="517" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="436.62" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (30,303,030 samples, 0.09%)</title><rect x="364.2" y="725" width="1.3" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="367.17" y="735.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.03%)</title><rect x="272.7" y="661" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="275.71" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="413.8" y="725" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="416.78" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.28%)</title><rect x="620.8" y="805" width="3.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="623.84" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="491.0" y="757" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="493.99" y="767.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.03%)</title><rect x="408.2" y="613" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="411.17" y="623.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.03%)</title><rect x="113.5" y="549" width="0.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="116.53" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="50.1" y="853" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="53.12" y="863.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="628.2" y="725" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="631.17" y="735.5" ></text>
+</g>
+<g >
+<title>ip_route_output_key_hash_rcu (10,101,010 samples, 0.03%)</title><rect x="1386.5" y="789" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1389.55" y="799.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="444.8" y="645" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="447.84" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="266.7" y="661" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="269.67" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (20,202,020 samples, 0.06%)</title><rect x="537.2" y="661" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="540.15" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (161,616,160 samples, 0.50%)</title><rect x="161.8" y="757" width="6.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="164.85" y="767.5" ></text>
+</g>
+<g >
+<title>nf_nat_init (40,404,040 samples, 0.13%)</title><rect x="1384.0" y="805" width="1.7" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1386.96" y="815.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="405.6" y="773" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="408.58" y="783.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.03%)</title><rect x="535.0" y="693" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="538.00" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.03%)</title><rect x="629.9" y="725" width="0.4" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="632.90" y="735.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="693" width="1.3" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1014.24" y="703.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.06%)</title><rect x="222.2" y="709" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="225.24" y="719.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="226.6" y="661" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="229.56" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="208.9" y="741" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="211.87" y="751.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (60,606,060 samples, 0.19%)</title><rect x="237.3" y="821" width="2.6" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="240.34" y="831.5" ></text>
+</g>
+<g >
+<title>mb_find_order_for_block (10,101,010 samples, 0.03%)</title><rect x="584.2" y="549" width="0.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="587.17" y="559.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="555.7" y="581" width="0.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="558.70" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="383.6" y="773" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="386.58" y="783.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="489.3" y="661" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="492.27" y="671.5" ></text>
+</g>
+<g >
+<title>jsonrpc_set_method (10,101,010 samples, 0.03%)</title><rect x="1389.6" y="917" width="0.4" height="15.0" fill="rgb(0,230,172)" rx="2" ry="2" />
+<text x="1392.57" y="927.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="409.9" y="485" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="412.89" y="495.5" ></text>
+</g>
+<g >
+<title>__d_add (10,101,010 samples, 0.03%)</title><rect x="255.5" y="645" width="0.4" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="258.46" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="450.9" y="709" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="453.88" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (131,313,130 samples, 0.41%)</title><rect x="533.7" y="773" width="5.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="536.70" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="396.5" y="645" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="399.52" y="655.5" ></text>
+</g>
+<g >
+<title>dd_has_work (10,101,010 samples, 0.03%)</title><rect x="344.8" y="389" width="0.4" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="347.75" y="399.5" ></text>
+</g>
+<g >
+<title>_compound_head (10,101,010 samples, 0.03%)</title><rect x="556.6" y="661" width="0.4" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="559.56" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (80,808,080 samples, 0.25%)</title><rect x="130.4" y="661" width="3.4" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="133.36" y="671.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="555.7" y="661" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="558.70" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="223.5" y="661" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="226.54" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (50,505,050 samples, 0.16%)</title><rect x="724.8" y="869" width="2.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="727.80" y="879.5" ></text>
+</g>
+<g >
+<title>__default_morecore (191,919,190 samples, 0.59%)</title><rect x="733.0" y="853" width="8.2" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="736.00" y="863.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (60,606,060 samples, 0.19%)</title><rect x="1020.7" y="549" width="2.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1023.73" y="559.5" ></text>
+</g>
+<g >
+<title>server_main (575,757,570 samples, 1.78%)</title><rect x="22.5" y="997" width="24.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="25.51" y="1007.5" >s..</text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="377.1" y="629" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="380.11" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.38%)</title><rect x="372.8" y="757" width="5.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="375.79" y="767.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="502.2" y="757" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="505.21" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (20,202,020 samples, 0.06%)</title><rect x="163.6" y="645" width="0.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="166.57" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.03%)</title><rect x="632.1" y="629" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="635.06" y="639.5" ></text>
+</g>
+<g >
+<title>ip_rcv (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="437" width="1.3" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1014.24" y="447.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="406.9" y="709" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="409.87" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="152.4" y="501" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="155.36" y="511.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="254.2" y="629" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="257.16" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (262,626,260 samples, 0.81%)</title><rect x="338.3" y="757" width="11.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="341.28" y="767.5" ></text>
+</g>
+<g >
+<title>git_reference__alloc (10,101,010 samples, 0.03%)</title><rect x="221.4" y="773" width="0.4" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="224.38" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.22%)</title><rect x="527.2" y="805" width="3.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="530.23" y="815.5" ></text>
+</g>
+<g >
+<title>unlink_cb (20,202,020 samples, 0.06%)</title><rect x="103.6" y="709" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="106.61" y="719.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="258.9" y="565" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="261.91" y="575.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="359.9" y="629" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="362.85" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="252.9" y="821" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="255.87" y="831.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="629.5" y="709" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="632.47" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="502.6" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="505.64" y="799.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="428.9" y="677" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="431.87" y="687.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="805" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1373.59" y="815.5" ></text>
+</g>
+<g >
+<title>folio_add_lru (50,505,050 samples, 0.16%)</title><rect x="993.1" y="677" width="2.2" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="996.13" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="16.0" y="949" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="19.04" y="959.5" ></text>
+</g>
+<g >
+<title>irq_work_queue (80,808,080 samples, 0.25%)</title><rect x="1029.4" y="693" width="3.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1032.36" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.03%)</title><rect x="1385.7" y="757" width="0.4" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1388.69" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="422.4" y="725" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="425.40" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.03%)</title><rect x="564.3" y="517" width="0.5" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="567.33" y="527.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (70,707,070 samples, 0.22%)</title><rect x="400.4" y="693" width="3.0" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="403.40" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="499.2" y="693" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="502.19" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (20,202,020 samples, 0.06%)</title><rect x="117.4" y="549" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="120.41" y="559.5" ></text>
+</g>
+<g >
+<title>dentry_kill (111,111,110 samples, 0.34%)</title><rect x="543.6" y="661" width="4.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="546.62" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="356.0" y="677" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="358.97" y="687.5" ></text>
+</g>
+<g >
+<title>nf_nat_ipv4_local_in (10,101,010 samples, 0.03%)</title><rect x="13.5" y="405" width="0.4" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="16.45" y="415.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="424.1" y="693" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="427.13" y="703.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (10,101,010 samples, 0.03%)</title><rect x="511.3" y="501" width="0.4" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="514.27" y="511.5" ></text>
+</g>
+<g >
+<title>sk_alloc (20,202,020 samples, 0.06%)</title><rect x="1380.5" y="821" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1383.51" y="831.5" ></text>
+</g>
+<g >
+<title>tcp_fin (10,101,010 samples, 0.03%)</title><rect x="1379.2" y="245" width="0.4" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="1382.22" y="255.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (202,020,200 samples, 0.63%)</title><rect x="428.4" y="821" width="8.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="431.44" y="831.5" ></text>
+</g>
+<g >
+<title>inflate (10,101,010 samples, 0.03%)</title><rect x="268.0" y="725" width="0.4" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="270.97" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="128.2" y="725" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="131.20" y="735.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (90,909,090 samples, 0.28%)</title><rect x="202.8" y="773" width="3.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="205.83" y="783.5" ></text>
+</g>
+<g >
+<title>iput (111,111,110 samples, 0.34%)</title><rect x="189.0" y="725" width="4.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="192.02" y="735.5" ></text>
+</g>
+<g >
+<title>alloc_pages (20,202,020 samples, 0.06%)</title><rect x="641.5" y="661" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="644.55" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="423.7" y="709" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="426.70" y="719.5" ></text>
+</g>
+<g >
+<title>dget_parent (10,101,010 samples, 0.03%)</title><rect x="217.9" y="613" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="220.93" y="623.5" ></text>
+</g>
+<g >
+<title>git_signature_default (70,707,070 samples, 0.22%)</title><rect x="491.0" y="789" width="3.0" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="493.99" y="799.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="73.0" y="725" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="75.98" y="735.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.03%)</title><rect x="449.1" y="469" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="452.15" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="142.9" y="645" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="145.87" y="655.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="55.7" y="853" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="58.73" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="490.6" y="613" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="493.56" y="623.5" ></text>
+</g>
+<g >
+<title>pipe_write (60,606,060 samples, 0.19%)</title><rect x="44.5" y="773" width="2.6" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="47.51" y="783.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="503.1" y="677" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="506.07" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.06%)</title><rect x="1375.8" y="789" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1378.76" y="799.5" ></text>
+</g>
+<g >
+<title>log_entry_start (40,404,040 samples, 0.13%)</title><rect x="1035.8" y="949" width="1.8" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1038.83" y="959.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.16%)</title><rect x="607.5" y="693" width="2.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="610.47" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.09%)</title><rect x="473.3" y="629" width="1.3" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="476.31" y="639.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (414,141,410 samples, 1.28%)</title><rect x="551.0" y="837" width="17.6" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="553.96" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="127.3" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="130.34" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="233.0" y="661" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="236.03" y="671.5" ></text>
+</g>
+<g >
+<title>__get_vma_policy (20,202,020 samples, 0.06%)</title><rect x="990.1" y="693" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="993.11" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (181,818,180 samples, 0.56%)</title><rect x="130.4" y="725" width="7.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="133.36" y="735.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (30,303,030 samples, 0.09%)</title><rect x="723.5" y="837" width="1.3" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="726.51" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (505,050,500 samples, 1.56%)</title><rect x="328.4" y="805" width="21.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="331.36" y="815.5" >[..</text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="645" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1373.59" y="655.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="380.1" y="693" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="383.13" y="703.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (20,202,020 samples, 0.06%)</title><rect x="347.3" y="517" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="350.34" y="527.5" ></text>
+</g>
+<g >
+<title>mktime (30,303,030 samples, 0.09%)</title><rect x="370.6" y="789" width="1.3" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="373.64" y="799.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="1004.3" y="741" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1007.34" y="751.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.03%)</title><rect x="515.2" y="693" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="518.15" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="236.0" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="239.05" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (242,424,240 samples, 0.75%)</title><rect x="540.6" y="789" width="10.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="543.60" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="207.1" y="853" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="210.14" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="284.8" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="287.79" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.09%)</title><rect x="484.5" y="597" width="1.3" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="487.52" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (121,212,120 samples, 0.38%)</title><rect x="150.2" y="613" width="5.2" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="153.20" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="282.6" y="869" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="285.64" y="879.5" ></text>
+</g>
+<g >
+<title>folio_add_lru (10,101,010 samples, 0.03%)</title><rect x="1043.6" y="789" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1046.60" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.03%)</title><rect x="529.0" y="421" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="531.96" y="431.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="128.2" y="741" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="131.20" y="751.5" ></text>
+</g>
+<g >
+<title>mtree_range_walk (10,101,010 samples, 0.03%)</title><rect x="692.5" y="629" width="0.4" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="695.45" y="639.5" ></text>
+</g>
+<g >
+<title>ip_sabotage_in (10,101,010 samples, 0.03%)</title><rect x="13.9" y="437" width="0.4" height="15.0" fill="rgb(0,217,113)" rx="2" ry="2" />
+<text x="16.88" y="447.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.03%)</title><rect x="486.2" y="453" width="0.5" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="489.25" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.03%)</title><rect x="361.6" y="597" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="364.58" y="607.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="555.7" y="645" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="558.70" y="655.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (60,606,060 samples, 0.19%)</title><rect x="433.2" y="629" width="2.6" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="436.19" y="639.5" ></text>
+</g>
+<g >
+<title>iput (70,707,070 samples, 0.22%)</title><rect x="424.6" y="645" width="3.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="427.56" y="655.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.03%)</title><rect x="125.2" y="517" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="128.18" y="527.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (20,202,020 samples, 0.06%)</title><rect x="266.2" y="853" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="269.24" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (161,616,160 samples, 0.50%)</title><rect x="406.0" y="821" width="6.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="409.01" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="190.8" y="501" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="193.75" y="511.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.03%)</title><rect x="473.7" y="549" width="0.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="476.74" y="559.5" ></text>
+</g>
+<g >
+<title>task_work_run (30,303,030 samples, 0.09%)</title><rect x="313.7" y="709" width="1.3" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="316.69" y="719.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.06%)</title><rect x="269.3" y="757" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="272.26" y="767.5" ></text>
+</g>
+<g >
+<title>__fput (151,515,150 samples, 0.47%)</title><rect x="30.3" y="757" width="6.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="33.28" y="767.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_set_param_string (979,797,970 samples, 3.03%)</title><rect x="1328.7" y="949" width="41.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1331.74" y="959.5" >jso..</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="450.9" y="741" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="453.88" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.03%)</title><rect x="308.5" y="629" width="0.4" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="311.52" y="639.5" ></text>
+</g>
+<g >
+<title>git_buf_set (10,101,010 samples, 0.03%)</title><rect x="591.9" y="805" width="0.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="594.94" y="815.5" ></text>
+</g>
+<g >
+<title>inode_init_always (30,303,030 samples, 0.09%)</title><rect x="77.3" y="805" width="1.3" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="80.30" y="815.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.06%)</title><rect x="242.5" y="709" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="245.52" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="103.2" y="645" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="106.18" y="655.5" ></text>
+</g>
+<g >
+<title>inet6_release (121,212,120 samples, 0.38%)</title><rect x="31.1" y="709" width="5.2" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="34.14" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="618.7" y="629" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="621.68" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="592.8" y="693" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="595.80" y="703.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.03%)</title><rect x="507.4" y="661" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="510.39" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (90,909,090 samples, 0.28%)</title><rect x="513.4" y="725" width="3.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="516.43" y="735.5" ></text>
+</g>
+<g >
+<title>ci_run_script (2,222,222,200 samples, 6.88%)</title><rect x="632.9" y="933" width="94.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="635.92" y="943.5" >ci_run_script</text>
+</g>
+<g >
+<title>iterate_dir (10,101,010 samples, 0.03%)</title><rect x="447.0" y="629" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="449.99" y="639.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.03%)</title><rect x="495.3" y="565" width="0.4" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="498.31" y="575.5" ></text>
+</g>
+<g >
+<title>remove (90,909,090 samples, 0.28%)</title><rect x="202.8" y="853" width="3.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="205.83" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="448.3" y="661" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="451.29" y="671.5" ></text>
+</g>
+<g >
+<title>__sys_socket (40,404,040 samples, 0.13%)</title><rect x="1380.5" y="885" width="1.7" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="1383.51" y="895.5" ></text>
+</g>
+<g >
+<title>xas_start (10,101,010 samples, 0.03%)</title><rect x="51.4" y="741" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="54.41" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (30,303,030 samples, 0.09%)</title><rect x="131.2" y="581" width="1.3" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="134.22" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="235.6" y="661" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="238.61" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (50,505,050 samples, 0.16%)</title><rect x="630.3" y="709" width="2.2" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="633.33" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="470.3" y="693" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="473.29" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.03%)</title><rect x="292.6" y="645" width="0.4" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="295.56" y="655.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="615.2" y="837" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="618.23" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="413.8" y="709" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="416.78" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="614.8" y="709" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="617.80" y="719.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="314.1" y="565" width="0.5" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="317.13" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="501.3" y="725" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="504.35" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (20,202,020 samples, 0.06%)</title><rect x="104.5" y="661" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="107.47" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="222.2" y="565" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="225.24" y="575.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="111.4" y="741" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="114.38" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (10,101,010 samples, 0.03%)</title><rect x="26.8" y="853" width="0.5" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="29.82" y="863.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="601.4" y="629" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="604.43" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_write (30,303,030 samples, 0.09%)</title><rect x="485.8" y="645" width="1.3" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="488.82" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (20,202,020 samples, 0.06%)</title><rect x="478.9" y="485" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="481.92" y="495.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="632.5" y="741" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="635.49" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="392.2" y="613" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="395.21" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.03%)</title><rect x="509.1" y="453" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="512.11" y="463.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (70,707,070 samples, 0.22%)</title><rect x="1377.1" y="853" width="3.0" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1380.06" y="863.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.06%)</title><rect x="728.7" y="869" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="731.69" y="879.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.06%)</title><rect x="222.2" y="773" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="225.24" y="783.5" ></text>
+</g>
+<g >
+<title>rename (141,414,140 samples, 0.44%)</title><rect x="562.6" y="773" width="6.0" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="565.60" y="783.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (30,303,030 samples, 0.09%)</title><rect x="466.0" y="629" width="1.3" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="468.97" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (80,808,080 samples, 0.25%)</title><rect x="1020.7" y="725" width="3.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1023.73" y="735.5" ></text>
+</g>
+<g >
+<title>call_filldir (10,101,010 samples, 0.03%)</title><rect x="197.2" y="725" width="0.5" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="200.22" y="735.5" ></text>
+</g>
+<g >
+<title>write (60,606,060 samples, 0.19%)</title><rect x="408.6" y="757" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="411.60" y="767.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.03%)</title><rect x="344.3" y="389" width="0.5" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="347.32" y="399.5" ></text>
+</g>
+<g >
+<title>__sbrk (10,101,010 samples, 0.03%)</title><rect x="1366.7" y="821" width="0.4" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1369.71" y="831.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="48.4" y="965" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="51.39" y="975.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.03%)</title><rect x="437.9" y="629" width="0.5" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="440.93" y="639.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="534.6" y="661" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="537.56" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="414.2" y="597" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="417.21" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="283.9" y="789" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="286.93" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (80,808,080 samples, 0.25%)</title><rect x="230.9" y="725" width="3.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="233.87" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.03%)</title><rect x="230.4" y="549" width="0.5" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="233.44" y="559.5" ></text>
+</g>
+<g >
+<title>_compound_head (10,101,010 samples, 0.03%)</title><rect x="101.0" y="741" width="0.5" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="104.02" y="751.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (10,101,010 samples, 0.03%)</title><rect x="1021.6" y="133" width="0.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1024.60" y="143.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="580.7" y="645" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="583.72" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="116.6" y="533" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="119.55" y="543.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (20,202,020 samples, 0.06%)</title><rect x="362.9" y="757" width="0.8" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="365.87" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="542.3" y="725" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="545.33" y="735.5" ></text>
+</g>
+<g >
+<title>__folio_batch_release (10,101,010 samples, 0.03%)</title><rect x="232.6" y="565" width="0.4" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="235.59" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_rearm_rto (10,101,010 samples, 0.03%)</title><rect x="1023.3" y="693" width="0.5" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1026.32" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="468.1" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="471.13" y="639.5" ></text>
+</g>
+<g >
+<title>evict (30,303,030 samples, 0.09%)</title><rect x="464.2" y="645" width="1.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="467.25" y="655.5" ></text>
+</g>
+<g >
+<title>alloc_file (10,101,010 samples, 0.03%)</title><rect x="1381.4" y="837" width="0.4" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="1384.37" y="847.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (181,818,180 samples, 0.56%)</title><rect x="188.6" y="741" width="7.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="191.59" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="611.8" y="693" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="614.78" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="499.6" y="709" width="0.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="502.62" y="719.5" ></text>
+</g>
+<g >
+<title>iterate_dir (10,101,010 samples, 0.03%)</title><rect x="349.9" y="757" width="0.5" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="352.93" y="767.5" ></text>
+</g>
+<g >
+<title>arch_irq_work_raise (40,404,040 samples, 0.13%)</title><rect x="1384.0" y="661" width="1.7" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1386.96" y="671.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="380.1" y="629" width="0.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="383.13" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="272.7" y="773" width="1.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="275.71" y="783.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.03%)</title><rect x="336.1" y="677" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="339.13" y="687.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.06%)</title><rect x="606.6" y="693" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="609.61" y="703.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="610.1" y="725" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="613.06" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (40,404,040 samples, 0.13%)</title><rect x="340.0" y="549" width="1.7" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="343.01" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="519.9" y="597" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="522.90" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="318.9" y="613" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="321.87" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.03%)</title><rect x="296.0" y="549" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="299.01" y="559.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.03%)</title><rect x="525.5" y="629" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="528.50" y="639.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="502.2" y="693" width="0.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="505.21" y="703.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="224.8" y="421" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="227.83" y="431.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="396.5" y="629" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="399.52" y="639.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (40,404,040 samples, 0.13%)</title><rect x="508.2" y="645" width="1.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="511.25" y="655.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="631.6" y="661" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="634.63" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_link (20,202,020 samples, 0.06%)</title><rect x="275.3" y="725" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="278.30" y="735.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="103.2" y="597" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="106.18" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="369.3" y="677" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="372.34" y="687.5" ></text>
+</g>
+<g >
+<title>cfree (202,020,200 samples, 0.63%)</title><rect x="732.6" y="901" width="8.6" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="735.57" y="911.5" ></text>
+</g>
+<g >
+<title>process_backlog (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="453" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1031.50" y="463.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="340.4" y="421" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="343.44" y="431.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="357" width="1.3" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1385.67" y="367.5" ></text>
+</g>
+<g >
+<title>save_fpregs_to_fpstate (10,101,010 samples, 0.03%)</title><rect x="291.7" y="581" width="0.4" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="294.69" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="351.7" y="773" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="354.66" y="783.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.03%)</title><rect x="254.2" y="645" width="0.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="257.16" y="655.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="999.6" y="453" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1002.60" y="463.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (40,404,040 samples, 0.13%)</title><rect x="1034.1" y="693" width="1.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1037.11" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="457.8" y="677" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="460.78" y="687.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="121.7" y="661" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="124.73" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (50,505,050 samples, 0.16%)</title><rect x="375.0" y="725" width="2.1" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="377.95" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.03%)</title><rect x="415.5" y="837" width="0.4" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="418.50" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="327.9" y="805" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="330.93" y="815.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="278.3" y="661" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="281.32" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="598.8" y="693" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="601.84" y="703.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="962.9" y="821" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="965.93" y="831.5" ></text>
+</g>
+<g >
+<title>kernel_wait4 (10,101,010 samples, 0.03%)</title><rect x="727.4" y="805" width="0.4" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="730.39" y="815.5" ></text>
+</g>
+<g >
+<title>walk_component (111,111,110 samples, 0.34%)</title><rect x="90.7" y="901" width="4.7" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="93.67" y="911.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="591.9" y="773" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="594.94" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="462.5" y="741" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="465.52" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="16.9" y="933" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="19.90" y="943.5" ></text>
+</g>
+<g >
+<title>mkstemp (10,101,010 samples, 0.03%)</title><rect x="501.8" y="805" width="0.4" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="504.78" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_file_open (20,202,020 samples, 0.06%)</title><rect x="60.9" y="853" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="63.90" y="863.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="155.4" y="613" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="158.38" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.25%)</title><rect x="419.4" y="789" width="3.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="422.38" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="494.4" y="821" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="497.45" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.03%)</title><rect x="484.1" y="565" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="487.09" y="575.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (111,111,110 samples, 0.34%)</title><rect x="31.6" y="485" width="4.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="34.57" y="495.5" ></text>
+</g>
+<g >
+<title>security_inode_alloc (10,101,010 samples, 0.03%)</title><rect x="393.9" y="485" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="396.93" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="288.7" y="613" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="291.67" y="623.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.03%)</title><rect x="343.5" y="469" width="0.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="346.46" y="479.5" ></text>
+</g>
+<g >
+<title>__legitimize_mnt (10,101,010 samples, 0.03%)</title><rect x="728.3" y="709" width="0.4" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="731.26" y="719.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.06%)</title><rect x="442.7" y="645" width="0.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="445.68" y="655.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (70,707,070 samples, 0.22%)</title><rect x="424.6" y="661" width="3.0" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="427.56" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="614.8" y="693" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="617.80" y="703.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (80,808,080 samples, 0.25%)</title><rect x="1006.5" y="693" width="3.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1009.50" y="703.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="502.6" y="693" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="505.64" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (141,414,140 samples, 0.44%)</title><rect x="259.8" y="821" width="6.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="262.77" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="598.0" y="773" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="600.98" y="783.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="532.8" y="709" width="0.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="535.84" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="80.7" y="789" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="83.75" y="799.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="54.9" y="901" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="57.86" y="911.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="503.1" y="613" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="506.07" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="245.5" y="661" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="248.54" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.06%)</title><rect x="222.2" y="677" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="225.24" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="450.9" y="757" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="453.88" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (505,050,500 samples, 1.56%)</title><rect x="328.4" y="821" width="21.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="331.36" y="831.5" >[..</text>
+</g>
+<g >
+<title>read (20,202,020 samples, 0.06%)</title><rect x="217.1" y="789" width="0.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="220.06" y="799.5" ></text>
+</g>
+<g >
+<title>net_rx_action (90,909,090 samples, 0.28%)</title><rect x="31.6" y="389" width="3.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="34.57" y="399.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="332.2" y="693" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="335.24" y="703.5" ></text>
+</g>
+<g >
+<title>make_kgid (10,101,010 samples, 0.03%)</title><rect x="78.6" y="805" width="0.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="81.59" y="815.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="555.7" y="677" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="558.70" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.03%)</title><rect x="179.5" y="613" width="0.5" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="182.53" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="73.0" y="757" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="75.98" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_file_open (10,101,010 samples, 0.03%)</title><rect x="217.9" y="645" width="0.5" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="220.93" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (20,202,020 samples, 0.06%)</title><rect x="136.8" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="139.83" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="195.5" y="613" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="198.50" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (737,373,730 samples, 2.28%)</title><rect x="57.5" y="965" width="31.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="60.45" y="975.5" >__..</text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (20,202,020 samples, 0.06%)</title><rect x="521.2" y="597" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="524.19" y="607.5" ></text>
+</g>
+<g >
+<title>__free_pages (10,101,010 samples, 0.03%)</title><rect x="603.6" y="453" width="0.4" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="606.59" y="463.5" ></text>
+</g>
+<g >
+<title>fdopendir (10,101,010 samples, 0.03%)</title><rect x="196.8" y="853" width="0.4" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="199.79" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.31%)</title><rect x="114.0" y="709" width="4.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="116.96" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (30,303,030 samples, 0.09%)</title><rect x="131.2" y="597" width="1.3" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="134.22" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="477.2" y="565" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="480.19" y="575.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (30,303,030 samples, 0.09%)</title><rect x="1387.4" y="629" width="1.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1390.41" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="401.3" y="517" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="404.27" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="217.1" y="757" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="220.06" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="602.3" y="709" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="605.29" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (1,191,919,180 samples, 3.69%)</title><rect x="669.2" y="837" width="50.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="672.16" y="847.5" >__x64..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="453.0" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="456.03" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (131,313,130 samples, 0.41%)</title><rect x="627.3" y="789" width="5.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="630.31" y="799.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="422.4" y="693" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="425.40" y="703.5" ></text>
+</g>
+<g >
+<title>d_instantiate_new (10,101,010 samples, 0.03%)</title><rect x="514.7" y="709" width="0.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="517.72" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="591.1" y="693" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="594.08" y="703.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="731.7" y="773" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="734.71" y="783.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="411.2" y="773" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="414.19" y="783.5" ></text>
+</g>
+<g >
+<title>__pte_offset_map_lock (10,101,010 samples, 0.03%)</title><rect x="642.8" y="693" width="0.5" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="645.84" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="487.1" y="693" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="490.11" y="703.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="621.7" y="661" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="624.70" y="671.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="1021.6" y="37" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1024.60" y="47.5" ></text>
+</g>
+<g >
+<title>dput (80,808,080 samples, 0.25%)</title><rect x="424.1" y="709" width="3.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="427.13" y="719.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="132.9" y="565" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="135.94" y="575.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="101.0" y="773" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="104.02" y="783.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="120.9" y="677" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="123.87" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="491.4" y="661" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="494.43" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="394.4" y="517" width="0.4" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="397.36" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="617.0" y="789" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="619.96" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_ack (10,101,010 samples, 0.03%)</title><rect x="32.4" y="197" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="35.43" y="207.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="308.5" y="613" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="311.52" y="623.5" ></text>
+</g>
+<g >
+<title>kmalloc_reserve (30,303,030 samples, 0.09%)</title><rect x="1025.5" y="725" width="1.3" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1028.48" y="735.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (40,404,040 samples, 0.13%)</title><rect x="75.6" y="789" width="1.7" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="78.57" y="799.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="264.1" y="629" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="267.09" y="639.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.03%)</title><rect x="1037.1" y="757" width="0.5" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1040.13" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="590.2" y="789" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="593.21" y="799.5" ></text>
+</g>
+<g >
+<title>do_writepages (30,303,030 samples, 0.09%)</title><rect x="549.2" y="565" width="1.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="552.23" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_rename (70,707,070 samples, 0.22%)</title><rect x="231.3" y="709" width="3.0" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="234.30" y="719.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="614.8" y="533" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="617.80" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="613.1" y="709" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="616.08" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="234.8" y="837" width="2.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="237.75" y="847.5" ></text>
+</g>
+<g >
+<title>__wake_up (10,101,010 samples, 0.03%)</title><rect x="93.7" y="805" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="96.69" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="449.1" y="597" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="452.15" y="607.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.03%)</title><rect x="30.7" y="645" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="33.71" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (545,454,540 samples, 1.69%)</title><rect x="217.1" y="917" width="23.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="220.06" y="927.5" >[..</text>
+</g>
+<g >
+<title>evict (90,909,090 samples, 0.28%)</title><rect x="106.6" y="613" width="3.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="109.63" y="623.5" ></text>
+</g>
+<g >
+<title>sock_recvmsg (10,101,010 samples, 0.03%)</title><rect x="1372.3" y="741" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1375.31" y="751.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (101,010,100 samples, 0.31%)</title><rect x="1044.9" y="933" width="4.3" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1047.89" y="943.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (20,202,020 samples, 0.06%)</title><rect x="730.4" y="773" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="733.41" y="783.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.03%)</title><rect x="525.1" y="645" width="0.4" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="528.07" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="339.6" y="501" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="342.58" y="511.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="71.7" y="773" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="74.69" y="783.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.03%)</title><rect x="360.3" y="501" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="363.28" y="511.5" ></text>
+</g>
+<g >
+<title>file_close (161,616,160 samples, 0.50%)</title><rect x="29.8" y="901" width="6.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="32.84" y="911.5" ></text>
+</g>
+<g >
+<title>rename (121,212,120 samples, 0.38%)</title><rect x="431.5" y="789" width="5.1" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="434.46" y="799.5" ></text>
+</g>
+<g >
+<title>fsnotify_perm.part.0 (10,101,010 samples, 0.03%)</title><rect x="113.1" y="661" width="0.4" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="116.10" y="671.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="639.8" y="677" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="642.82" y="687.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="225.3" y="565" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="228.26" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (686,868,680 samples, 2.13%)</title><rect x="284.4" y="805" width="29.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="287.36" y="815.5" >[l..</text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (30,303,030 samples, 0.09%)</title><rect x="12.2" y="373" width="1.3" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="15.16" y="383.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="228.3" y="645" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="231.28" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="547.1" y="437" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="550.07" y="447.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="407.3" y="709" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="410.31" y="719.5" ></text>
+</g>
+<g >
+<title>mpage_prepare_extent_to_map (10,101,010 samples, 0.03%)</title><rect x="232.6" y="581" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="235.59" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="725" width="0.9" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1031.50" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="561.7" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="564.74" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="500.9" y="661" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="503.92" y="671.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (20,202,020 samples, 0.06%)</title><rect x="332.7" y="709" width="0.8" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="335.68" y="719.5" ></text>
+</g>
+<g >
+<title>ip_rcv_finish_core.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="1375.3" y="421" width="0.5" height="15.0" fill="rgb(0,216,113)" rx="2" ry="2" />
+<text x="1378.33" y="431.5" ></text>
+</g>
+<g >
+<title>ip_route_output_flow (10,101,010 samples, 0.03%)</title><rect x="34.2" y="197" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="37.16" y="207.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (10,101,010 samples, 0.03%)</title><rect x="525.1" y="613" width="0.4" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="528.07" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.09%)</title><rect x="184.3" y="501" width="1.3" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="187.28" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="414.6" y="725" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="417.64" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="288.2" y="581" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="291.24" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_setent (10,101,010 samples, 0.03%)</title><rect x="467.3" y="677" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="470.27" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="450.0" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="453.01" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_v4_syn_recv_sock (10,101,010 samples, 0.03%)</title><rect x="1028.9" y="293" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1031.93" y="303.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (10,101,010 samples, 0.03%)</title><rect x="1327.9" y="885" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1330.88" y="895.5" ></text>
+</g>
+<g >
+<title>eventfd_release (20,202,020 samples, 0.06%)</title><rect x="28.5" y="757" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="31.55" y="767.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (70,707,070 samples, 0.22%)</title><rect x="305.1" y="645" width="3.0" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="308.07" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="393.1" y="709" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="396.07" y="719.5" ></text>
+</g>
+<g >
+<title>evict (30,303,030 samples, 0.09%)</title><rect x="209.7" y="741" width="1.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="212.73" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="414.6" y="693" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="417.64" y="703.5" ></text>
+</g>
+<g >
+<title>task_work_run (20,202,020 samples, 0.06%)</title><rect x="169.2" y="725" width="0.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="172.18" y="735.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="228.3" y="581" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="231.28" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.03%)</title><rect x="463.4" y="613" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="466.39" y="623.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.03%)</title><rect x="446.6" y="613" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="449.56" y="623.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (50,505,050 samples, 0.16%)</title><rect x="356.8" y="661" width="2.2" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="359.83" y="671.5" ></text>
+</g>
+<g >
+<title>rename (70,707,070 samples, 0.22%)</title><rect x="400.4" y="757" width="3.0" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="403.40" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_v4_connect (70,707,070 samples, 0.22%)</title><rect x="1032.8" y="821" width="3.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1035.81" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="111.4" y="709" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="114.38" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="160.1" y="741" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="163.12" y="751.5" ></text>
+</g>
+<g >
+<title>common_perm_cond (10,101,010 samples, 0.03%)</title><rect x="605.7" y="645" width="0.5" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="608.74" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="731.7" y="837" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="734.71" y="847.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.03%)</title><rect x="166.6" y="597" width="0.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="169.59" y="607.5" ></text>
+</g>
+<g >
+<title>locked_inode_to_wb_and_lock_list (10,101,010 samples, 0.03%)</title><rect x="205.0" y="725" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="207.99" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (202,020,200 samples, 0.63%)</title><rect x="428.4" y="837" width="8.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="431.44" y="847.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="362.4" y="613" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="365.44" y="623.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="272.7" y="693" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="275.71" y="703.5" ></text>
+</g>
+<g >
+<title>__sock_release (131,313,130 samples, 0.41%)</title><rect x="31.1" y="725" width="5.6" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="34.14" y="735.5" ></text>
+</g>
+<g >
+<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="250.3" y="661" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="253.28" y="671.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="612.6" y="613" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="615.64" y="623.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="613.1" y="661" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="616.08" y="671.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="471.2" y="517" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="474.15" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="419.8" y="725" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="422.82" y="735.5" ></text>
+</g>
+<g >
+<title>__mmdrop (10,101,010 samples, 0.03%)</title><rect x="718.8" y="725" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="721.77" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (191,919,190 samples, 0.59%)</title><rect x="733.0" y="789" width="8.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="736.00" y="799.5" ></text>
+</g>
+<g >
+<title>do_linkat (101,010,100 samples, 0.31%)</title><rect x="308.1" y="725" width="4.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="311.09" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="728.7" y="837" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="731.69" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="591.1" y="805" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="594.08" y="815.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="212.8" y="773" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="215.75" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_wait_block_bitmap (10,101,010 samples, 0.03%)</title><rect x="186.0" y="533" width="0.4" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="189.01" y="543.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (20,202,020 samples, 0.06%)</title><rect x="344.3" y="405" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="347.32" y="415.5" ></text>
+</g>
+<g >
+<title>ip_output (121,212,120 samples, 0.38%)</title><rect x="31.1" y="533" width="5.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="34.14" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (868,686,860 samples, 2.69%)</title><rect x="284.4" y="821" width="37.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="287.36" y="831.5" >[li..</text>
+</g>
+<g >
+<title>ip_rcv (40,404,040 samples, 0.13%)</title><rect x="1377.9" y="373" width="1.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1380.92" y="383.5" ></text>
+</g>
+<g >
+<title>net_send (131,313,130 samples, 0.41%)</title><rect x="10.0" y="949" width="5.6" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="13.00" y="959.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="593.7" y="821" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="596.66" y="831.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="235.6" y="693" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="238.61" y="703.5" ></text>
+</g>
+<g >
+<title>copy_creds (10,101,010 samples, 0.03%)</title><rect x="633.4" y="773" width="0.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="636.35" y="783.5" ></text>
+</g>
+<g >
+<title>unlink (40,404,040 samples, 0.13%)</title><rect x="118.3" y="725" width="1.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="121.28" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="512.6" y="629" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="515.56" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="522.5" y="581" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="525.49" y="591.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (20,202,020 samples, 0.06%)</title><rect x="324.0" y="629" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="327.05" y="639.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (20,202,020 samples, 0.06%)</title><rect x="291.3" y="613" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="294.26" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="166.6" y="613" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="169.59" y="623.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (30,303,030 samples, 0.09%)</title><rect x="1034.5" y="629" width="1.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1037.54" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (101,010,100 samples, 0.31%)</title><rect x="288.2" y="661" width="4.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="291.24" y="671.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="300.8" y="501" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="303.75" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="444.4" y="789" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="447.40" y="799.5" ></text>
+</g>
+<g >
+<title>mas_commit_b_node.isra.0 (50,505,050 samples, 0.16%)</title><rect x="653.6" y="677" width="2.2" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="656.63" y="687.5" ></text>
+</g>
+<g >
+<title>new_slab (10,101,010 samples, 0.03%)</title><rect x="489.7" y="533" width="0.4" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="492.70" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (121,212,120 samples, 0.38%)</title><rect x="17.3" y="1045" width="5.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="20.33" y="1055.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.03%)</title><rect x="212.8" y="805" width="0.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="215.75" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="508.7" y="469" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="511.68" y="479.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.03%)</title><rect x="393.9" y="517" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="396.93" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (20,202,020 samples, 0.06%)</title><rect x="308.5" y="661" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="311.52" y="671.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="391.3" y="549" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="394.34" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.09%)</title><rect x="560.4" y="693" width="1.3" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="563.45" y="703.5" ></text>
+</g>
+<g >
+<title>vm_normal_page (20,202,020 samples, 0.06%)</title><rect x="648.0" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="651.02" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="621.7" y="645" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="624.70" y="655.5" ></text>
+</g>
+<g >
+<title>readlink (10,101,010 samples, 0.03%)</title><rect x="382.7" y="725" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="385.72" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (40,404,040 samples, 0.13%)</title><rect x="95.8" y="837" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="98.85" y="847.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="281.8" y="693" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="284.77" y="703.5" ></text>
+</g>
+<g >
+<title>accept4 (80,808,080 samples, 0.25%)</title><rect x="38.5" y="901" width="3.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="41.47" y="911.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (70,707,070 samples, 0.22%)</title><rect x="491.0" y="773" width="3.0" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="493.99" y="783.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (20,202,020 samples, 0.06%)</title><rect x="730.4" y="789" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="733.41" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_rename (80,808,080 samples, 0.25%)</title><rect x="510.0" y="677" width="3.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="512.97" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.06%)</title><rect x="619.1" y="773" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="622.12" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="235.6" y="725" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="238.61" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (40,404,040 samples, 0.13%)</title><rect x="92.4" y="869" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="95.39" y="879.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="268.8" y="741" width="0.5" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="271.83" y="751.5" ></text>
+</g>
+<g >
+<title>add_transaction_credits (10,101,010 samples, 0.03%)</title><rect x="499.6" y="533" width="0.5" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="502.62" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (20,202,020 samples, 0.06%)</title><rect x="324.9" y="645" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="327.91" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="429.7" y="757" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="432.74" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (20,202,020 samples, 0.06%)</title><rect x="488.8" y="709" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="491.84" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="449.1" y="581" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="452.15" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (464,646,460 samples, 1.44%)</title><rect x="568.6" y="821" width="19.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="571.64" y="831.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="361.6" y="565" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="364.58" y="575.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.06%)</title><rect x="1383.1" y="277" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1386.10" y="287.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="205.4" y="661" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="208.42" y="671.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (20,202,020 samples, 0.06%)</title><rect x="991.0" y="693" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="993.97" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="551.4" y="661" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="554.39" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="441.8" y="741" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="444.82" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_initialize_context (10,101,010 samples, 0.03%)</title><rect x="565.6" y="469" width="0.5" height="15.0" fill="rgb(0,225,151)" rx="2" ry="2" />
+<text x="568.62" y="479.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="673.9" y="773" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="676.90" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="451.7" y="709" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="454.74" y="719.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.03%)</title><rect x="614.8" y="549" width="0.4" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="617.80" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="259.8" y="741" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="262.77" y="751.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="529.0" y="533" width="0.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="531.96" y="543.5" ></text>
+</g>
+<g >
+<title>tcp_add_backlog (10,101,010 samples, 0.03%)</title><rect x="11.7" y="373" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="14.73" y="383.5" ></text>
+</g>
+<g >
+<title>unlink_cb (141,414,140 samples, 0.44%)</title><rect x="114.0" y="757" width="6.0" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="116.96" y="767.5" ></text>
+</g>
+<g >
+<title>iput (121,212,120 samples, 0.38%)</title><rect x="338.7" y="629" width="5.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="341.72" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,222,222,200 samples, 6.88%)</title><rect x="101.9" y="853" width="94.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="104.88" y="863.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>mkdir (131,313,130 samples, 0.41%)</title><rect x="49.3" y="997" width="5.6" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="52.26" y="1007.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="54.9" y="917" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="57.86" y="927.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="452.2" y="725" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="455.17" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="220.9" y="661" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="223.95" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.03%)</title><rect x="158.4" y="453" width="0.4" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="161.40" y="463.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="612.6" y="677" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="615.64" y="687.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (10,101,010 samples, 0.03%)</title><rect x="1035.4" y="485" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1038.40" y="495.5" ></text>
+</g>
+<g >
+<title>getdents64 (10,101,010 samples, 0.03%)</title><rect x="460.4" y="757" width="0.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="463.37" y="767.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="352.1" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="355.09" y="639.5" ></text>
+</g>
+<g >
+<title>copy_page_to_iter (373,737,370 samples, 1.16%)</title><rect x="676.9" y="773" width="16.0" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="679.92" y="783.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="27.3" y="853" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="30.26" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (30,303,030 samples, 0.09%)</title><rect x="143.3" y="645" width="1.3" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="146.30" y="655.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (121,212,120 samples, 0.38%)</title><rect x="508.2" y="693" width="5.2" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="511.25" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="255.0" y="597" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="258.03" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="357" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1027.19" y="367.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (30,303,030 samples, 0.09%)</title><rect x="420.2" y="613" width="1.3" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="423.25" y="623.5" ></text>
+</g>
+<g >
+<title>apparmor_d_instantiate (10,101,010 samples, 0.03%)</title><rect x="41.1" y="757" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="44.06" y="767.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="487.1" y="437" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="490.11" y="447.5" ></text>
+</g>
+<g >
+<title>inode_permission (20,202,020 samples, 0.06%)</title><rect x="63.1" y="885" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="66.06" y="895.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.06%)</title><rect x="374.1" y="725" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="377.09" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.25%)</title><rect x="38.5" y="885" width="3.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="41.47" y="895.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (20,202,020 samples, 0.06%)</title><rect x="1316.2" y="773" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1319.23" y="783.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="457.8" y="661" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="460.78" y="671.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_state (10,101,010 samples, 0.03%)</title><rect x="740.3" y="597" width="0.5" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="743.33" y="607.5" ></text>
+</g>
+<g >
+<title>rmdir (434,343,430 samples, 1.34%)</title><rect x="138.6" y="757" width="18.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="141.55" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (30,303,030 samples, 0.09%)</title><rect x="402.1" y="629" width="1.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="405.13" y="639.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (30,303,030 samples, 0.09%)</title><rect x="168.7" y="821" width="1.3" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="171.75" y="831.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="54.9" y="949" width="1.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="57.86" y="959.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="485.8" y="693" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="488.82" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="266.7" y="741" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="269.67" y="751.5" ></text>
+</g>
+<g >
+<title>do_filp_open (60,606,060 samples, 0.19%)</title><rect x="253.3" y="757" width="2.6" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="256.30" y="767.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (20,202,020 samples, 0.06%)</title><rect x="1024.2" y="645" width="0.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1027.19" y="655.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="1366.3" y="725" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1369.27" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (30,303,030 samples, 0.09%)</title><rect x="370.6" y="757" width="1.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="373.64" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="513.4" y="693" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="516.43" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_brk (10,101,010 samples, 0.03%)</title><rect x="127.3" y="613" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="130.34" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (50,505,050 samples, 0.16%)</title><rect x="75.1" y="805" width="2.2" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="78.14" y="815.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="348.6" y="677" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="351.64" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_get_string_buf (10,101,010 samples, 0.03%)</title><rect x="588.5" y="853" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="591.49" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (30,303,030 samples, 0.09%)</title><rect x="346.0" y="501" width="1.3" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="349.05" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="113.5" y="597" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="116.53" y="607.5" ></text>
+</g>
+<g >
+<title>__get_user_8 (10,101,010 samples, 0.03%)</title><rect x="462.1" y="597" width="0.4" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="465.09" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="98.0" y="853" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="101.00" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="340.0" y="501" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="343.01" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="405.6" y="805" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="408.58" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (30,303,030 samples, 0.09%)</title><rect x="565.6" y="645" width="1.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="568.62" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="249.0" y="677" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="251.99" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (50,505,050 samples, 0.16%)</title><rect x="595.4" y="837" width="2.1" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="598.39" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="727.0" y="869" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="729.96" y="879.5" ></text>
+</g>
+<g >
+<title>security_current_getsecid_subj (10,101,010 samples, 0.03%)</title><rect x="599.7" y="565" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="602.70" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="444.8" y="805" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="447.84" y="815.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="1363.3" y="693" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1366.25" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="595.4" y="805" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="598.39" y="815.5" ></text>
+</g>
+<g >
+<title>generic_write_end (20,202,020 samples, 0.06%)</title><rect x="271.9" y="645" width="0.8" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="274.85" y="655.5" ></text>
+</g>
+<g >
+<title>__fdget_pos (10,101,010 samples, 0.03%)</title><rect x="373.7" y="613" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="376.66" y="623.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="604.0" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="607.02" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="1376.6" y="917" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1379.63" y="927.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="591.1" y="725" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="594.08" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="151.5" y="517" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="154.49" y="527.5" ></text>
+</g>
+<g >
+<title>opendir (10,101,010 samples, 0.03%)</title><rect x="250.7" y="805" width="0.4" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="253.71" y="815.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.03%)</title><rect x="218.4" y="693" width="0.4" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="221.36" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="281.3" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="284.34" y="815.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (40,404,040 samples, 0.13%)</title><rect x="271.0" y="677" width="1.7" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="273.99" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="378.0" y="693" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="380.97" y="703.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="71.7" y="821" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="74.69" y="831.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="255.9" y="741" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="258.89" y="751.5" ></text>
+</g>
+<g >
+<title>__fput (70,707,070 samples, 0.22%)</title><rect x="1377.1" y="805" width="3.0" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1380.06" y="815.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (60,606,060 samples, 0.19%)</title><rect x="1377.5" y="581" width="2.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1380.49" y="591.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="367.6" y="645" width="0.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="370.62" y="655.5" ></text>
+</g>
+<g >
+<title>put_cred_rcu (10,101,010 samples, 0.03%)</title><rect x="1363.3" y="597" width="0.4" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="1366.25" y="607.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.06%)</title><rect x="445.7" y="565" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="448.70" y="575.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.03%)</title><rect x="992.7" y="581" width="0.4" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="995.69" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_readlink (10,101,010 samples, 0.03%)</title><rect x="245.5" y="709" width="0.5" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="248.54" y="719.5" ></text>
+</g>
+<g >
+<title>fprintf (40,404,040 samples, 0.13%)</title><rect x="215.3" y="885" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="218.34" y="895.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="183.0" y="469" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="185.99" y="479.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.03%)</title><rect x="308.1" y="661" width="0.4" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="311.09" y="671.5" ></text>
+</g>
+<g >
+<title>git_index_add (70,707,070 samples, 0.22%)</title><rect x="267.1" y="869" width="3.0" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="270.11" y="879.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (171,717,170 samples, 0.53%)</title><rect x="517.3" y="757" width="7.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="520.31" y="767.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="621.7" y="613" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="624.70" y="623.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="277.9" y="773" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="280.89" y="783.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.03%)</title><rect x="532.8" y="725" width="0.5" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="535.84" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="375.4" y="709" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="378.38" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="423.3" y="789" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="426.27" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="443.5" y="693" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="446.54" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="467.7" y="741" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="470.70" y="751.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (20,202,020 samples, 0.06%)</title><rect x="231.7" y="581" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="234.73" y="591.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.03%)</title><rect x="374.1" y="661" width="0.4" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="377.09" y="671.5" ></text>
+</g>
+<g >
+<title>security_file_free (10,101,010 samples, 0.03%)</title><rect x="336.1" y="629" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="339.13" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.16%)</title><rect x="530.3" y="805" width="2.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="533.25" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (242,424,240 samples, 0.75%)</title><rect x="240.8" y="821" width="10.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="243.79" y="831.5" ></text>
+</g>
+<g >
+<title>__memset (20,202,020 samples, 0.06%)</title><rect x="375.4" y="597" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="378.38" y="607.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.03%)</title><rect x="633.4" y="709" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="636.35" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="557.0" y="741" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="560.00" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="454.3" y="693" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="457.33" y="703.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="490.6" y="533" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="493.56" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="602.7" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="605.72" y="735.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (20,202,020 samples, 0.06%)</title><rect x="434.5" y="549" width="0.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="437.48" y="559.5" ></text>
+</g>
+<g >
+<title>__inet_inherit_port (10,101,010 samples, 0.03%)</title><rect x="1028.9" y="277" width="0.5" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1031.93" y="287.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="1327.9" y="821" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1330.88" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_create (494,949,490 samples, 1.53%)</title><rect x="66.1" y="869" width="21.1" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="69.08" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="367.6" y="693" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="370.62" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="458.6" y="805" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="461.64" y="815.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_uncharge (40,404,040 samples, 0.13%)</title><rect x="674.3" y="741" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="677.33" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.03%)</title><rect x="171.8" y="709" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="174.77" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="440.5" y="629" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="443.52" y="639.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (10,101,010 samples, 0.03%)</title><rect x="433.2" y="533" width="0.4" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="436.19" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="618.3" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="621.25" y="735.5" ></text>
+</g>
+<g >
+<title>end_bio_bh_io_sync (10,101,010 samples, 0.03%)</title><rect x="584.2" y="325" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="587.17" y="335.5" ></text>
+</g>
+<g >
+<title>tcp_close (121,212,120 samples, 0.38%)</title><rect x="31.1" y="677" width="5.2" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="34.14" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="387.0" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="390.03" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="352.1" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="355.09" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.19%)</title><rect x="408.6" y="741" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="411.60" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="546.6" y="373" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="549.64" y="383.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="731.7" y="805" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="734.71" y="815.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.03%)</title><rect x="360.3" y="485" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="363.28" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.06%)</title><rect x="426.3" y="469" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="429.29" y="479.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="1045.8" y="885" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1048.75" y="895.5" ></text>
+</g>
+<g >
+<title>mnt_drop_write (10,101,010 samples, 0.03%)</title><rect x="349.1" y="709" width="0.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="352.07" y="719.5" ></text>
+</g>
+<g >
+<title>common_perm_cond (10,101,010 samples, 0.03%)</title><rect x="239.1" y="581" width="0.4" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="242.07" y="591.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.06%)</title><rect x="539.7" y="773" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="542.74" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (50,505,050 samples, 0.16%)</title><rect x="630.3" y="725" width="2.2" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="633.33" y="735.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="378.0" y="597" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="380.97" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.03%)</title><rect x="631.2" y="677" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="634.19" y="687.5" ></text>
+</g>
+<g >
+<title>__do_softirq (60,606,060 samples, 0.19%)</title><rect x="1020.7" y="517" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1023.73" y="527.5" ></text>
+</g>
+<g >
+<title>tcp_data_ready (10,101,010 samples, 0.03%)</title><rect x="1009.1" y="245" width="0.4" height="15.0" fill="rgb(0,217,113)" rx="2" ry="2" />
+<text x="1012.09" y="255.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="435.8" y="645" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="438.78" y="655.5" ></text>
+</g>
+<g >
+<title>alloc_inode (40,404,040 samples, 0.13%)</title><rect x="520.8" y="629" width="1.7" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="523.76" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_data_ready (20,202,020 samples, 0.06%)</title><rect x="12.6" y="325" width="0.9" height="15.0" fill="rgb(0,217,113)" rx="2" ry="2" />
+<text x="15.59" y="335.5" ></text>
+</g>
+<g >
+<title>git_repository__cleanup (10,101,010 samples, 0.03%)</title><rect x="381.4" y="789" width="0.5" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="384.42" y="799.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="589.8" y="693" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="592.78" y="703.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="332.2" y="629" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="335.24" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (20,202,020 samples, 0.06%)</title><rect x="105.8" y="565" width="0.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="108.77" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="384.4" y="677" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="387.44" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="525.5" y="661" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="528.50" y="671.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="365.0" y="597" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="368.03" y="607.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.03%)</title><rect x="222.7" y="645" width="0.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="225.67" y="655.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="277.9" y="501" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="280.89" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.03%)</title><rect x="483.7" y="549" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="486.66" y="559.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="111.4" y="645" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="114.38" y="655.5" ></text>
+</g>
+<g >
+<title>charge_memcg (10,101,010 samples, 0.03%)</title><rect x="1048.3" y="757" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1051.34" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="212.8" y="837" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="215.75" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.03%)</title><rect x="340.4" y="453" width="0.5" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="343.44" y="463.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="590.6" y="693" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="593.64" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_write (60,606,060 samples, 0.19%)</title><rect x="553.1" y="661" width="2.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="556.11" y="671.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="332.2" y="533" width="0.5" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="335.24" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.03%)</title><rect x="544.9" y="565" width="0.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="547.92" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (40,404,040 samples, 0.13%)</title><rect x="1382.2" y="757" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1385.24" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.06%)</title><rect x="146.7" y="581" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="149.75" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="601.9" y="693" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="604.86" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="231.7" y="517" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="234.73" y="527.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.03%)</title><rect x="220.5" y="629" width="0.4" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="223.52" y="639.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="632.9" y="709" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="635.92" y="719.5" ></text>
+</g>
+<g >
+<title>scsi_prepare_cmd (10,101,010 samples, 0.03%)</title><rect x="511.3" y="341" width="0.4" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="514.27" y="351.5" ></text>
+</g>
+<g >
+<title>blk_cgroup_congested (20,202,020 samples, 0.06%)</title><rect x="1351.6" y="741" width="0.9" height="15.0" fill="rgb(0,235,192)" rx="2" ry="2" />
+<text x="1354.61" y="751.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (545,454,540 samples, 1.69%)</title><rect x="1343.0" y="853" width="23.3" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1345.98" y="863.5" >e..</text>
+</g>
+<g >
+<title>net_accept (80,808,080 samples, 0.25%)</title><rect x="38.5" y="917" width="3.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="41.47" y="927.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.06%)</title><rect x="585.9" y="693" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="588.90" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="441.8" y="789" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="444.82" y="799.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (10,101,010 samples, 0.03%)</title><rect x="1008.2" y="101" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1011.22" y="111.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="489.7" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="492.70" y="671.5" ></text>
+</g>
+<g >
+<title>git_repository__cleanup (141,414,140 samples, 0.44%)</title><rect x="95.8" y="901" width="6.1" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="98.85" y="911.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.06%)</title><rect x="431.5" y="677" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="434.46" y="687.5" ></text>
+</g>
+<g >
+<title>libjson_set_string_internal (10,101,010 samples, 0.03%)</title><rect x="1389.6" y="885" width="0.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1392.57" y="895.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="488.8" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="491.84" y="751.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="101.5" y="869" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="104.45" y="879.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="383.6" y="645" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="386.58" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.22%)</title><rect x="247.7" y="757" width="3.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="250.69" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="933" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1373.59" y="943.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (20,202,020 samples, 0.06%)</title><rect x="1374.5" y="277" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1377.47" y="287.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="380.1" y="613" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="383.13" y="623.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="608.8" y="565" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="611.76" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.03%)</title><rect x="626.9" y="693" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="629.88" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.03%)</title><rect x="357.3" y="533" width="0.4" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="360.26" y="543.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="1317.5" y="837" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1320.53" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (868,686,860 samples, 2.69%)</title><rect x="966.4" y="821" width="37.1" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="969.38" y="831.5" >[li..</text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (10,101,010 samples, 0.03%)</title><rect x="549.2" y="485" width="0.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="552.23" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="164.4" y="597" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="167.44" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (10,101,010 samples, 0.03%)</title><rect x="626.9" y="645" width="0.4" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="629.88" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_release_folio (10,101,010 samples, 0.03%)</title><rect x="343.5" y="485" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="346.46" y="495.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="196.8" y="837" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="199.79" y="847.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="101.0" y="805" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="104.02" y="815.5" ></text>
+</g>
+<g >
+<title>inet_release (121,212,120 samples, 0.38%)</title><rect x="31.1" y="693" width="5.2" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="34.14" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="279.6" y="773" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="282.62" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="126.5" y="757" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="129.47" y="767.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.03%)</title><rect x="378.0" y="581" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="380.97" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (141,414,140 samples, 0.44%)</title><rect x="386.6" y="773" width="6.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="389.60" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_mstamp_refresh (10,101,010 samples, 0.03%)</title><rect x="1373.6" y="709" width="0.4" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="1376.61" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (30,303,030 samples, 0.09%)</title><rect x="1028.1" y="757" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1031.07" y="767.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.03%)</title><rect x="76.4" y="741" width="0.5" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="79.43" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="617.8" y="725" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="620.82" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (20,202,020 samples, 0.06%)</title><rect x="537.2" y="629" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="540.15" y="639.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (40,404,040 samples, 0.13%)</title><rect x="964.2" y="789" width="1.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="967.22" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (50,505,050 samples, 0.16%)</title><rect x="116.1" y="581" width="2.2" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="119.12" y="591.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="314.1" y="613" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="317.13" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="16.9" y="965" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="19.90" y="975.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="545.8" y="517" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="548.78" y="527.5" ></text>
+</g>
+<g >
+<title>__blk_mq_end_request (10,101,010 samples, 0.03%)</title><rect x="277.9" y="421" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="280.89" y="431.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (121,212,120 samples, 0.38%)</title><rect x="31.1" y="565" width="5.2" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="34.14" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="383.1" y="677" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="386.15" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="284.8" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="287.79" y="735.5" ></text>
+</g>
+<g >
+<title>log_entry_start (70,707,070 samples, 0.22%)</title><rect x="214.0" y="917" width="3.1" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="217.05" y="927.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="615.2" y="677" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="618.23" y="687.5" ></text>
+</g>
+<g >
+<title>mas_split.isra.0 (50,505,050 samples, 0.16%)</title><rect x="653.6" y="661" width="2.2" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="656.63" y="671.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_setattr (10,101,010 samples, 0.03%)</title><rect x="500.5" y="693" width="0.4" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="503.48" y="703.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.03%)</title><rect x="1366.3" y="773" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1369.27" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="362.9" y="725" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="365.87" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="516.0" y="565" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="519.01" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.03%)</title><rect x="292.6" y="629" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="295.56" y="639.5" ></text>
+</g>
+<g >
+<title>getdents64 (30,303,030 samples, 0.09%)</title><rect x="197.2" y="837" width="1.3" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="200.22" y="847.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="613.1" y="629" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="616.08" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.03%)</title><rect x="512.6" y="597" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="515.56" y="607.5" ></text>
+</g>
+<g >
+<title>rseq_ip_fixup (10,101,010 samples, 0.03%)</title><rect x="457.3" y="597" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="460.35" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="311.5" y="645" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="314.54" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (40,404,040 samples, 0.13%)</title><rect x="504.8" y="629" width="1.7" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="507.80" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (30,303,030 samples, 0.09%)</title><rect x="209.7" y="725" width="1.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="212.73" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="360.3" y="709" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="363.28" y="719.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="510.8" y="501" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="513.84" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="126.9" y="741" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="129.91" y="751.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (20,202,020 samples, 0.06%)</title><rect x="216.2" y="709" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="219.20" y="719.5" ></text>
+</g>
+<g >
+<title>pipe_read (1,131,313,120 samples, 3.50%)</title><rect x="670.9" y="789" width="48.3" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="673.88" y="799.5" >pipe..</text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="414.6" y="613" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="417.64" y="623.5" ></text>
+</g>
+<g >
+<title>__get_obj_cgroup_from_memcg (10,101,010 samples, 0.03%)</title><rect x="463.4" y="501" width="0.4" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="466.39" y="511.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.03%)</title><rect x="353.4" y="789" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="356.38" y="799.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.03%)</title><rect x="1367.1" y="661" width="0.5" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1370.14" y="671.5" ></text>
+</g>
+<g >
+<title>dentry_kill (70,707,070 samples, 0.22%)</title><rect x="424.6" y="693" width="3.0" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="427.56" y="703.5" ></text>
+</g>
+<g >
+<title>client_destroy_handler (232,323,230 samples, 0.72%)</title><rect x="26.8" y="949" width="9.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="29.82" y="959.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (30,303,030 samples, 0.09%)</title><rect x="1034.5" y="533" width="1.3" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1037.54" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (121,212,120 samples, 0.38%)</title><rect x="49.7" y="901" width="5.2" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="52.69" y="911.5" ></text>
+</g>
+<g >
+<title>create_empty_buffers (20,202,020 samples, 0.06%)</title><rect x="530.7" y="645" width="0.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="533.68" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="135.1" y="645" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="138.10" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.22%)</title><rect x="247.7" y="741" width="3.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="250.69" y="751.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (545,454,540 samples, 1.69%)</title><rect x="980.2" y="789" width="23.3" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="983.18" y="799.5" >e..</text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="598.4" y="709" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="601.41" y="719.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.06%)</title><rect x="453.0" y="773" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="456.03" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="273.1" y="741" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="276.14" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.03%)</title><rect x="10.0" y="773" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="13.00" y="783.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_create_internal (10,101,010 samples, 0.03%)</title><rect x="1389.6" y="933" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1392.57" y="943.5" ></text>
+</g>
+<g >
+<title>folio_alloc_buffers (20,202,020 samples, 0.06%)</title><rect x="530.7" y="613" width="0.8" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="533.68" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_symlink (50,505,050 samples, 0.16%)</title><rect x="524.6" y="725" width="2.2" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="527.64" y="735.5" ></text>
+</g>
+<g >
+<title>getdents64 (10,101,010 samples, 0.03%)</title><rect x="349.9" y="821" width="0.5" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="352.93" y="831.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="541.0" y="549" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="544.03" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (151,515,150 samples, 0.47%)</title><rect x="161.8" y="725" width="6.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="164.85" y="735.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_wb_stats (10,101,010 samples, 0.03%)</title><rect x="553.5" y="549" width="0.5" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="556.54" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.03%)</title><rect x="346.9" y="453" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="349.91" y="463.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (40,404,040 samples, 0.13%)</title><rect x="231.3" y="661" width="1.7" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="234.30" y="671.5" ></text>
+</g>
+<g >
+<title>process_backlog (20,202,020 samples, 0.06%)</title><rect x="1387.4" y="549" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1390.41" y="559.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.03%)</title><rect x="332.2" y="677" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="335.24" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="284.8" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="287.79" y="719.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="428.0" y="789" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="431.01" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="266.7" y="677" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="269.67" y="687.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="119.6" y="645" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="122.57" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="214.9" y="869" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="217.91" y="879.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="113.5" y="565" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="116.53" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="228.3" y="629" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="231.28" y="639.5" ></text>
+</g>
+<g >
+<title>main (575,757,570 samples, 1.78%)</title><rect x="22.5" y="1013" width="24.6" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="25.51" y="1023.5" >m..</text>
+</g>
+<g >
+<title>brk (30,303,030 samples, 0.09%)</title><rect x="1046.6" y="853" width="1.3" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="1049.62" y="863.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="161.4" y="677" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="164.42" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.06%)</title><rect x="494.9" y="789" width="0.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="497.88" y="799.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="490.6" y="565" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="493.56" y="575.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (111,111,110 samples, 0.34%)</title><rect x="543.6" y="629" width="4.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="546.62" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_clone3 (121,212,120 samples, 0.38%)</title><rect x="17.3" y="1013" width="5.2" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="20.33" y="1023.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="274.4" y="725" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="277.44" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="250.7" y="741" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="253.71" y="751.5" ></text>
+</g>
+<g >
+<title>wait4 (20,202,020 samples, 0.06%)</title><rect x="727.0" y="885" width="0.8" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="729.96" y="895.5" ></text>
+</g>
+<g >
+<title>__fdget_pos (10,101,010 samples, 0.03%)</title><rect x="227.0" y="613" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="229.99" y="623.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="447.4" y="581" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="450.42" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_find_extent (10,101,010 samples, 0.03%)</title><rect x="357.7" y="517" width="0.4" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="360.70" y="527.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (20,202,020 samples, 0.06%)</title><rect x="556.1" y="741" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="559.13" y="751.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="414.6" y="597" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="417.64" y="607.5" ></text>
+</g>
+<g >
+<title>read_tsc (10,101,010 samples, 0.03%)</title><rect x="1373.6" y="693" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1376.61" y="703.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (30,303,030 samples, 0.09%)</title><rect x="215.8" y="853" width="1.3" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="218.77" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="116.6" y="501" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="119.55" y="511.5" ></text>
+</g>
+<g >
+<title>do_readlinkat (10,101,010 samples, 0.03%)</title><rect x="245.5" y="693" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="248.54" y="703.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (10,101,010 samples, 0.03%)</title><rect x="28.1" y="725" width="0.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="31.12" y="735.5" ></text>
+</g>
+<g >
+<title>sock_rfree (10,101,010 samples, 0.03%)</title><rect x="1372.3" y="677" width="0.4" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1375.31" y="687.5" ></text>
+</g>
+<g >
+<title>fdopendir (80,808,080 samples, 0.25%)</title><rect x="126.5" y="789" width="3.4" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="129.47" y="799.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="526.4" y="629" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="529.37" y="639.5" ></text>
+</g>
+<g >
+<title>capable_wrt_inode_uidgid (10,101,010 samples, 0.03%)</title><rect x="731.7" y="725" width="0.4" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="734.71" y="735.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (10,101,010 samples, 0.03%)</title><rect x="504.8" y="533" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="507.80" y="543.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="245.1" y="661" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="248.10" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.06%)</title><rect x="516.4" y="677" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="519.45" y="687.5" ></text>
+</g>
+<g >
+<title>git_reference_foreach_name (131,313,130 samples, 0.41%)</title><rect x="609.6" y="869" width="5.6" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="612.62" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="414.2" y="677" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="417.21" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="489.7" y="565" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="492.70" y="575.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="407.3" y="693" width="1.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="410.31" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.03%)</title><rect x="629.5" y="725" width="0.4" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="632.47" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (40,404,040 samples, 0.13%)</title><rect x="171.3" y="757" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="174.34" y="767.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.03%)</title><rect x="260.2" y="581" width="0.4" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="263.20" y="591.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="513.4" y="629" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="516.43" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="271.0" y="773" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="273.99" y="783.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (20,202,020 samples, 0.06%)</title><rect x="1387.4" y="293" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1390.41" y="303.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.03%)</title><rect x="251.1" y="709" width="0.5" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="254.14" y="719.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.03%)</title><rect x="400.8" y="597" width="0.5" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="403.83" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="497.9" y="549" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="500.90" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.06%)</title><rect x="574.7" y="677" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="577.68" y="687.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.03%)</title><rect x="490.6" y="549" width="0.4" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="493.56" y="559.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="246.8" y="709" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="249.83" y="719.5" ></text>
+</g>
+<g >
+<title>process_backlog (40,404,040 samples, 0.13%)</title><rect x="1021.2" y="469" width="1.7" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1024.17" y="479.5" ></text>
+</g>
+<g >
+<title>security_file_free (10,101,010 samples, 0.03%)</title><rect x="502.2" y="677" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="505.21" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (20,202,020 samples, 0.06%)</title><rect x="53.6" y="773" width="0.8" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="56.57" y="783.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.03%)</title><rect x="610.9" y="549" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="613.92" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="369.3" y="661" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="372.34" y="671.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (30,303,030 samples, 0.09%)</title><rect x="313.7" y="757" width="1.3" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="316.69" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="438.4" y="741" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="441.37" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="295.1" y="533" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="298.15" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="255.0" y="613" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="258.03" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (101,010,100 samples, 0.31%)</title><rect x="10.9" y="757" width="4.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="13.86" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="468.1" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="471.13" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="449.6" y="805" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="452.58" y="815.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (60,606,060 samples, 0.19%)</title><rect x="1377.5" y="533" width="2.6" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1380.49" y="543.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (20,202,020 samples, 0.06%)</title><rect x="1024.2" y="725" width="0.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1027.19" y="735.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (80,808,080 samples, 0.25%)</title><rect x="1006.5" y="629" width="3.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1009.50" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.13%)</title><rect x="279.6" y="757" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="282.62" y="767.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.03%)</title><rect x="381.4" y="757" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="384.42" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="242.1" y="661" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="245.09" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="385.3" y="629" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="388.30" y="639.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (60,606,060 samples, 0.19%)</title><rect x="130.8" y="645" width="2.6" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="133.79" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (50,505,050 samples, 0.16%)</title><rect x="69.5" y="837" width="2.2" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="72.53" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (101,010,100 samples, 0.31%)</title><rect x="106.6" y="677" width="4.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="109.63" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="202.0" y="869" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="204.97" y="879.5" ></text>
+</g>
+<g >
+<title>__block_commit_write.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="410.8" y="565" width="0.4" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="413.76" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="242.1" y="629" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="245.09" y="639.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (60,606,060 samples, 0.19%)</title><rect x="1377.5" y="645" width="2.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1380.49" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.03%)</title><rect x="428.4" y="645" width="0.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="431.44" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="471.2" y="597" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="474.15" y="607.5" ></text>
+</g>
+<g >
+<title>copy_page_to_iter (10,101,010 samples, 0.03%)</title><rect x="621.7" y="581" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="624.70" y="591.5" ></text>
+</g>
+<g >
+<title>git_reference_dwim (20,202,020 samples, 0.06%)</title><rect x="281.3" y="869" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="284.34" y="879.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.03%)</title><rect x="367.6" y="629" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="370.62" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (171,717,170 samples, 0.53%)</title><rect x="79.5" y="853" width="7.3" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="82.45" y="863.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="336.1" y="693" width="0.5" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="339.13" y="703.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="217.1" y="629" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="220.06" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="184.7" y="453" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="187.71" y="463.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="284.8" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="287.79" y="639.5" ></text>
+</g>
+<g >
+<title>mas_update_gap.part.0 (20,202,020 samples, 0.06%)</title><rect x="652.8" y="693" width="0.8" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="655.76" y="703.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.03%)</title><rect x="125.2" y="485" width="0.4" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="128.18" y="495.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.03%)</title><rect x="291.7" y="597" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="294.69" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.09%)</title><rect x="604.0" y="661" width="1.3" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="607.02" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="462.1" y="693" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="465.09" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.03%)</title><rect x="346.9" y="469" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="349.91" y="479.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="487.1" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="490.11" y="719.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="191.2" y="565" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="194.18" y="575.5" ></text>
+</g>
+<g >
+<title>set_cpus_allowed_ptr (10,101,010 samples, 0.03%)</title><rect x="632.9" y="741" width="0.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="635.92" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="592.4" y="789" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="595.37" y="799.5" ></text>
+</g>
+<g >
+<title>should_failslab (10,101,010 samples, 0.03%)</title><rect x="586.8" y="757" width="0.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="589.76" y="767.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="590.6" y="661" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="593.64" y="671.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="380.1" y="597" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="383.13" y="607.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="607.9" y="645" width="1.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="610.90" y="655.5" ></text>
+</g>
+<g >
+<title>destroy_inode (10,101,010 samples, 0.03%)</title><rect x="544.1" y="581" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="547.05" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="368.9" y="757" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="371.91" y="767.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.03%)</title><rect x="135.1" y="629" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="138.10" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="246.8" y="757" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="249.83" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_create (10,101,010 samples, 0.03%)</title><rect x="393.9" y="565" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="396.93" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (50,505,050 samples, 0.16%)</title><rect x="102.3" y="725" width="2.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="105.32" y="735.5" ></text>
+</g>
+<g >
+<title>git_signature_now (30,303,030 samples, 0.09%)</title><rect x="370.6" y="805" width="1.3" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="373.64" y="815.5" ></text>
+</g>
+<g >
+<title>free_unref_page_list (10,101,010 samples, 0.03%)</title><rect x="204.6" y="661" width="0.4" height="15.0" fill="rgb(0,206,71)" rx="2" ry="2" />
+<text x="207.55" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="503.9" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="506.94" y="703.5" ></text>
+</g>
+<g >
+<title>file_close (50,505,050 samples, 0.16%)</title><rect x="27.7" y="917" width="2.1" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="30.69" y="927.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="502.6" y="645" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="505.64" y="655.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="249.0" y="693" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="251.99" y="703.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (60,606,060 samples, 0.19%)</title><rect x="1020.7" y="581" width="2.6" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1023.73" y="591.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="605.3" y="645" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="608.31" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="591.1" y="677" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="594.08" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="432.8" y="565" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="435.76" y="575.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (60,606,060 samples, 0.19%)</title><rect x="437.1" y="853" width="2.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="440.07" y="863.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="616.1" y="645" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="619.10" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="727.8" y="837" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="730.82" y="847.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.03%)</title><rect x="244.2" y="613" width="0.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="247.24" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="244.2" y="661" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="247.24" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="731.7" y="789" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="734.71" y="799.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="314.1" y="581" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="317.13" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.06%)</title><rect x="136.8" y="629" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="139.83" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (20,202,020 samples, 0.06%)</title><rect x="259.8" y="677" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="262.77" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="603.2" y="613" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="606.15" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.03%)</title><rect x="483.7" y="533" width="0.4" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="486.66" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="141.1" y="613" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="144.14" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="620.4" y="709" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="623.41" y="719.5" ></text>
+</g>
+<g >
+<title>git_reference_symbolic_create_matching (212,121,210 samples, 0.66%)</title><rect x="406.0" y="853" width="9.1" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="409.01" y="863.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="529.0" y="501" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="531.96" y="511.5" ></text>
+</g>
+<g >
+<title>__folio_alloc (121,212,120 samples, 0.38%)</title><rect x="1357.6" y="741" width="5.2" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1360.65" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="370.6" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="373.64" y="655.5" ></text>
+</g>
+<g >
+<title>open64 (30,303,030 samples, 0.09%)</title><rect x="598.8" y="709" width="1.3" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="601.84" y="719.5" ></text>
+</g>
+<g >
+<title>git_odb_read (40,404,040 samples, 0.13%)</title><rect x="277.5" y="869" width="1.7" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="280.46" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="164.4" y="613" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="167.44" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (20,202,020 samples, 0.06%)</title><rect x="546.6" y="485" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="549.64" y="495.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.13%)</title><rect x="160.1" y="805" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="163.12" y="815.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="86.4" y="773" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="89.36" y="783.5" ></text>
+</g>
+<g >
+<title>fprintf (90,909,090 samples, 0.28%)</title><rect x="43.2" y="933" width="3.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="46.22" y="943.5" ></text>
+</g>
+<g >
+<title>down_read (10,101,010 samples, 0.03%)</title><rect x="591.1" y="629" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="594.08" y="639.5" ></text>
+</g>
+<g >
+<title>kfree_skbmem (10,101,010 samples, 0.03%)</title><rect x="1388.3" y="549" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1391.27" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (30,303,030 samples, 0.09%)</title><rect x="364.2" y="677" width="1.3" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="367.17" y="687.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (20,202,020 samples, 0.06%)</title><rect x="200.7" y="725" width="0.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="203.67" y="735.5" ></text>
+</g>
+<g >
+<title>mas_alloc_nodes (10,101,010 samples, 0.03%)</title><rect x="651.0" y="709" width="0.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="654.04" y="719.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="490.6" y="581" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="493.56" y="591.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (20,202,020 samples, 0.06%)</title><rect x="1374.5" y="373" width="0.8" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1377.47" y="383.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="502.2" y="741" width="0.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="505.21" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="134.7" y="645" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="137.67" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.22%)</title><rect x="378.4" y="805" width="3.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="381.40" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="515.6" y="597" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="518.58" y="607.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.06%)</title><rect x="391.8" y="709" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="394.78" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="542.3" y="741" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="545.33" y="751.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="128.2" y="709" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="131.20" y="719.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="572.1" y="581" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="575.09" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.09%)</title><rect x="174.8" y="677" width="1.3" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="177.79" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="541.9" y="709" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="544.90" y="719.5" ></text>
+</g>
+<g >
+<title>__strdup (10,101,010 samples, 0.03%)</title><rect x="452.2" y="741" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="455.17" y="751.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="570.4" y="693" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="573.37" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="631.2" y="645" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="634.19" y="655.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.09%)</title><rect x="557.9" y="693" width="1.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="560.86" y="703.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="127.8" y="677" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="130.77" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.03%)</title><rect x="432.3" y="597" width="0.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="435.33" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="285.7" y="725" width="1.2" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="288.65" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (40,404,040 samples, 0.13%)</title><rect x="224.0" y="693" width="1.7" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="226.97" y="703.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.03%)</title><rect x="399.5" y="693" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="402.54" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="539.3" y="789" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="542.31" y="799.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="316.3" y="693" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="319.28" y="703.5" ></text>
+</g>
+<g >
+<title>inet_hash_connect (10,101,010 samples, 0.03%)</title><rect x="1032.8" y="805" width="0.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1035.81" y="815.5" ></text>
+</g>
+<g >
+<title>inet6_sendmsg (121,212,120 samples, 0.38%)</title><rect x="10.0" y="837" width="5.2" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="13.00" y="847.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="316.3" y="677" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="319.28" y="687.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.03%)</title><rect x="425.9" y="533" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="428.85" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="375.4" y="677" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="378.38" y="687.5" ></text>
+</g>
+<g >
+<title>readdir64 (80,808,080 samples, 0.25%)</title><rect x="318.0" y="805" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="321.01" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="600.1" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="603.13" y="719.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="279.2" y="837" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="282.18" y="847.5" ></text>
+</g>
+<g >
+<title>inet_create (20,202,020 samples, 0.06%)</title><rect x="1380.5" y="853" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1383.51" y="863.5" ></text>
+</g>
+<g >
+<title>git_reference_normalize_name (10,101,010 samples, 0.03%)</title><rect x="412.9" y="821" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="415.91" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (40,404,040 samples, 0.13%)</title><rect x="128.2" y="693" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="131.20" y="703.5" ></text>
+</g>
+<g >
+<title>__kmalloc (20,202,020 samples, 0.06%)</title><rect x="197.7" y="677" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="200.65" y="687.5" ></text>
+</g>
+<g >
+<title>notify_change (20,202,020 samples, 0.06%)</title><rect x="500.5" y="709" width="0.8" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="503.48" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="401.3" y="549" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="404.27" y="559.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (111,111,110 samples, 0.34%)</title><rect x="343.9" y="613" width="4.7" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="346.89" y="623.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (30,303,030 samples, 0.09%)</title><rect x="17.3" y="965" width="1.3" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="20.33" y="975.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.03%)</title><rect x="487.1" y="549" width="0.4" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="490.11" y="559.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="529.0" y="485" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="531.96" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.06%)</title><rect x="580.7" y="677" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="583.72" y="687.5" ></text>
+</g>
+<g >
+<title>ip_local_out (20,202,020 samples, 0.06%)</title><rect x="1024.2" y="677" width="0.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1027.19" y="687.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_bio_merge (10,101,010 samples, 0.03%)</title><rect x="466.4" y="453" width="0.4" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="469.41" y="463.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="415.9" y="757" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="418.93" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (141,414,140 samples, 0.44%)</title><rect x="580.7" y="725" width="6.1" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="583.72" y="735.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="248.6" y="677" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="251.56" y="687.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="277.9" y="565" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="280.89" y="575.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.03%)</title><rect x="1376.6" y="869" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1379.63" y="879.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="52.7" y="693" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="55.71" y="703.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (40,404,040 samples, 0.13%)</title><rect x="504.8" y="597" width="1.7" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="507.80" y="607.5" ></text>
+</g>
+<g >
+<title>copy_thread (10,101,010 samples, 0.03%)</title><rect x="20.8" y="949" width="0.4" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="23.78" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_setent (10,101,010 samples, 0.03%)</title><rect x="568.2" y="645" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="571.21" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.09%)</title><rect x="160.6" y="709" width="1.2" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="163.55" y="719.5" ></text>
+</g>
+<g >
+<title>__blk_mq_end_request (10,101,010 samples, 0.03%)</title><rect x="1316.2" y="725" width="0.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1319.23" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="403.4" y="725" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="406.42" y="735.5" ></text>
+</g>
+<g >
+<title>__jbd2_journal_temp_unlink_buffer (10,101,010 samples, 0.03%)</title><rect x="582.0" y="629" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="585.02" y="639.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.06%)</title><rect x="453.0" y="693" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="456.03" y="703.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="507.4" y="629" width="0.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="510.39" y="639.5" ></text>
+</g>
+<g >
+<title>folio_add_lru_vma (50,505,050 samples, 0.16%)</title><rect x="993.1" y="693" width="2.2" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="996.13" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (20,202,020 samples, 0.06%)</title><rect x="1373.2" y="741" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1376.18" y="751.5" ></text>
+</g>
+<g >
+<title>net_rx_action (10,101,010 samples, 0.03%)</title><rect x="35.5" y="405" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="38.45" y="415.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.06%)</title><rect x="540.6" y="645" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="543.60" y="655.5" ></text>
+</g>
+<g >
+<title>__sock_create (20,202,020 samples, 0.06%)</title><rect x="1380.5" y="869" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1383.51" y="879.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="113.5" y="613" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="116.53" y="623.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (40,404,040 samples, 0.13%)</title><rect x="231.3" y="645" width="1.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="234.30" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="616.1" y="709" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="619.10" y="719.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="161.4" y="693" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="164.42" y="703.5" ></text>
+</g>
+<g >
+<title>git_transport_new (20,202,020 samples, 0.06%)</title><rect x="458.2" y="853" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="461.21" y="863.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="71.7" y="677" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="74.69" y="687.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="429.3" y="789" width="0.4" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="432.31" y="799.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.03%)</title><rect x="308.5" y="597" width="0.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="311.52" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="397.0" y="725" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="399.95" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="415.5" y="789" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="418.50" y="799.5" ></text>
+</g>
+<g >
+<title>__folio_put (50,505,050 samples, 0.16%)</title><rect x="674.3" y="757" width="2.2" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="677.33" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (50,505,050 samples, 0.16%)</title><rect x="152.8" y="517" width="2.1" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="155.79" y="527.5" ></text>
+</g>
+<g >
+<title>find_vma (10,101,010 samples, 0.03%)</title><rect x="688.1" y="677" width="0.5" height="15.0" fill="rgb(0,198,33)" rx="2" ry="2" />
+<text x="691.14" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.03%)</title><rect x="112.7" y="645" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="115.67" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (10,101,010 samples, 0.03%)</title><rect x="516.0" y="613" width="0.4" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="519.01" y="623.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.03%)</title><rect x="631.2" y="581" width="0.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="634.19" y="591.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (30,303,030 samples, 0.09%)</title><rect x="315.0" y="789" width="1.3" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="317.99" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (10,101,010 samples, 0.03%)</title><rect x="393.9" y="549" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="396.93" y="559.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (40,404,040 samples, 0.13%)</title><rect x="998.3" y="629" width="1.7" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1001.30" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (60,606,060 samples, 0.19%)</title><rect x="510.0" y="533" width="2.6" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="512.97" y="543.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.03%)</title><rect x="447.4" y="613" width="0.5" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="450.42" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="629.0" y="693" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="632.04" y="703.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="242.1" y="565" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="245.09" y="575.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="593.2" y="677" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="596.23" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="78.2" y="773" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="81.16" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="614.8" y="757" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="617.80" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_rename (10,101,010 samples, 0.03%)</title><rect x="427.6" y="709" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="430.58" y="719.5" ></text>
+</g>
+<g >
+<title>lockref_get_not_zero (10,101,010 samples, 0.03%)</title><rect x="61.3" y="805" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="64.33" y="815.5" ></text>
+</g>
+<g >
+<title>d_splice_alias (10,101,010 samples, 0.03%)</title><rect x="396.5" y="549" width="0.5" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="399.52" y="559.5" ></text>
+</g>
+<g >
+<title>file_modified (10,101,010 samples, 0.03%)</title><rect x="224.0" y="661" width="0.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="226.97" y="671.5" ></text>
+</g>
+<g >
+<title>lock_vma_under_rcu (10,101,010 samples, 0.03%)</title><rect x="98.4" y="741" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="101.43" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (90,909,090 samples, 0.28%)</title><rect x="208.9" y="773" width="3.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="211.87" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="471.2" y="645" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="474.15" y="655.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.03%)</title><rect x="584.2" y="357" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="587.17" y="367.5" ></text>
+</g>
+<g >
+<title>cfree (40,404,040 samples, 0.13%)</title><rect x="95.8" y="853" width="1.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="98.85" y="863.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="431.0" y="725" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="434.03" y="735.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="360.3" y="581" width="0.4" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="363.28" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="607.9" y="613" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="610.90" y="623.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="579.0" y="661" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="582.00" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (70,707,070 samples, 0.22%)</title><rect x="23.8" y="901" width="3.0" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="26.80" y="911.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.03%)</title><rect x="1381.4" y="805" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1384.37" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="287.8" y="661" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="290.81" y="671.5" ></text>
+</g>
+<g >
+<title>folio_add_lru_vma (10,101,010 samples, 0.03%)</title><rect x="1043.6" y="805" width="0.4" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1046.60" y="815.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="300.8" y="421" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="303.75" y="431.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="378.0" y="741" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="380.97" y="751.5" ></text>
+</g>
+<g >
+<title>from_kuid (10,101,010 samples, 0.03%)</title><rect x="515.6" y="533" width="0.4" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="518.58" y="543.5" ></text>
+</g>
+<g >
+<title>git_oid_tostr (10,101,010 samples, 0.03%)</title><rect x="368.0" y="725" width="0.5" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="371.05" y="735.5" ></text>
+</g>
+<g >
+<title>__sys_connect_file (181,818,180 samples, 0.56%)</title><rect x="1028.1" y="869" width="7.7" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="1031.07" y="879.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (303,030,300 samples, 0.94%)</title><rect x="1350.7" y="805" width="13.0" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1353.74" y="815.5" ></text>
+</g>
+<g >
+<title>path_openat (30,303,030 samples, 0.09%)</title><rect x="497.9" y="693" width="1.3" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="500.90" y="703.5" ></text>
+</g>
+<g >
+<title>git_reference_symbolic_create_matching (303,030,300 samples, 0.94%)</title><rect x="392.6" y="821" width="13.0" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="395.64" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_create (20,202,020 samples, 0.06%)</title><rect x="497.9" y="645" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="500.90" y="655.5" ></text>
+</g>
+<g >
+<title>git_buf_dispose (10,101,010 samples, 0.03%)</title><rect x="474.6" y="709" width="0.4" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="477.60" y="719.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="662.3" y="709" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="665.25" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (50,505,050 samples, 0.16%)</title><rect x="356.8" y="645" width="2.2" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="359.83" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="625.2" y="773" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="628.15" y="783.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_uncharge_list (20,202,020 samples, 0.06%)</title><rect x="736.0" y="645" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="739.02" y="655.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (60,606,060 samples, 0.19%)</title><rect x="510.0" y="597" width="2.6" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="512.97" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="615.7" y="789" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="618.66" y="799.5" ></text>
+</g>
+<g >
+<title>git_config_open_default (50,505,050 samples, 0.16%)</title><rect x="588.9" y="853" width="2.2" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="591.92" y="863.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="1009.1" y="197" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1012.09" y="207.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="628.6" y="741" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="631.61" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_rename (80,808,080 samples, 0.25%)</title><rect x="433.2" y="709" width="3.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="436.19" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="488.0" y="725" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="490.97" y="735.5" ></text>
+</g>
+<g >
+<title>xfd_validate_state (10,101,010 samples, 0.03%)</title><rect x="291.7" y="565" width="0.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="294.69" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="223.5" y="709" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="226.54" y="719.5" ></text>
+</g>
+<g >
+<title>call_filldir (10,101,010 samples, 0.03%)</title><rect x="447.0" y="581" width="0.4" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="449.99" y="591.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="156.7" y="709" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="159.67" y="719.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="592.8" y="661" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="595.80" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="471.2" y="629" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="474.15" y="639.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="307.7" y="597" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="310.66" y="607.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="396.1" y="565" width="0.4" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="399.09" y="575.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="392.2" y="597" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="395.21" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="472.0" y="597" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="475.01" y="607.5" ></text>
+</g>
+<g >
+<title>inflate (40,404,040 samples, 0.13%)</title><rect x="365.9" y="709" width="1.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="368.89" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.03%)</title><rect x="601.4" y="709" width="0.5" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="604.43" y="719.5" ></text>
+</g>
+<g >
+<title>__d_rehash (10,101,010 samples, 0.03%)</title><rect x="523.8" y="613" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="526.78" y="623.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.06%)</title><rect x="619.1" y="741" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="622.12" y="751.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.06%)</title><rect x="540.6" y="661" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="543.60" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="334.0" y="709" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="336.97" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="339.6" y="517" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="342.58" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (40,404,040 samples, 0.13%)</title><rect x="401.7" y="661" width="1.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="404.70" y="671.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="332.2" y="549" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="335.24" y="559.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.06%)</title><rect x="217.9" y="741" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="220.93" y="751.5" ></text>
+</g>
+<g >
+<title>kprobe_dispatcher (40,404,040 samples, 0.13%)</title><rect x="1384.0" y="773" width="1.7" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1386.96" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="620.8" y="741" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="623.84" y="751.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="501.3" y="645" width="0.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="504.35" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (20,202,020 samples, 0.06%)</title><rect x="358.1" y="517" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="361.13" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.38%)</title><rect x="406.0" y="773" width="5.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="409.01" y="783.5" ></text>
+</g>
+<g >
+<title>fsnotify (10,101,010 samples, 0.03%)</title><rect x="481.5" y="613" width="0.4" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="484.50" y="623.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="393.9" y="469" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="396.93" y="479.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (60,606,060 samples, 0.19%)</title><rect x="1377.5" y="629" width="2.6" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1380.49" y="639.5" ></text>
+</g>
+<g >
+<title>__sk_mem_reclaim (10,101,010 samples, 0.03%)</title><rect x="1009.9" y="661" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1012.95" y="671.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="71.7" y="565" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="74.69" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (10,101,010 samples, 0.03%)</title><rect x="401.3" y="581" width="0.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="404.27" y="591.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct_nocheck (10,101,010 samples, 0.03%)</title><rect x="231.3" y="533" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="234.30" y="543.5" ></text>
+</g>
+<g >
+<title>current_save_fsgs (10,101,010 samples, 0.03%)</title><rect x="20.8" y="933" width="0.4" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="23.78" y="943.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="281.3" y="757" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="284.34" y="767.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="507.4" y="757" width="0.4" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="510.39" y="767.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.03%)</title><rect x="624.3" y="613" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="627.29" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="532.0" y="581" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="534.98" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="168.7" y="789" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="171.75" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="1036.3" y="821" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1039.26" y="831.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (20,202,020 samples, 0.06%)</title><rect x="1026.8" y="853" width="0.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1029.77" y="863.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.03%)</title><rect x="603.6" y="533" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="606.59" y="543.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.03%)</title><rect x="177.8" y="613" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="180.81" y="623.5" ></text>
+</g>
+<g >
+<title>slab_pre_alloc_hook.constprop.0 (20,202,020 samples, 0.06%)</title><rect x="535.9" y="597" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="538.86" y="607.5" ></text>
+</g>
+<g >
+<title>is_dx_dir (10,101,010 samples, 0.03%)</title><rect x="320.6" y="693" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="323.60" y="703.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (151,515,150 samples, 0.47%)</title><rect x="161.8" y="709" width="6.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="164.85" y="719.5" ></text>
+</g>
+<g >
+<title>__pte_offset_map (10,101,010 samples, 0.03%)</title><rect x="1353.3" y="741" width="0.5" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="1356.33" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="279.6" y="821" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="282.62" y="831.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (20,202,020 samples, 0.06%)</title><rect x="532.8" y="773" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="535.84" y="783.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="1004.3" y="725" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1007.34" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_ext_correct_indexes (10,101,010 samples, 0.03%)</title><rect x="583.7" y="629" width="0.5" height="15.0" fill="rgb(0,239,205)" rx="2" ry="2" />
+<text x="586.74" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (141,414,140 samples, 0.44%)</title><rect x="562.6" y="741" width="6.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="565.60" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="283.1" y="869" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="286.07" y="879.5" ></text>
+</g>
+<g >
+<title>free_rb_tree_fname (20,202,020 samples, 0.06%)</title><rect x="169.2" y="661" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="172.18" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="489.7" y="741" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="492.70" y="751.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (50,505,050 samples, 0.16%)</title><rect x="27.7" y="853" width="2.1" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="30.69" y="863.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="461.2" y="645" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="464.23" y="655.5" ></text>
+</g>
+<g >
+<title>inet_csk_accept (10,101,010 samples, 0.03%)</title><rect x="38.5" y="789" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="41.47" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (10,101,010 samples, 0.03%)</title><rect x="1027.2" y="677" width="0.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1030.21" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="107.5" y="549" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="110.49" y="559.5" ></text>
+</g>
+<g >
+<title>list_lru_add (10,101,010 samples, 0.03%)</title><rect x="532.8" y="661" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="535.84" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="29.8" y="837" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="32.84" y="847.5" ></text>
+</g>
+<g >
+<title>ip_build_and_send_pkt (10,101,010 samples, 0.03%)</title><rect x="1035.0" y="325" width="0.4" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="1037.97" y="335.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (20,202,020 samples, 0.06%)</title><rect x="728.7" y="885" width="0.8" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="731.69" y="895.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (30,303,030 samples, 0.09%)</title><rect x="263.7" y="709" width="1.2" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="266.65" y="719.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="332.2" y="581" width="0.5" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="335.24" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="384.4" y="661" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="387.44" y="671.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="530.3" y="661" width="0.4" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="533.25" y="671.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.03%)</title><rect x="665.7" y="677" width="0.4" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="668.70" y="687.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="97.6" y="853" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="100.57" y="863.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="273.6" y="693" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="276.58" y="703.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="603.6" y="597" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="606.59" y="607.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="281.3" y="613" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="284.34" y="623.5" ></text>
+</g>
+<g >
+<title>do_softirq (70,707,070 samples, 0.22%)</title><rect x="1006.9" y="485" width="3.0" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1009.93" y="495.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited (10,101,010 samples, 0.03%)</title><rect x="553.1" y="613" width="0.4" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="556.11" y="623.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="430.6" y="629" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="433.60" y="639.5" ></text>
+</g>
+<g >
+<title>do_writepages (60,606,060 samples, 0.19%)</title><rect x="433.2" y="597" width="2.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="436.19" y="607.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (10,101,010 samples, 0.03%)</title><rect x="1035.0" y="261" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1037.97" y="271.5" ></text>
+</g>
+<g >
+<title>unmap_page_range (60,606,060 samples, 0.19%)</title><rect x="738.6" y="677" width="2.6" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="741.61" y="687.5" ></text>
+</g>
+<g >
+<title>try_to_free_buffers (10,101,010 samples, 0.03%)</title><rect x="343.5" y="453" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="346.46" y="463.5" ></text>
+</g>
+<g >
+<title>ip_rcv (30,303,030 samples, 0.09%)</title><rect x="1034.5" y="501" width="1.3" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1037.54" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="233.9" y="597" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="236.89" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mb_complex_scan_group (10,101,010 samples, 0.03%)</title><rect x="479.8" y="469" width="0.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="482.78" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.03%)</title><rect x="629.0" y="725" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="632.04" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="285.7" y="757" width="1.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="288.65" y="767.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="540.2" y="629" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="543.17" y="639.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="252.9" y="837" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="255.87" y="847.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (10,101,010 samples, 0.03%)</title><rect x="300.8" y="325" width="0.4" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="303.75" y="335.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (20,202,020 samples, 0.06%)</title><rect x="665.3" y="741" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="668.27" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.09%)</title><rect x="152.8" y="469" width="1.3" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="155.79" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (40,404,040 samples, 0.13%)</title><rect x="357.3" y="565" width="1.7" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="360.26" y="575.5" ></text>
+</g>
+<g >
+<title>remove (30,303,030 samples, 0.09%)</title><rect x="105.3" y="709" width="1.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="108.34" y="719.5" ></text>
+</g>
+<g >
+<title>link (20,202,020 samples, 0.06%)</title><rect x="399.5" y="757" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="402.54" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_time_wait (10,101,010 samples, 0.03%)</title><rect x="1379.2" y="229" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1382.22" y="239.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="284.8" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="287.79" y="703.5" ></text>
+</g>
+<g >
+<title>filename_create (20,202,020 samples, 0.06%)</title><rect x="626.4" y="805" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="629.45" y="815.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="459.5" y="581" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="462.50" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="117.4" y="485" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="120.41" y="495.5" ></text>
+</g>
+<g >
+<title>__brelse (10,101,010 samples, 0.03%)</title><rect x="230.9" y="709" width="0.4" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="233.87" y="719.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="60.5" y="869" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="63.47" y="879.5" ></text>
+</g>
+<g >
+<title>tcp_done (20,202,020 samples, 0.06%)</title><rect x="32.9" y="149" width="0.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="35.86" y="159.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="616.1" y="661" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="619.10" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.03%)</title><rect x="421.5" y="613" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="424.54" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (50,505,050 samples, 0.16%)</title><rect x="1368.0" y="885" width="2.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1371.00" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="471.2" y="581" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="474.15" y="591.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="383.6" y="629" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="386.58" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (141,414,140 samples, 0.44%)</title><rect x="321.5" y="741" width="6.0" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="324.46" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.03%)</title><rect x="550.1" y="469" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="553.09" y="479.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="332.2" y="517" width="0.5" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="335.24" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="383.1" y="725" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="386.15" y="735.5" ></text>
+</g>
+<g >
+<title>bpf_prog_fd16de16241b0bed_kprobe_tcp_connect (40,404,040 samples, 0.13%)</title><rect x="1384.0" y="725" width="1.7" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="1386.96" y="735.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="235.6" y="629" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="238.61" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="362.9" y="709" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="365.87" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="312.0" y="613" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="314.97" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (10,101,010 samples, 0.03%)</title><rect x="230.4" y="613" width="0.5" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="233.44" y="623.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="437" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1031.50" y="447.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (20,202,020 samples, 0.06%)</title><rect x="1387.4" y="533" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1390.41" y="543.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="453" width="1.3" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1377.47" y="463.5" ></text>
+</g>
+<g >
+<title>libjson_set_string (969,696,960 samples, 3.00%)</title><rect x="1329.2" y="933" width="41.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1332.17" y="943.5" >lib..</text>
+</g>
+<g >
+<title>vfs_rmdir (70,707,070 samples, 0.22%)</title><rect x="198.5" y="741" width="3.0" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="201.52" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="385.7" y="661" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="388.74" y="671.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="582.0" y="645" width="0.4" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="585.02" y="655.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (40,404,040 samples, 0.13%)</title><rect x="964.2" y="741" width="1.7" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="967.22" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="247.7" y="725" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="250.69" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="382.3" y="741" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="385.29" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.28%)</title><rect x="453.9" y="725" width="3.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="456.89" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.03%)</title><rect x="466.8" y="501" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="469.84" y="511.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="576.0" y="677" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="578.98" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (70,707,070 samples, 0.22%)</title><rect x="134.7" y="661" width="3.0" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="137.67" y="671.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="486.2" y="469" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="489.25" y="479.5" ></text>
+</g>
+<g >
+<title>dentry_kill (20,202,020 samples, 0.06%)</title><rect x="432.3" y="693" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="435.33" y="703.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="294.3" y="581" width="0.4" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="297.28" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (171,717,170 samples, 0.53%)</title><rect x="543.6" y="725" width="7.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="546.62" y="735.5" ></text>
+</g>
+<g >
+<title>__put_user_8 (10,101,010 samples, 0.03%)</title><rect x="27.3" y="789" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="30.26" y="799.5" ></text>
+</g>
+<g >
+<title>git_signature_default (30,303,030 samples, 0.09%)</title><rect x="413.3" y="821" width="1.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="416.34" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="590.6" y="613" width="0.5" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="593.64" y="623.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="606.2" y="725" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="609.17" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_server_accept_handler (111,111,110 samples, 0.34%)</title><rect x="37.2" y="949" width="4.7" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="40.18" y="959.5" ></text>
+</g>
+<g >
+<title>getdents64 (60,606,060 samples, 0.19%)</title><rect x="170.9" y="805" width="2.6" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="173.91" y="815.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="334.0" y="741" width="0.4" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="336.97" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (101,010,100 samples, 0.31%)</title><rect x="106.6" y="661" width="4.3" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="109.63" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_table (10,101,010 samples, 0.03%)</title><rect x="544.5" y="517" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="547.49" y="527.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="471.2" y="549" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="474.15" y="559.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (40,404,040 samples, 0.13%)</title><rect x="183.8" y="533" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="186.85" y="543.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.03%)</title><rect x="1035.0" y="293" width="0.4" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1037.97" y="303.5" ></text>
+</g>
+<g >
+<title>do_fchmodat (30,303,030 samples, 0.09%)</title><rect x="500.1" y="741" width="1.2" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="503.05" y="751.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="592.4" y="757" width="1.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="595.37" y="767.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (10,101,010 samples, 0.03%)</title><rect x="1027.2" y="693" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1030.21" y="703.5" ></text>
+</g>
+<g >
+<title>alloc_pages (151,515,150 samples, 0.47%)</title><rect x="1012.5" y="725" width="6.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1015.54" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="250.7" y="725" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="253.71" y="735.5" ></text>
+</g>
+<g >
+<title>do_brk_flags (10,101,010 samples, 0.03%)</title><rect x="1366.7" y="725" width="0.4" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="1369.71" y="735.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (30,303,030 samples, 0.09%)</title><rect x="1387.4" y="709" width="1.3" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1390.41" y="719.5" ></text>
+</g>
+<g >
+<title>[libz.so.1.2.11] (30,303,030 samples, 0.09%)</title><rect x="366.3" y="693" width="1.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="369.32" y="703.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (10,101,010 samples, 0.03%)</title><rect x="1021.6" y="181" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1024.60" y="191.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.03%)</title><rect x="244.2" y="453" width="0.5" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="247.24" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_rename (80,808,080 samples, 0.25%)</title><rect x="433.2" y="677" width="3.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="436.19" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="184.3" y="485" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="187.28" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="277.5" y="821" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="280.46" y="831.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="236.5" y="661" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="239.48" y="671.5" ></text>
+</g>
+<g >
+<title>insert_inode_locked (10,101,010 samples, 0.03%)</title><rect x="292.1" y="645" width="0.5" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="295.13" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_append (20,202,020 samples, 0.06%)</title><rect x="515.6" y="693" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="518.58" y="703.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="565" width="1.3" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1377.47" y="575.5" ></text>
+</g>
+<g >
+<title>end_bio_bh_io_sync (10,101,010 samples, 0.03%)</title><rect x="1316.7" y="693" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1319.66" y="703.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="547.5" y="453" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="550.51" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="413.3" y="773" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="416.34" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="448.3" y="597" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="451.29" y="607.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="98.4" y="757" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="101.43" y="767.5" ></text>
+</g>
+<g >
+<title>fprintf (20,202,020 samples, 0.06%)</title><rect x="728.7" y="933" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="731.69" y="943.5" ></text>
+</g>
+<g >
+<title>security_path_unlink (10,101,010 samples, 0.03%)</title><rect x="158.4" y="677" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="161.40" y="687.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="125.2" y="533" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="128.18" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (141,414,140 samples, 0.44%)</title><rect x="321.5" y="789" width="6.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="324.46" y="799.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="602.3" y="661" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="605.29" y="671.5" ></text>
+</g>
+<g >
+<title>blk_cgroup_congested (10,101,010 samples, 0.03%)</title><rect x="1353.8" y="757" width="0.4" height="15.0" fill="rgb(0,235,192)" rx="2" ry="2" />
+<text x="1356.76" y="767.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (171,717,170 samples, 0.53%)</title><rect x="543.6" y="693" width="7.4" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="546.62" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="268.0" y="757" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="270.97" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="572.5" y="709" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="575.53" y="719.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="101.0" y="821" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="104.02" y="831.5" ></text>
+</g>
+<g >
+<title>__fput (20,202,020 samples, 0.06%)</title><rect x="1026.8" y="805" width="0.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1029.77" y="815.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="242.1" y="725" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="245.09" y="735.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="456.9" y="613" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="459.91" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (50,505,050 samples, 0.16%)</title><rect x="257.2" y="677" width="2.1" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="260.18" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (30,303,030 samples, 0.09%)</title><rect x="528.1" y="709" width="1.3" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="531.09" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.03%)</title><rect x="412.1" y="565" width="0.4" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="415.05" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (171,717,170 samples, 0.53%)</title><rect x="517.3" y="789" width="7.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="520.31" y="799.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (30,303,030 samples, 0.09%)</title><rect x="39.8" y="757" width="1.3" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="42.77" y="767.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="466.0" y="325" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="468.97" y="335.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.06%)</title><rect x="429.7" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="432.74" y="655.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.03%)</title><rect x="279.6" y="677" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="282.62" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (20,202,020 samples, 0.06%)</title><rect x="374.1" y="677" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="377.09" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="375.4" y="661" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="378.38" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (20,202,020 samples, 0.06%)</title><rect x="631.6" y="677" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="634.63" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (111,111,110 samples, 0.34%)</title><rect x="241.7" y="805" width="4.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="244.65" y="815.5" ></text>
+</g>
+<g >
+<title>netdev_core_pick_tx (10,101,010 samples, 0.03%)</title><rect x="35.9" y="437" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="38.88" y="447.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.09%)</title><rect x="598.8" y="661" width="1.3" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="601.84" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_close (70,707,070 samples, 0.22%)</title><rect x="1377.1" y="741" width="3.0" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1380.06" y="751.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.03%)</title><rect x="402.1" y="357" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="405.13" y="367.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="545.3" y="533" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="548.35" y="543.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.03%)</title><rect x="251.1" y="725" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="254.14" y="735.5" ></text>
+</g>
+<g >
+<title>security_inode_alloc (10,101,010 samples, 0.03%)</title><rect x="39.3" y="741" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="42.33" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.06%)</title><rect x="539.7" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="542.74" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="501.3" y="693" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="504.35" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="573.4" y="661" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="576.39" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="481.1" y="565" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="484.07" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_v6_conn_request (10,101,010 samples, 0.03%)</title><rect x="1035.0" y="389" width="0.4" height="15.0" fill="rgb(0,236,197)" rx="2" ry="2" />
+<text x="1037.97" y="399.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="266.7" y="773" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="269.67" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (414,141,410 samples, 1.28%)</title><rect x="139.0" y="709" width="17.7" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="141.98" y="719.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="48.4" y="933" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="51.39" y="943.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="119.1" y="645" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="122.14" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="594.1" y="805" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="597.10" y="815.5" ></text>
+</g>
+<g >
+<title>d_instantiate_new (20,202,020 samples, 0.06%)</title><rect x="81.2" y="837" width="0.8" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="84.18" y="847.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="158.4" y="581" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="161.40" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="413.3" y="757" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="416.34" y="767.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (20,202,020 samples, 0.06%)</title><rect x="359.0" y="613" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="361.99" y="623.5" ></text>
+</g>
+<g >
+<title>git_repository_config_snapshot (101,010,100 samples, 0.31%)</title><rect x="597.5" y="837" width="4.4" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="600.55" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.06%)</title><rect x="123.0" y="581" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="126.02" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="625.6" y="837" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="628.59" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.16%)</title><rect x="261.1" y="709" width="2.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="264.07" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.13%)</title><rect x="128.2" y="773" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="131.20" y="783.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.03%)</title><rect x="212.8" y="853" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="215.75" y="863.5" ></text>
+</g>
+<g >
+<title>napi_consume_skb (10,101,010 samples, 0.03%)</title><rect x="1388.3" y="565" width="0.4" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1391.27" y="575.5" ></text>
+</g>
+<g >
+<title>iterate_dir (70,707,070 samples, 0.22%)</title><rect x="318.0" y="725" width="3.0" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="321.01" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="502.6" y="757" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="505.64" y="767.5" ></text>
+</g>
+<g >
+<title>sd_init_command (10,101,010 samples, 0.03%)</title><rect x="511.3" y="325" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="514.27" y="335.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="127.3" y="661" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="130.34" y="671.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="250.3" y="645" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="253.28" y="655.5" ></text>
+</g>
+<g >
+<title>generic_write_end (30,303,030 samples, 0.09%)</title><rect x="258.0" y="629" width="1.3" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="261.05" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.03%)</title><rect x="512.1" y="485" width="0.5" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="515.13" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (404,040,400 samples, 1.25%)</title><rect x="441.8" y="869" width="17.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="444.82" y="879.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="397.8" y="597" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="400.81" y="607.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.03%)</title><rect x="1036.3" y="853" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1039.26" y="863.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="414.6" y="629" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="417.64" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="532.0" y="613" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="534.98" y="623.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="95.0" y="869" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="97.98" y="879.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.03%)</title><rect x="160.6" y="661" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="163.55" y="671.5" ></text>
+</g>
+<g >
+<title>mas_pop_node (10,101,010 samples, 0.03%)</title><rect x="654.1" y="645" width="0.4" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="657.06" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="602.3" y="645" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="605.29" y="655.5" ></text>
+</g>
+<g >
+<title>lock_vma_under_rcu (10,101,010 samples, 0.03%)</title><rect x="1002.6" y="773" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1005.62" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.03%)</title><rect x="542.8" y="709" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="545.76" y="719.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.1.0] (6,090,909,030 samples, 18.85%)</title><rect x="743.4" y="853" width="260.1" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="746.35" y="863.5" >[libjson-c.so.5.1.0]</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="617.4" y="773" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="620.39" y="783.5" ></text>
+</g>
+<g >
+<title>__es_remove_extent (10,101,010 samples, 0.03%)</title><rect x="163.6" y="597" width="0.4" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="166.57" y="607.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.03%)</title><rect x="315.0" y="629" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="317.99" y="639.5" ></text>
+</g>
+<g >
+<title>unmap_single_vma (60,606,060 samples, 0.19%)</title><rect x="738.6" y="693" width="2.6" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="741.61" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="1375.8" y="853" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1378.76" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="620.8" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="623.84" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="490.6" y="661" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="493.56" y="671.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (80,808,080 samples, 0.25%)</title><rect x="1006.5" y="565" width="3.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1009.50" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (202,020,200 samples, 0.63%)</title><rect x="129.9" y="757" width="8.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="132.92" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="197.2" y="821" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="200.22" y="831.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="548.8" y="597" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="551.80" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (20,202,020 samples, 0.06%)</title><rect x="1374.5" y="341" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1377.47" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.06%)</title><rect x="580.7" y="661" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="583.72" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="544.5" y="565" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="547.49" y="575.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.03%)</title><rect x="590.6" y="597" width="0.5" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="593.64" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.03%)</title><rect x="318.9" y="629" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="321.87" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.06%)</title><rect x="539.7" y="725" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="542.74" y="735.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="209.3" y="677" width="0.4" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="212.30" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="499.6" y="597" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="502.62" y="607.5" ></text>
+</g>
+<g >
+<title>may_linkat (20,202,020 samples, 0.06%)</title><rect x="309.8" y="709" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="312.81" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (90,909,090 samples, 0.28%)</title><rect x="464.2" y="757" width="3.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="467.25" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="396.5" y="677" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="399.52" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="501.3" y="805" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="504.35" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="223.5" y="693" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="226.54" y="703.5" ></text>
+</g>
+<g >
+<title>__pte_alloc (30,303,030 samples, 0.09%)</title><rect x="641.1" y="693" width="1.3" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="644.12" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="577.7" y="677" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="580.70" y="687.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="489.7" y="485" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="492.70" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="484.5" y="693" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="487.52" y="703.5" ></text>
+</g>
+<g >
+<title>mm_account_fault (10,101,010 samples, 0.03%)</title><rect x="1363.7" y="805" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1366.69" y="815.5" ></text>
+</g>
+<g >
+<title>close_fd (10,101,010 samples, 0.03%)</title><rect x="422.8" y="725" width="0.5" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="425.84" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (292,929,290 samples, 0.91%)</title><rect x="10.0" y="1061" width="12.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="13.00" y="1071.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="237.3" y="773" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="240.34" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="631.2" y="597" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="634.19" y="607.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.03%)</title><rect x="1037.1" y="917" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1040.13" y="927.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (20,202,020 samples, 0.06%)</title><rect x="494.9" y="725" width="0.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="497.88" y="735.5" ></text>
+</g>
+<g >
+<title>submit_bio (10,101,010 samples, 0.03%)</title><rect x="466.4" y="549" width="0.4" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="469.41" y="559.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_reschedule_ipi (40,404,040 samples, 0.13%)</title><rect x="964.2" y="821" width="1.7" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="967.22" y="831.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="456.9" y="597" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="459.91" y="607.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="507.0" y="741" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="509.96" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="628.6" y="709" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="631.61" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="277.9" y="645" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="280.89" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="48.8" y="885" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="51.82" y="895.5" ></text>
+</g>
+<g >
+<title>ip_local_out (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="677" width="1.3" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1014.24" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_bread (80,808,080 samples, 0.25%)</title><rect x="581.6" y="693" width="3.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="584.58" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="188.2" y="837" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="191.16" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="353.8" y="741" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="356.81" y="751.5" ></text>
+</g>
+<g >
+<title>readdir64 (202,020,200 samples, 0.63%)</title><rect x="129.9" y="789" width="8.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="132.92" y="799.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="460.8" y="789" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="463.80" y="799.5" ></text>
+</g>
+<g >
+<title>security_inode_unlink (10,101,010 samples, 0.03%)</title><rect x="529.8" y="725" width="0.5" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="532.82" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (151,515,150 samples, 0.47%)</title><rect x="321.5" y="805" width="6.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="324.46" y="815.5" ></text>
+</g>
+<g >
+<title>blkcg_maybe_throttle_current (10,101,010 samples, 0.03%)</title><rect x="542.3" y="677" width="0.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="545.33" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="487.1" y="373" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="490.11" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (101,010,100 samples, 0.31%)</title><rect x="189.0" y="693" width="4.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="192.02" y="703.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.03%)</title><rect x="510.4" y="469" width="0.4" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="513.41" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="598.4" y="741" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="601.41" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="281.3" y="885" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="284.34" y="895.5" ></text>
+</g>
+<g >
+<title>__mutex_init (10,101,010 samples, 0.03%)</title><rect x="40.2" y="741" width="0.4" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="43.20" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.09%)</title><rect x="481.9" y="661" width="1.3" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="484.93" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (353,535,350 samples, 1.09%)</title><rect x="286.9" y="741" width="15.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="289.95" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="602.3" y="677" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="605.29" y="687.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.03%)</title><rect x="245.5" y="677" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="248.54" y="687.5" ></text>
+</g>
+<g >
+<title>copy_page_from_iter_atomic (10,101,010 samples, 0.03%)</title><rect x="334.4" y="597" width="0.4" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="337.40" y="607.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.09%)</title><rect x="445.7" y="629" width="1.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="448.70" y="639.5" ></text>
+</g>
+<g >
+<title>__do_softirq (30,303,030 samples, 0.09%)</title><rect x="1034.5" y="597" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1037.54" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (121,212,120 samples, 0.38%)</title><rect x="302.9" y="741" width="5.2" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="305.91" y="751.5" ></text>
+</g>
+<g >
+<title>do_readlinkat (10,101,010 samples, 0.03%)</title><rect x="382.7" y="661" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="385.72" y="671.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="111.8" y="613" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="114.81" y="623.5" ></text>
+</g>
+<g >
+<title>__strftime_l (10,101,010 samples, 0.03%)</title><rect x="730.0" y="901" width="0.4" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="732.98" y="911.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="88.5" y="901" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="91.51" y="911.5" ></text>
+</g>
+<g >
+<title>__do_softirq (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="517" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1377.47" y="527.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (20,202,020 samples, 0.06%)</title><rect x="665.3" y="805" width="0.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="668.27" y="815.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (10,101,010 samples, 0.03%)</title><rect x="356.0" y="565" width="0.4" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="358.97" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="362.9" y="693" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="365.87" y="703.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="1044.5" y="805" width="0.4" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="1047.46" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="258.0" y="581" width="0.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="261.05" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (30,303,030 samples, 0.09%)</title><rect x="725.2" y="853" width="1.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="728.24" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="545.3" y="501" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="548.35" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="437.9" y="693" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="440.93" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="622.1" y="661" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="625.14" y="671.5" ></text>
+</g>
+<g >
+<title>git_signature_default (60,606,060 samples, 0.19%)</title><rect x="237.3" y="853" width="2.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="240.34" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (40,404,040 samples, 0.13%)</title><rect x="360.3" y="693" width="1.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="363.28" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (252,525,250 samples, 0.78%)</title><rect x="392.6" y="773" width="10.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="395.64" y="783.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="555.7" y="629" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="558.70" y="639.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="244.7" y="773" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="247.67" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_es_remove_extent (10,101,010 samples, 0.03%)</title><rect x="163.6" y="613" width="0.4" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="166.57" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (20,202,020 samples, 0.06%)</title><rect x="1387.4" y="421" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1390.41" y="431.5" ></text>
+</g>
+<g >
+<title>hv_apic_read (10,101,010 samples, 0.03%)</title><rect x="1385.3" y="629" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1388.25" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (10,101,010 samples, 0.03%)</title><rect x="432.3" y="581" width="0.5" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="435.33" y="591.5" ></text>
+</g>
+<g >
+<title>ip_local_out (50,505,050 samples, 0.16%)</title><rect x="1033.7" y="741" width="2.1" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1036.68" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="386.6" y="757" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="389.60" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="460.8" y="725" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="463.80" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="250.7" y="773" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="253.71" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="188.2" y="821" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="191.16" y="831.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="620.0" y="693" width="0.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="622.98" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="620.8" y="693" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="623.84" y="703.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="629.5" y="693" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="632.47" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (20,202,020 samples, 0.06%)</title><rect x="497.9" y="629" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="500.90" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mb_prefetch (20,202,020 samples, 0.06%)</title><rect x="298.2" y="533" width="0.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="301.17" y="543.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.03%)</title><rect x="327.9" y="725" width="0.5" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="330.93" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="437.9" y="645" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="440.93" y="655.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="317.6" y="757" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="320.58" y="767.5" ></text>
+</g>
+<g >
+<title>net_rx_action (70,707,070 samples, 0.22%)</title><rect x="11.3" y="533" width="3.0" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="14.29" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="428.9" y="725" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="431.87" y="735.5" ></text>
+</g>
+<g >
+<title>__do_softirq (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="533" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1014.24" y="543.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (50,505,050 samples, 0.16%)</title><rect x="261.1" y="677" width="2.1" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="264.07" y="687.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (525,252,520 samples, 1.63%)</title><rect x="1004.3" y="821" width="22.5" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1007.34" y="831.5" >_..</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="607.5" y="773" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="610.47" y="783.5" ></text>
+</g>
+<g >
+<title>ksys_write (60,606,060 samples, 0.19%)</title><rect x="44.5" y="805" width="2.6" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="47.51" y="815.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="621.7" y="597" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="624.70" y="607.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="533" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1027.19" y="543.5" ></text>
+</g>
+<g >
+<title>bit_wait_io (10,101,010 samples, 0.03%)</title><rect x="484.1" y="389" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="487.09" y="399.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="267.5" y="837" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="270.54" y="847.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irq (10,101,010 samples, 0.03%)</title><rect x="163.1" y="645" width="0.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="166.14" y="655.5" ></text>
+</g>
+<g >
+<title>__send (131,313,130 samples, 0.41%)</title><rect x="10.0" y="917" width="5.6" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="13.00" y="927.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="336.6" y="661" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="339.56" y="671.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="127.8" y="661" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="130.77" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="364.6" y="629" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="367.60" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="239.9" y="741" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="242.93" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (90,909,090 samples, 0.28%)</title><rect x="544.5" y="581" width="3.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="547.49" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="336.1" y="741" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="339.13" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (30,303,030 samples, 0.09%)</title><rect x="629.0" y="773" width="1.3" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="632.04" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.06%)</title><rect x="178.2" y="629" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="181.24" y="639.5" ></text>
+</g>
+<g >
+<title>__snprintf (10,101,010 samples, 0.03%)</title><rect x="42.8" y="933" width="0.4" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="45.79" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="70.8" y="789" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="73.83" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="231.7" y="501" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="234.73" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (80,808,080 samples, 0.25%)</title><rect x="478.1" y="597" width="3.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="481.05" y="607.5" ></text>
+</g>
+<g >
+<title>__fget_light (10,101,010 samples, 0.03%)</title><rect x="15.2" y="805" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="18.18" y="815.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="185.6" y="501" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="188.57" y="511.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.06%)</title><rect x="285.7" y="677" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="288.65" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.41%)</title><rect x="49.3" y="981" width="5.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="52.26" y="991.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (151,515,150 samples, 0.47%)</title><rect x="626.4" y="869" width="6.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="629.45" y="879.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="620.0" y="709" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="622.98" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.03%)</title><rect x="394.4" y="613" width="0.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="397.36" y="623.5" ></text>
+</g>
+<g >
+<title>find_lock_entries (20,202,020 samples, 0.06%)</title><rect x="165.3" y="613" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="168.30" y="623.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="709" width="1.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1377.47" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (40,404,040 samples, 0.13%)</title><rect x="224.0" y="741" width="1.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="226.97" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.06%)</title><rect x="153.2" y="421" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="156.22" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (20,202,020 samples, 0.06%)</title><rect x="73.4" y="837" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="76.41" y="847.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.03%)</title><rect x="466.0" y="453" width="0.4" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="468.97" y="463.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="490.1" y="613" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="493.13" y="623.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (20,202,020 samples, 0.06%)</title><rect x="402.1" y="517" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="405.13" y="527.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="68.7" y="789" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="71.67" y="799.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="460.8" y="661" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="463.80" y="671.5" ></text>
+</g>
+<g >
+<title>ip_route_output_key_hash_rcu (10,101,010 samples, 0.03%)</title><rect x="34.2" y="181" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="37.16" y="191.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="272.7" y="677" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="275.71" y="687.5" ></text>
+</g>
+<g >
+<title>storvsc_do_io (10,101,010 samples, 0.03%)</title><rect x="402.1" y="309" width="0.5" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="405.13" y="319.5" ></text>
+</g>
+<g >
+<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.03%)</title><rect x="230.4" y="517" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="233.44" y="527.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="383.1" y="613" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="386.15" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.03%)</title><rect x="629.0" y="741" width="0.5" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="632.04" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="467.3" y="629" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="470.27" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="388.3" y="677" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="391.32" y="687.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.03%)</title><rect x="588.9" y="693" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="591.92" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.03%)</title><rect x="499.6" y="645" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="502.62" y="655.5" ></text>
+</g>
+<g >
+<title>__blk_mq_free_request (10,101,010 samples, 0.03%)</title><rect x="587.2" y="549" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="590.19" y="559.5" ></text>
+</g>
+<g >
+<title>ip_rcv (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="405" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1031.50" y="415.5" ></text>
+</g>
+<g >
+<title>copy_pte_range (212,121,210 samples, 0.66%)</title><rect x="640.3" y="709" width="9.0" height="15.0" fill="rgb(0,192,11)" rx="2" ry="2" />
+<text x="643.25" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.06%)</title><rect x="574.7" y="661" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="577.68" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="412.1" y="613" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="415.05" y="623.5" ></text>
+</g>
+<g >
+<title>filemap_flush (30,303,030 samples, 0.09%)</title><rect x="565.6" y="629" width="1.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="568.62" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.03%)</title><rect x="564.3" y="485" width="0.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="567.33" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="103.2" y="613" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="106.18" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="621.3" y="677" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="624.27" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_match.part.0 (10,101,010 samples, 0.03%)</title><rect x="537.2" y="613" width="0.4" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="540.15" y="623.5" ></text>
+</g>
+<g >
+<title>_raw_read_lock (10,101,010 samples, 0.03%)</title><rect x="629.9" y="661" width="0.4" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="632.90" y="671.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="393.5" y="645" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="396.50" y="655.5" ></text>
+</g>
+<g >
+<title>file_free_rcu (10,101,010 samples, 0.03%)</title><rect x="1366.3" y="741" width="0.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1369.27" y="751.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="540.6" y="565" width="0.4" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="543.60" y="575.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="588.5" y="757" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="591.49" y="767.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="323.2" y="645" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="326.19" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="397.4" y="597" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="400.38" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (20,202,020 samples, 0.06%)</title><rect x="364.6" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="367.60" y="655.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (10,101,010 samples, 0.03%)</title><rect x="201.1" y="693" width="0.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="204.10" y="703.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="419.8" y="757" width="0.4" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="422.82" y="767.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="1372.3" y="789" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1375.31" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (121,212,120 samples, 0.38%)</title><rect x="49.7" y="917" width="5.2" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="52.69" y="927.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="238.6" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="241.63" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="619.1" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="622.12" y="815.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="547.9" y="357" width="0.5" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="550.94" y="367.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="407.3" y="725" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="410.31" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="452.6" y="789" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="455.60" y="799.5" ></text>
+</g>
+<g >
+<title>fprintf (20,202,020 samples, 0.06%)</title><rect x="730.4" y="901" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="733.41" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.06%)</title><rect x="483.7" y="597" width="0.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="486.66" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.03%)</title><rect x="312.0" y="629" width="0.4" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="314.97" y="639.5" ></text>
+</g>
+<g >
+<title>cgroup_post_fork (10,101,010 samples, 0.03%)</title><rect x="632.9" y="773" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="635.92" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="235.6" y="565" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="238.61" y="575.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (30,303,030 samples, 0.09%)</title><rect x="539.3" y="805" width="1.3" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="542.31" y="815.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="263.7" y="629" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="266.65" y="639.5" ></text>
+</g>
+<g >
+<title>__release_sock (121,212,120 samples, 0.38%)</title><rect x="1006.1" y="741" width="5.1" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1009.07" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="225.7" y="773" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="228.69" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.31%)</title><rect x="597.5" y="821" width="4.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="600.55" y="831.5" ></text>
+</g>
+<g >
+<title>__release_sock (20,202,020 samples, 0.06%)</title><rect x="1004.3" y="757" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1007.34" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="381.4" y="741" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="384.42" y="751.5" ></text>
+</g>
+<g >
+<title>_compound_head (101,010,100 samples, 0.31%)</title><rect x="643.3" y="693" width="4.3" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="646.27" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (30,303,030 samples, 0.09%)</title><rect x="530.7" y="661" width="1.3" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="533.68" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (979,797,970 samples, 3.03%)</title><rect x="47.5" y="1029" width="41.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="50.53" y="1039.5" >[li..</text>
+</g>
+<g >
+<title>[[kernel.kallsyms]] (30,303,030 samples, 0.09%)</title><rect x="1029.4" y="613" width="1.3" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1032.36" y="623.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="19.5" y="949" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="22.49" y="959.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="285.7" y="709" width="1.2" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="288.65" y="719.5" ></text>
+</g>
+<g >
+<title>block_write_end (10,101,010 samples, 0.03%)</title><rect x="258.9" y="613" width="0.4" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="261.91" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="353.8" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="356.81" y="735.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="584.2" y="485" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="587.17" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="612.6" y="661" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="615.64" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (414,141,410 samples, 1.28%)</title><rect x="284.4" y="789" width="17.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="287.36" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (1,303,030,290 samples, 4.03%)</title><rect x="669.2" y="853" width="55.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="672.16" y="863.5" >do_sy..</text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="140.7" y="613" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="143.71" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="365.5" y="725" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="368.46" y="735.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="269.3" y="629" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="272.26" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="390.1" y="677" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="393.05" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="1366.7" y="773" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1369.71" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="512.1" y="437" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="515.13" y="447.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (20,202,020 samples, 0.06%)</title><rect x="513.9" y="709" width="0.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="516.86" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="258.5" y="581" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="261.48" y="591.5" ></text>
+</g>
+<g >
+<title>d_walk (10,101,010 samples, 0.03%)</title><rect x="200.7" y="709" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="203.67" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="461.2" y="789" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="464.23" y="799.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_handle_packet (10,101,010 samples, 0.03%)</title><rect x="1033.7" y="661" width="0.4" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1036.68" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="235.6" y="501" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="238.61" y="511.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="999.6" y="597" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1002.60" y="607.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="510.4" y="485" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="513.41" y="495.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="538.4" y="661" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="541.45" y="671.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="356.4" y="597" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="359.40" y="607.5" ></text>
+</g>
+<g >
+<title>do_anonymous_page (10,101,010 samples, 0.03%)</title><rect x="1367.1" y="741" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1370.14" y="751.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.03%)</title><rect x="502.2" y="709" width="0.4" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="505.21" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="369.8" y="597" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="372.77" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,454,545,430 samples, 7.60%)</title><rect x="101.9" y="885" width="104.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="104.88" y="895.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="222.2" y="597" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="225.24" y="607.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="315.0" y="693" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="317.99" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="441.8" y="613" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="444.82" y="623.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.03%)</title><rect x="502.2" y="725" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="505.21" y="735.5" ></text>
+</g>
+<g >
+<title>close_fd (10,101,010 samples, 0.03%)</title><rect x="429.3" y="725" width="0.4" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="432.31" y="735.5" ></text>
+</g>
+<g >
+<title>iput (40,404,040 samples, 0.13%)</title><rect x="508.2" y="613" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="511.25" y="623.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="299.9" y="565" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="302.89" y="575.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (10,101,010 samples, 0.03%)</title><rect x="504.8" y="549" width="0.4" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="507.80" y="559.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="251.1" y="693" width="0.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="254.14" y="703.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="244.7" y="613" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="247.67" y="623.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_create_params (10,101,010 samples, 0.03%)</title><rect x="1328.7" y="933" width="0.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1331.74" y="943.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="281.8" y="773" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="284.77" y="783.5" ></text>
+</g>
+<g >
+<title>bpf_ringbuf_submit (40,404,040 samples, 0.13%)</title><rect x="1384.0" y="709" width="1.7" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1386.96" y="719.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (131,313,130 samples, 0.41%)</title><rect x="1321.0" y="837" width="5.6" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1323.98" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="235.2" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="238.18" y="735.5" ></text>
+</g>
+<g >
+<title>out_of_line_wait_on_bit (10,101,010 samples, 0.03%)</title><rect x="544.9" y="501" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="547.92" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (111,111,110 samples, 0.34%)</title><rect x="308.1" y="757" width="4.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="311.09" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="502.2" y="789" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="505.21" y="799.5" ></text>
+</g>
+<g >
+<title>iput (262,626,260 samples, 0.81%)</title><rect x="144.6" y="661" width="11.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="147.59" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="443.5" y="613" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="446.54" y="623.5" ></text>
+</g>
+<g >
+<title>connect (161,616,160 samples, 0.50%)</title><rect x="1382.2" y="949" width="6.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1385.24" y="959.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="487.1" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="490.11" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="454.8" y="693" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="457.76" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="622.1" y="741" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="625.14" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="115.3" y="581" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="118.26" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.03%)</title><rect x="224.4" y="645" width="0.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="227.40" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.06%)</title><rect x="115.3" y="549" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="118.26" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="447.4" y="709" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="450.42" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="295.1" y="517" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="298.15" y="527.5" ></text>
+</g>
+<g >
+<title>release_sock (20,202,020 samples, 0.06%)</title><rect x="1004.3" y="773" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1007.34" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="629.9" y="677" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="632.90" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="203.3" y="677" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="206.26" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="203.3" y="693" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="206.26" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="487.5" y="469" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="490.54" y="479.5" ></text>
+</g>
+<g >
+<title>git_repository_init (2,484,848,460 samples, 7.69%)</title><rect x="495.7" y="885" width="106.2" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="498.74" y="895.5" >git_reposito..</text>
+</g>
+<g >
+<title>do_accept (70,707,070 samples, 0.22%)</title><rect x="38.5" y="821" width="3.0" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="41.47" y="831.5" ></text>
+</g>
+<g >
+<title>libjson_send (6,686,868,620 samples, 20.69%)</title><rect x="741.2" y="949" width="285.6" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="744.20" y="959.5" >libjson_send</text>
+</g>
+<g >
+<title>security_file_permission (10,101,010 samples, 0.03%)</title><rect x="719.2" y="773" width="0.4" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" />
+<text x="722.20" y="783.5" ></text>
+</g>
+<g >
+<title>syscall_trace_enter.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="723.1" y="821" width="0.4" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="726.08" y="831.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (20,202,020 samples, 0.06%)</title><rect x="1024.2" y="693" width="0.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1027.19" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="287.8" y="581" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="290.81" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_v4_send_synack (20,202,020 samples, 0.06%)</title><rect x="1387.4" y="341" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1390.41" y="351.5" ></text>
+</g>
+<g >
+<title>tcp_update_metrics (10,101,010 samples, 0.03%)</title><rect x="33.7" y="149" width="0.5" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="36.73" y="159.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="513.4" y="645" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="516.43" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="213.2" y="821" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="216.18" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="144.2" y="581" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="147.16" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="362.0" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="365.01" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="468.1" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="471.13" y="671.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.03%)</title><rect x="160.6" y="645" width="0.4" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="163.55" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_getattr (10,101,010 samples, 0.03%)</title><rect x="252.0" y="693" width="0.4" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="255.01" y="703.5" ></text>
+</g>
+<g >
+<title>ip_output (60,606,060 samples, 0.19%)</title><rect x="1377.5" y="597" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1380.49" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.03%)</title><rect x="563.9" y="581" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="566.90" y="591.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="253.7" y="645" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="256.73" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (60,606,060 samples, 0.19%)</title><rect x="408.6" y="645" width="2.6" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="411.60" y="655.5" ></text>
+</g>
+<g >
+<title>net_send_buf (60,606,060 samples, 0.19%)</title><rect x="1373.2" y="933" width="2.6" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1376.18" y="943.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.09%)</title><rect x="225.7" y="709" width="1.3" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="228.69" y="719.5" ></text>
+</g>
+<g >
+<title>unlink (80,808,080 samples, 0.25%)</title><rect x="526.8" y="821" width="3.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="529.80" y="831.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (30,303,030 samples, 0.09%)</title><rect x="497.9" y="677" width="1.3" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="500.90" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="111.4" y="661" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="114.38" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="159.7" y="805" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="162.69" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_create (111,111,110 samples, 0.34%)</title><rect x="519.0" y="677" width="4.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="522.03" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="412.9" y="805" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="415.91" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="269.3" y="741" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="272.26" y="751.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (20,202,020 samples, 0.06%)</title><rect x="211.9" y="725" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="214.89" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="463.0" y="757" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="465.95" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="377.1" y="709" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="380.11" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (585,858,580 samples, 1.81%)</title><rect x="469.0" y="805" width="25.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="471.99" y="815.5" >[..</text>
+</g>
+<g >
+<title>git_reference_create_matching (484,848,480 samples, 1.50%)</title><rect x="219.7" y="885" width="20.7" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="222.65" y="895.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="557.9" y="629" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="560.86" y="639.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="453" width="1.3" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1014.24" y="463.5" ></text>
+</g>
+<g >
+<title>__strftime_l (10,101,010 samples, 0.03%)</title><rect x="214.9" y="885" width="0.4" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="217.91" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="272.7" y="789" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="275.71" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="181.7" y="613" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="184.69" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="428.4" y="677" width="0.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="431.44" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="540.6" y="757" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="543.60" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="123.0" y="565" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="126.02" y="575.5" ></text>
+</g>
+<g >
+<title>file_read (1,424,242,410 samples, 4.41%)</title><rect x="666.1" y="901" width="60.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="669.14" y="911.5" >file_r..</text>
+</g>
+<g >
+<title>event_loop_run (454,545,450 samples, 1.41%)</title><rect x="22.5" y="965" width="19.4" height="15.0" fill="rgb(0,235,193)" rx="2" ry="2" />
+<text x="25.51" y="975.5" ></text>
+</g>
+<g >
+<title>__submit_bio (20,202,020 samples, 0.06%)</title><rect x="433.6" y="485" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="436.62" y="495.5" ></text>
+</g>
+<g >
+<title>__rq_qos_track (10,101,010 samples, 0.03%)</title><rect x="231.3" y="485" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="234.30" y="495.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="618.7" y="757" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="621.68" y="767.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.06%)</title><rect x="153.2" y="373" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="156.22" y="383.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (20,202,020 samples, 0.06%)</title><rect x="408.6" y="581" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="411.60" y="591.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="613.1" y="517" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="616.08" y="527.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.09%)</title><rect x="429.7" y="789" width="1.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="432.74" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (30,303,030 samples, 0.09%)</title><rect x="522.5" y="661" width="1.3" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="525.49" y="671.5" ></text>
+</g>
+<g >
+<title>filemap_get_pages (10,101,010 samples, 0.03%)</title><rect x="504.4" y="581" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="507.37" y="591.5" ></text>
+</g>
+<g >
+<title>memcg_list_lru_alloc (10,101,010 samples, 0.03%)</title><rect x="495.3" y="581" width="0.4" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="498.31" y="591.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="121.7" y="629" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="124.73" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (10,101,010 samples, 0.03%)</title><rect x="150.6" y="597" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="153.63" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="281.3" y="661" width="0.5" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="284.34" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.03%)</title><rect x="117.8" y="517" width="0.5" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="120.85" y="527.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="127.8" y="693" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="130.77" y="703.5" ></text>
+</g>
+<g >
+<title>from_kuid (10,101,010 samples, 0.03%)</title><rect x="79.5" y="773" width="0.4" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="82.45" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_event_new_data_sent (10,101,010 samples, 0.03%)</title><rect x="1026.8" y="629" width="0.4" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1029.77" y="639.5" ></text>
+</g>
+<g >
+<title>__blk_mq_free_request (10,101,010 samples, 0.03%)</title><rect x="1316.2" y="693" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1319.23" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (20,202,020 samples, 0.06%)</title><rect x="1380.5" y="789" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1383.51" y="799.5" ></text>
+</g>
+<g >
+<title>charge_memcg (20,202,020 samples, 0.06%)</title><rect x="1042.7" y="789" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1045.74" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="222.2" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="225.24" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.06%)</title><rect x="483.7" y="629" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="486.66" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="472.0" y="613" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="475.01" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="105.8" y="549" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="108.77" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="196.8" y="789" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="199.79" y="799.5" ></text>
+</g>
+<g >
+<title>generic_write_end (10,101,010 samples, 0.03%)</title><rect x="532.0" y="661" width="0.4" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="534.98" y="671.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="728.3" y="757" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="731.26" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="508.7" y="485" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="511.68" y="495.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="546.6" y="341" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="549.64" y="351.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="1036.3" y="805" width="0.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1039.26" y="815.5" ></text>
+</g>
+<g >
+<title>process_backlog (30,303,030 samples, 0.09%)</title><rect x="1034.5" y="549" width="1.3" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1037.54" y="559.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="281.8" y="677" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="284.77" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.19%)</title><rect x="553.1" y="709" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="556.11" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="172.2" y="629" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="175.20" y="639.5" ></text>
+</g>
+<g >
+<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="620.0" y="725" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="622.98" y="735.5" ></text>
+</g>
+<g >
+<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="1327.9" y="869" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1330.88" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="414.2" y="661" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="417.21" y="671.5" ></text>
+</g>
+<g >
+<title>__submit_bio (10,101,010 samples, 0.03%)</title><rect x="466.4" y="501" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="469.41" y="511.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="268.8" y="677" width="0.5" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="271.83" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="615.2" y="757" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="618.23" y="767.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.09%)</title><rect x="225.7" y="805" width="1.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="228.69" y="815.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (80,808,080 samples, 0.25%)</title><rect x="43.6" y="901" width="3.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="46.65" y="911.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="263.7" y="661" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="266.65" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="617.0" y="837" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="619.96" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (10,101,010 samples, 0.03%)</title><rect x="432.8" y="581" width="0.4" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="435.76" y="591.5" ></text>
+</g>
+<g >
+<title>do_poll.constprop.0 (70,707,070 samples, 0.22%)</title><rect x="23.8" y="869" width="3.0" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="26.80" y="879.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="125.2" y="501" width="0.4" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="128.18" y="511.5" ></text>
+</g>
+<g >
+<title>close_fd (10,101,010 samples, 0.03%)</title><rect x="374.5" y="661" width="0.5" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="377.52" y="671.5" ></text>
+</g>
+<g >
+<title>git_reference_symbolic_create (212,121,210 samples, 0.66%)</title><rect x="406.0" y="869" width="9.1" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="409.01" y="879.5" ></text>
+</g>
+<g >
+<title>_start (575,757,570 samples, 1.78%)</title><rect x="22.5" y="1061" width="24.6" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="25.51" y="1071.5" >_..</text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="459.9" y="565" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="462.93" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (202,020,200 samples, 0.63%)</title><rect x="732.6" y="885" width="8.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="735.57" y="895.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="277.9" y="453" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="280.89" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="127.3" y="645" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="130.34" y="655.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (10,101,010 samples, 0.03%)</title><rect x="466.0" y="533" width="0.4" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="468.97" y="543.5" ></text>
+</g>
+<g >
+<title>blk_mq_free_request (10,101,010 samples, 0.03%)</title><rect x="1316.2" y="709" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1319.23" y="719.5" ></text>
+</g>
+<g >
+<title>__sys_connect (181,818,180 samples, 0.56%)</title><rect x="1028.1" y="885" width="7.7" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1031.07" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_file_open (10,101,010 samples, 0.03%)</title><rect x="456.9" y="533" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="459.91" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="396.5" y="709" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="399.52" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="383.6" y="677" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="386.58" y="687.5" ></text>
+</g>
+<g >
+<title>__napi_poll (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="469" width="1.3" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1385.67" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="397.4" y="517" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="400.38" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="602.3" y="629" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="605.29" y="639.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.06%)</title><rect x="487.1" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="490.11" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="460.4" y="725" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="463.37" y="735.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_send (131,313,130 samples, 0.41%)</title><rect x="10.0" y="997" width="5.6" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="13.00" y="1007.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="72.1" y="837" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="75.12" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="610.9" y="709" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="613.92" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="428.4" y="709" width="0.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="431.44" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.09%)</title><rect x="54.9" y="933" width="1.3" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="57.86" y="943.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="407.3" y="741" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="410.31" y="751.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (50,505,050 samples, 0.16%)</title><rect x="1007.4" y="325" width="2.1" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1010.36" y="335.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="181.3" y="533" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="184.26" y="543.5" ></text>
+</g>
+<g >
+<title>folio_wait_bit_common (10,101,010 samples, 0.03%)</title><rect x="547.5" y="485" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="550.51" y="495.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.03%)</title><rect x="16.5" y="805" width="0.4" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="19.47" y="815.5" ></text>
+</g>
+<g >
+<title>git_checkout_tree (959,595,950 samples, 2.97%)</title><rect x="240.4" y="917" width="40.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="243.36" y="927.5" >git..</text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="146.3" y="613" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="149.32" y="623.5" ></text>
+</g>
+<g >
+<title>path_lookupat (111,111,110 samples, 0.34%)</title><rect x="534.6" y="709" width="4.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="537.56" y="719.5" ></text>
+</g>
+<g >
+<title>delete_from_page_cache_batch (30,303,030 samples, 0.09%)</title><rect x="109.2" y="549" width="1.3" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="112.22" y="559.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (90,909,090 samples, 0.28%)</title><rect x="10.9" y="725" width="3.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="13.86" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_socket (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="901" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1030.64" y="911.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.03%)</title><rect x="187.7" y="725" width="0.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="190.73" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_delayed_block (10,101,010 samples, 0.03%)</title><rect x="505.7" y="517" width="0.4" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="508.66" y="527.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="565" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1031.50" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (60,606,060 samples, 0.19%)</title><rect x="193.8" y="693" width="2.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="196.77" y="703.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (20,202,020 samples, 0.06%)</title><rect x="408.6" y="565" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="411.60" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_dx_find_entry (10,101,010 samples, 0.03%)</title><rect x="626.9" y="725" width="0.4" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="629.88" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="494.4" y="757" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="497.45" y="767.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (10,101,010 samples, 0.03%)</title><rect x="509.5" y="549" width="0.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="512.54" y="559.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="326.6" y="565" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="329.64" y="575.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="60.5" y="885" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="63.47" y="895.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="117.8" y="485" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="120.85" y="495.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.03%)</title><rect x="425.9" y="549" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="428.85" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="437.5" y="725" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="440.50" y="735.5" ></text>
+</g>
+<g >
+<title>skb_rbtree_purge (10,101,010 samples, 0.03%)</title><rect x="32.9" y="117" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="35.86" y="127.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="245.1" y="677" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="248.10" y="687.5" ></text>
+</g>
+<g >
+<title>__close (30,303,030 samples, 0.09%)</title><rect x="532.4" y="837" width="1.3" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="535.41" y="847.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="566.9" y="613" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="569.92" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="413.8" y="741" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="416.78" y="751.5" ></text>
+</g>
+<g >
+<title>mas_leaf_max_gap (20,202,020 samples, 0.06%)</title><rect x="652.8" y="677" width="0.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="655.76" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="613.1" y="469" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="616.08" y="479.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="1317.5" y="789" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1320.53" y="799.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="387.5" y="597" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="390.46" y="607.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.03%)</title><rect x="1033.7" y="725" width="0.4" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1036.68" y="735.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.03%)</title><rect x="220.9" y="613" width="0.5" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="223.95" y="623.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (60,606,060 samples, 0.19%)</title><rect x="1359.4" y="693" width="2.6" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1362.37" y="703.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (10,101,010 samples, 0.03%)</title><rect x="258.9" y="581" width="0.4" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="261.91" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.06%)</title><rect x="143.7" y="597" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="146.73" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="500.9" y="581" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="503.92" y="591.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="390.5" y="517" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="393.48" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="561.7" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="564.74" y="767.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="440.5" y="581" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="443.52" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="257.2" y="565" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="260.18" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (50,505,050 samples, 0.16%)</title><rect x="425.0" y="581" width="2.1" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="427.99" y="591.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="281.8" y="613" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="284.77" y="623.5" ></text>
+</g>
+<g >
+<title>dput (20,202,020 samples, 0.06%)</title><rect x="230.0" y="741" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="233.01" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="965.9" y="805" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="968.95" y="815.5" ></text>
+</g>
+<g >
+<title>rename (262,626,260 samples, 0.81%)</title><rect x="338.3" y="773" width="11.2" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="341.28" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="246.8" y="773" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="249.83" y="783.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.06%)</title><rect x="64.4" y="885" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="67.35" y="895.5" ></text>
+</g>
+<g >
+<title>__fget_light (10,101,010 samples, 0.03%)</title><rect x="669.6" y="789" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="672.59" y="799.5" ></text>
+</g>
+<g >
+<title>dput (50,505,050 samples, 0.16%)</title><rect x="562.6" y="693" width="2.2" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="565.60" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="373.7" y="661" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="376.66" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.09%)</title><rect x="415.9" y="789" width="1.3" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="418.93" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.03%)</title><rect x="412.1" y="661" width="0.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="415.05" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_brk (10,101,010 samples, 0.03%)</title><rect x="1366.7" y="741" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1369.71" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.47%)</title><rect x="461.7" y="837" width="6.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="464.66" y="847.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="277.9" y="437" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="280.89" y="447.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.22%)</title><rect x="44.1" y="837" width="3.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="47.08" y="847.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="379.3" y="565" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="382.27" y="575.5" ></text>
+</g>
+<g >
+<title>folio_wait_bit_common (10,101,010 samples, 0.03%)</title><rect x="427.1" y="517" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="430.15" y="527.5" ></text>
+</g>
+<g >
+<title>ip_output (30,303,030 samples, 0.09%)</title><rect x="1387.4" y="725" width="1.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1390.41" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="1036.3" y="773" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1039.26" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.03%)</title><rect x="428.4" y="661" width="0.5" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="431.44" y="671.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="249.8" y="645" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="252.85" y="655.5" ></text>
+</g>
+<g >
+<title>git_repository_refdb (10,101,010 samples, 0.03%)</title><rect x="229.6" y="821" width="0.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="232.57" y="831.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.03%)</title><rect x="162.3" y="645" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="165.28" y="655.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="437" width="1.3" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1385.67" y="447.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="441.8" y="629" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="444.82" y="639.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="221.8" y="613" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="224.81" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="196.8" y="805" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="199.79" y="815.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (60,606,060 samples, 0.19%)</title><rect x="227.0" y="805" width="2.6" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="229.99" y="815.5" ></text>
+</g>
+<g >
+<title>free_rb_tree_fname (20,202,020 samples, 0.06%)</title><rect x="313.7" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="316.69" y="655.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="547.9" y="325" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="550.94" y="335.5" ></text>
+</g>
+<g >
+<title>filemap_get_pages (10,101,010 samples, 0.03%)</title><rect x="227.4" y="533" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="230.42" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_read_inode_bitmap (10,101,010 samples, 0.03%)</title><rect x="164.0" y="629" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="167.00" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="471.2" y="661" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="474.15" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.03%)</title><rect x="164.4" y="645" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="167.44" y="655.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.03%)</title><rect x="459.5" y="661" width="0.4" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="462.50" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="112.2" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="115.24" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="309.4" y="709" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="312.38" y="719.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="427.1" y="469" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="430.15" y="479.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.03%)</title><rect x="1327.4" y="805" width="0.5" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="1330.45" y="815.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="396.5" y="741" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="399.52" y="751.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.03%)</title><rect x="259.3" y="709" width="0.5" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="262.34" y="719.5" ></text>
+</g>
+<g >
+<title>evict (40,404,040 samples, 0.13%)</title><rect x="508.2" y="597" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="511.25" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="484.1" y="485" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="487.09" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="933" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1030.64" y="943.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="390.9" y="613" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="393.91" y="623.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (30,303,030 samples, 0.09%)</title><rect x="402.1" y="597" width="1.3" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="405.13" y="607.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="610.5" y="613" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="613.49" y="623.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="561.7" y="677" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="564.74" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.03%)</title><rect x="512.1" y="453" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="515.13" y="463.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (121,212,120 samples, 0.38%)</title><rect x="338.7" y="645" width="5.2" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="341.72" y="655.5" ></text>
+</g>
+<g >
+<title>do_faccessat (30,303,030 samples, 0.09%)</title><rect x="588.9" y="757" width="1.3" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="591.92" y="767.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="362.4" y="629" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="365.44" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.09%)</title><rect x="272.7" y="757" width="1.3" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="275.71" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="373" width="0.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1027.19" y="383.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.03%)</title><rect x="171.8" y="677" width="0.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="174.77" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="567.3" y="645" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="570.35" y="655.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="383.1" y="645" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="386.15" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="151.5" y="565" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="154.49" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="614.4" y="661" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="617.37" y="671.5" ></text>
+</g>
+<g >
+<title>lh_table_new (10,101,010 samples, 0.03%)</title><rect x="1371.9" y="821" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1374.88" y="831.5" ></text>
+</g>
+<g >
+<title>skb_release_data (10,101,010 samples, 0.03%)</title><rect x="1022.9" y="469" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1025.89" y="479.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="381.9" y="693" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="384.85" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="111.4" y="725" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="114.38" y="735.5" ></text>
+</g>
+<g >
+<title>sk_prot_alloc (20,202,020 samples, 0.06%)</title><rect x="1380.5" y="805" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1383.51" y="815.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="502.6" y="661" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="505.64" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="608.3" y="581" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="611.33" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="385.7" y="581" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="388.74" y="591.5" ></text>
+</g>
+<g >
+<title>new_inode_pseudo (20,202,020 samples, 0.06%)</title><rect x="38.9" y="789" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="41.90" y="799.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="327.9" y="709" width="0.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="330.93" y="719.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages (10,101,010 samples, 0.03%)</title><rect x="553.5" y="565" width="0.5" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="556.54" y="575.5" ></text>
+</g>
+<g >
+<title>git_reference_create_matching (585,858,580 samples, 1.81%)</title><rect x="469.0" y="821" width="25.0" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="471.99" y="831.5" >g..</text>
+</g>
+<g >
+<title>tcp_connect (40,404,040 samples, 0.13%)</title><rect x="1387.0" y="805" width="1.7" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1389.98" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="181.7" y="597" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="184.69" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_rename (90,909,090 samples, 0.28%)</title><rect x="564.8" y="693" width="3.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="567.76" y="703.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (10,101,010 samples, 0.03%)</title><rect x="401.3" y="629" width="0.4" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="404.27" y="639.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (515,151,510 samples, 1.59%)</title><rect x="980.6" y="773" width="22.0" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="983.62" y="783.5" >d..</text>
+</g>
+<g >
+<title>tcp_v4_rcv (20,202,020 samples, 0.06%)</title><rect x="1387.4" y="437" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1390.41" y="447.5" ></text>
+</g>
+<g >
+<title>unlink_cb (90,909,090 samples, 0.28%)</title><rect x="202.8" y="869" width="3.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="205.83" y="879.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="229.1" y="677" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="232.14" y="687.5" ></text>
+</g>
+<g >
+<title>truncate_inode_partial_folio (20,202,020 samples, 0.06%)</title><rect x="547.5" y="533" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="550.51" y="543.5" ></text>
+</g>
+<g >
+<title>libgit_clone_to_tmp (8,181,818,100 samples, 25.32%)</title><rect x="283.5" y="933" width="349.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="286.50" y="943.5" >libgit_clone_to_tmp</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.41%)</title><rect x="89.8" y="1013" width="5.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="92.81" y="1023.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (525,252,520 samples, 1.63%)</title><rect x="1004.3" y="789" width="22.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1007.34" y="799.5" >t..</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (282,828,280 samples, 0.88%)</title><rect x="240.8" y="837" width="12.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="243.79" y="847.5" ></text>
+</g>
+<g >
+<title>ext4fs_dirhash (10,101,010 samples, 0.03%)</title><rect x="349.9" y="677" width="0.5" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="352.93" y="687.5" ></text>
+</g>
+<g >
+<title>__strdup (10,101,010 samples, 0.03%)</title><rect x="621.3" y="709" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="624.27" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="233.9" y="581" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="236.89" y="591.5" ></text>
+</g>
+<g >
+<title>inode_init_always (10,101,010 samples, 0.03%)</title><rect x="522.1" y="613" width="0.4" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="525.05" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="313.3" y="773" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="316.26" y="783.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (10,101,010 samples, 0.03%)</title><rect x="962.9" y="789" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="965.93" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="277.9" y="725" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="280.89" y="735.5" ></text>
+</g>
+<g >
+<title>net_send (525,252,520 samples, 1.63%)</title><rect x="1004.3" y="917" width="22.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1007.34" y="927.5" >n..</text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="546.6" y="453" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="549.64" y="463.5" ></text>
+</g>
+<g >
+<title>___d_drop (10,101,010 samples, 0.03%)</title><rect x="427.6" y="661" width="0.4" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="430.58" y="671.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (80,808,080 samples, 0.25%)</title><rect x="720.1" y="837" width="3.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="723.06" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (30,303,030 samples, 0.09%)</title><rect x="182.1" y="581" width="1.3" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="185.12" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_da_reserve_space (10,101,010 samples, 0.03%)</title><rect x="394.4" y="501" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="397.36" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="409.9" y="565" width="0.4" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="412.89" y="575.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="118.3" y="613" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="121.28" y="623.5" ></text>
+</g>
+<g >
+<title>alloc_pages (10,101,010 samples, 0.03%)</title><rect x="360.3" y="533" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="363.28" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="542.8" y="725" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="545.76" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.41%)</title><rect x="601.9" y="837" width="5.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="604.86" y="847.5" ></text>
+</g>
+<g >
+<title>slab_pre_alloc_hook.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="495.3" y="597" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="498.31" y="607.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="118.3" y="629" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="121.28" y="639.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.03%)</title><rect x="148.5" y="597" width="0.4" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="151.47" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="397.4" y="581" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="400.38" y="591.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="592.8" y="645" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="595.80" y="655.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="613.1" y="549" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="616.08" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.38%)</title><rect x="354.7" y="741" width="5.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="357.68" y="751.5" ></text>
+</g>
+<g >
+<title>write (50,505,050 samples, 0.16%)</title><rect x="257.2" y="789" width="2.1" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="260.18" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_append (121,212,120 samples, 0.38%)</title><rect x="580.7" y="709" width="5.2" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="583.72" y="719.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="190.8" y="565" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="193.75" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (161,616,160 samples, 0.50%)</title><rect x="475.0" y="661" width="6.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="478.03" y="671.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (20,202,020 samples, 0.06%)</title><rect x="1374.5" y="405" width="0.8" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1377.47" y="415.5" ></text>
+</g>
+<g >
+<title>alloc_buffer_head (10,101,010 samples, 0.03%)</title><rect x="486.2" y="501" width="0.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="489.25" y="511.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="728.7" y="917" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="731.69" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.09%)</title><rect x="70.0" y="805" width="1.3" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="72.96" y="815.5" ></text>
+</g>
+<g >
+<title>policy_node (20,202,020 samples, 0.06%)</title><rect x="1362.8" y="741" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1365.82" y="751.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (10,101,010 samples, 0.03%)</title><rect x="549.2" y="437" width="0.5" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="552.23" y="447.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="233.9" y="677" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="236.89" y="687.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="242.1" y="581" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="245.09" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (242,424,240 samples, 0.75%)</title><rect x="540.6" y="773" width="10.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="543.60" y="783.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.03%)</title><rect x="92.0" y="789" width="0.4" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="94.96" y="799.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="266.7" y="757" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="269.67" y="767.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="572.1" y="597" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="575.09" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="414.6" y="757" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="417.64" y="767.5" ></text>
+</g>
+<g >
+<title>vm_area_dup (101,010,100 samples, 0.31%)</title><rect x="657.5" y="741" width="4.3" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="660.51" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="568.2" y="581" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="571.21" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (70,707,070 samples, 0.22%)</title><rect x="527.2" y="773" width="3.1" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="530.23" y="783.5" ></text>
+</g>
+<g >
+<title>ipv4_conntrack_local (10,101,010 samples, 0.03%)</title><rect x="1387.4" y="277" width="0.4" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1390.41" y="287.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.06%)</title><rect x="356.0" y="661" width="0.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="358.97" y="671.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="552.7" y="613" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="555.68" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_ack_update_rtt (10,101,010 samples, 0.03%)</title><rect x="1378.8" y="245" width="0.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1381.78" y="255.5" ></text>
+</g>
+<g >
+<title>cap_inode_need_killpriv (10,101,010 samples, 0.03%)</title><rect x="224.0" y="597" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="226.97" y="607.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="52.7" y="773" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="55.71" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="422.8" y="741" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="425.84" y="751.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (50,505,050 samples, 0.16%)</title><rect x="497.5" y="725" width="2.1" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="500.46" y="735.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="397.4" y="549" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="400.38" y="559.5" ></text>
+</g>
+<g >
+<title>__sys_connect (151,515,150 samples, 0.47%)</title><rect x="1382.2" y="885" width="6.5" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1385.24" y="895.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.03%)</title><rect x="603.2" y="597" width="0.4" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="606.15" y="607.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="459.9" y="533" width="0.5" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="462.93" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="383.1" y="693" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="386.15" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="542.8" y="677" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="545.76" y="687.5" ></text>
+</g>
+<g >
+<title>ksys_write (40,404,040 samples, 0.13%)</title><rect x="224.0" y="725" width="1.7" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="226.97" y="735.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="221.8" y="773" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="224.81" y="783.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.03%)</title><rect x="177.8" y="629" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="180.81" y="639.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.03%)</title><rect x="551.4" y="677" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="554.39" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (343,434,340 samples, 1.06%)</title><rect x="220.1" y="853" width="14.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="223.08" y="863.5" ></text>
+</g>
+<g >
+<title>__poll (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="949" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1373.59" y="959.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (70,707,070 samples, 0.22%)</title><rect x="997.9" y="645" width="3.0" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1000.87" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="620.8" y="757" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="623.84" y="767.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="284.8" y="757" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="287.79" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.03%)</title><rect x="334.8" y="597" width="0.5" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="337.83" y="607.5" ></text>
+</g>
+<g >
+<title>log_entry_start (30,303,030 samples, 0.09%)</title><rect x="625.2" y="901" width="1.2" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="628.15" y="911.5" ></text>
+</g>
+<g >
+<title>d_splice_alias (10,101,010 samples, 0.03%)</title><rect x="255.5" y="661" width="0.4" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="258.46" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="111.8" y="645" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="114.81" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="563.5" y="533" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="566.47" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (40,404,040 samples, 0.13%)</title><rect x="466.0" y="709" width="1.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="468.97" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_find_dest_de (30,303,030 samples, 0.09%)</title><rect x="84.6" y="805" width="1.3" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="87.63" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="230.0" y="597" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="233.01" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_data_ready (10,101,010 samples, 0.03%)</title><rect x="1022.5" y="293" width="0.4" height="15.0" fill="rgb(0,217,113)" rx="2" ry="2" />
+<text x="1025.46" y="303.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="16.9" y="901" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="19.90" y="911.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.03%)</title><rect x="484.1" y="437" width="0.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="487.09" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (20,202,020 samples, 0.06%)</title><rect x="486.2" y="565" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="489.25" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="622.1" y="709" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="625.14" y="719.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="584.2" y="373" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="587.17" y="383.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="238.6" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="241.63" y="687.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="114.0" y="645" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="116.96" y="655.5" ></text>
+</g>
+<g >
+<title>fscrypt_file_open (10,101,010 samples, 0.03%)</title><rect x="456.9" y="517" width="0.4" height="15.0" fill="rgb(0,198,33)" rx="2" ry="2" />
+<text x="459.91" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="353.0" y="709" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="355.95" y="719.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="728.7" y="741" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="731.69" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_get_metrics (10,101,010 samples, 0.03%)</title><rect x="33.7" y="133" width="0.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="36.73" y="143.5" ></text>
+</g>
+<g >
+<title>delete_from_page_cache_batch (10,101,010 samples, 0.03%)</title><rect x="164.9" y="613" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="167.87" y="623.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (101,010,100 samples, 0.31%)</title><rect x="388.3" y="757" width="4.3" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="391.32" y="767.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.03%)</title><rect x="594.1" y="837" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="597.10" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="278.3" y="741" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="281.32" y="751.5" ></text>
+</g>
+<g >
+<title>d_lru_del (10,101,010 samples, 0.03%)</title><rect x="400.8" y="629" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="403.83" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="390.9" y="645" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="393.91" y="655.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.03%)</title><rect x="511.3" y="389" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="514.27" y="399.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (30,303,030 samples, 0.09%)</title><rect x="375.4" y="613" width="1.3" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="378.38" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_link (10,101,010 samples, 0.03%)</title><rect x="412.1" y="677" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="415.05" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="606.6" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="609.61" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (3,080,808,050 samples, 9.53%)</title><rect x="283.9" y="885" width="131.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="286.93" y="895.5" >[libgit2.so.1.1.0]</text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (20,202,020 samples, 0.06%)</title><rect x="169.2" y="741" width="0.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="172.18" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_fname_free_filename (10,101,010 samples, 0.03%)</title><rect x="412.5" y="661" width="0.4" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="415.48" y="671.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="525.9" y="645" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="528.94" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fname_free_filename (10,101,010 samples, 0.03%)</title><rect x="174.4" y="693" width="0.4" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="177.36" y="703.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (151,515,150 samples, 0.47%)</title><rect x="1320.1" y="853" width="6.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1323.12" y="863.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="114.8" y="597" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="117.83" y="607.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="97.6" y="869" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="100.57" y="879.5" ></text>
+</g>
+<g >
+<title>inet_ehash_nolisten (10,101,010 samples, 0.03%)</title><rect x="1385.7" y="773" width="0.4" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1388.69" y="783.5" ></text>
+</g>
+<g >
+<title>readdir64 (40,404,040 samples, 0.13%)</title><rect x="207.1" y="885" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="210.14" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="432.8" y="549" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="435.76" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (101,010,100 samples, 0.31%)</title><rect x="130.4" y="677" width="4.3" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="133.36" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="612.6" y="741" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="615.64" y="751.5" ></text>
+</g>
+<g >
+<title>pthread_create (30,303,030 samples, 0.09%)</title><rect x="37.2" y="885" width="1.3" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="40.18" y="895.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (10,101,010 samples, 0.03%)</title><rect x="10.4" y="789" width="0.5" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="13.43" y="799.5" ></text>
+</g>
+<g >
+<title>copy_process (90,909,090 samples, 0.28%)</title><rect x="18.6" y="965" width="3.9" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="21.63" y="975.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="377.1" y="661" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="380.11" y="671.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="1037.1" y="725" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1040.13" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="334.0" y="725" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="336.97" y="735.5" ></text>
+</g>
+<g >
+<title>do_softirq (30,303,030 samples, 0.09%)</title><rect x="1387.4" y="613" width="1.3" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1390.41" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.06%)</title><rect x="463.0" y="693" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="465.95" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="136.4" y="597" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="139.40" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (7,979,797,900 samples, 24.70%)</title><rect x="283.9" y="901" width="340.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="286.93" y="911.5" >[libgit2.so.1.1.0]</text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (30,303,030 samples, 0.09%)</title><rect x="357.7" y="533" width="1.3" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="360.70" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="502.6" y="741" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="505.64" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="522.5" y="565" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="525.49" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.03%)</title><rect x="394.4" y="597" width="0.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="397.36" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="437.9" y="725" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="440.93" y="735.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="260.2" y="597" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="263.20" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="389.6" y="613" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="392.62" y="623.5" ></text>
+</g>
+<g >
+<title>ip_local_out (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="645" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1031.50" y="655.5" ></text>
+</g>
+<g >
+<title>__fput (20,202,020 samples, 0.06%)</title><rect x="169.2" y="693" width="0.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="172.18" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_v4_connect (70,707,070 samples, 0.22%)</title><rect x="1385.7" y="821" width="3.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1388.69" y="831.5" ></text>
+</g>
+<g >
+<title>unlink (90,909,090 samples, 0.28%)</title><rect x="202.8" y="837" width="3.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="205.83" y="847.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="443.5" y="661" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="446.54" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="539.3" y="677" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="542.31" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="621.7" y="709" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="624.70" y="719.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="326.6" y="613" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="329.64" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="500.9" y="629" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="503.92" y="639.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="633.8" y="757" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="636.78" y="767.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="1363.3" y="709" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1366.25" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.03%)</title><rect x="459.9" y="661" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="462.93" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (121,212,120 samples, 0.38%)</title><rect x="338.7" y="597" width="5.2" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="341.72" y="607.5" ></text>
+</g>
+<g >
+<title>from_kgid (10,101,010 samples, 0.03%)</title><rect x="184.7" y="437" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="187.71" y="447.5" ></text>
+</g>
+<g >
+<title>server_wait_for_action (10,101,010 samples, 0.03%)</title><rect x="16.9" y="1013" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="19.90" y="1023.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="217.1" y="901" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="220.06" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="619.1" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="622.12" y="799.5" ></text>
+</g>
+<g >
+<title>access (50,505,050 samples, 0.16%)</title><rect x="622.6" y="789" width="2.1" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="625.57" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (30,303,030 samples, 0.09%)</title><rect x="83.3" y="789" width="1.3" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="86.34" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="277.5" y="853" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="280.46" y="863.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (20,202,020 samples, 0.06%)</title><rect x="625.6" y="885" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="628.59" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (10,101,010 samples, 0.03%)</title><rect x="564.3" y="581" width="0.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="567.33" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="622.1" y="725" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="625.14" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (10,101,010 samples, 0.03%)</title><rect x="10.0" y="757" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="13.00" y="767.5" ></text>
+</g>
+<g >
+<title>unlink (101,010,100 samples, 0.31%)</title><rect x="106.6" y="709" width="4.3" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="109.63" y="719.5" ></text>
+</g>
+<g >
+<title>proc_output_dump (40,404,040 samples, 0.13%)</title><rect x="1035.8" y="965" width="1.8" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="1038.83" y="975.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (10,101,010 samples, 0.03%)</title><rect x="250.3" y="677" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="253.28" y="687.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="390.5" y="533" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="393.48" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="149.8" y="565" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="152.77" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (30,303,030 samples, 0.09%)</title><rect x="176.1" y="629" width="1.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="179.08" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (20,202,020 samples, 0.06%)</title><rect x="1007.8" y="245" width="0.9" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1010.79" y="255.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (30,303,030 samples, 0.09%)</title><rect x="1354.6" y="725" width="1.3" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1357.63" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="605.3" y="693" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="608.31" y="703.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="429.7" y="629" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="432.74" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.03%)</title><rect x="252.0" y="709" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="255.01" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="246.8" y="805" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="249.83" y="815.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="625.2" y="709" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="628.15" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (60,606,060 samples, 0.19%)</title><rect x="339.1" y="581" width="2.6" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="342.15" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.22%)</title><rect x="351.2" y="821" width="3.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="354.23" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="202.0" y="837" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="204.97" y="847.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (20,202,020 samples, 0.06%)</title><rect x="1387.4" y="453" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1390.41" y="463.5" ></text>
+</g>
+<g >
+<title>ip_output (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="661" width="1.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1014.24" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.09%)</title><rect x="182.1" y="533" width="1.3" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="185.12" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="140.7" y="645" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="143.71" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="15.6" y="933" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="18.61" y="943.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="257.2" y="805" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="260.18" y="815.5" ></text>
+</g>
+<g >
+<title>bit_wait_io (10,101,010 samples, 0.03%)</title><rect x="253.7" y="581" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="256.73" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="227.0" y="645" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="229.99" y="655.5" ></text>
+</g>
+<g >
+<title>kprobe_dispatcher (80,808,080 samples, 0.25%)</title><rect x="1029.4" y="773" width="3.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1032.36" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="396.5" y="725" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="399.52" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="350.4" y="773" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="353.36" y="783.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="437" width="1.3" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1377.47" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="381.0" y="725" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="383.99" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="205.4" y="709" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="208.42" y="719.5" ></text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.03%)</title><rect x="79.9" y="789" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="82.88" y="799.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (20,202,020 samples, 0.06%)</title><rect x="1024.2" y="629" width="0.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1027.19" y="639.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (90,909,090 samples, 0.28%)</title><rect x="1358.5" y="709" width="3.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1361.51" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="102.7" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="105.75" y="719.5" ></text>
+</g>
+<g >
+<title>open64 (40,404,040 samples, 0.13%)</title><rect x="557.9" y="757" width="1.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="560.86" y="767.5" ></text>
+</g>
+<g >
+<title>net_rx_action (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="517" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1027.19" y="527.5" ></text>
+</g>
+<g >
+<title>do_writepages (40,404,040 samples, 0.13%)</title><rect x="231.3" y="629" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="234.30" y="639.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (60,606,060 samples, 0.19%)</title><rect x="384.0" y="789" width="2.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="387.01" y="799.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="444.8" y="677" width="0.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="447.84" y="687.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.03%)</title><rect x="278.8" y="821" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="281.75" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (30,303,030 samples, 0.09%)</title><rect x="565.6" y="549" width="1.3" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="568.62" y="559.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="253.7" y="549" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="256.73" y="559.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="391.3" y="565" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="394.34" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="731.7" y="901" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="734.71" y="911.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.03%)</title><rect x="396.1" y="725" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="399.09" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg_locked (10,101,010 samples, 0.03%)</title><rect x="1372.3" y="693" width="0.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1375.31" y="703.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="484.1" y="341" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="487.09" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="52.7" y="757" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="55.71" y="767.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (10,101,010 samples, 0.03%)</title><rect x="217.1" y="549" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="220.06" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.03%)</title><rect x="53.1" y="773" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="56.14" y="783.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="602.3" y="613" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="605.29" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_fc_track_inode (10,101,010 samples, 0.03%)</title><rect x="162.7" y="613" width="0.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="165.71" y="623.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.03%)</title><rect x="315.9" y="709" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="318.85" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="483.2" y="693" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="486.23" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="251.6" y="821" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="254.58" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="217.9" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="220.93" y="783.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="281.3" y="741" width="0.5" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="284.34" y="751.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.06%)</title><rect x="619.1" y="757" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="622.12" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="386.6" y="709" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="389.60" y="719.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="602.3" y="597" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="605.29" y="607.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="460.4" y="709" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="463.37" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.03%)</title><rect x="466.8" y="533" width="0.5" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="469.84" y="543.5" ></text>
+</g>
+<g >
+<title>mas_find (10,101,010 samples, 0.03%)</title><rect x="651.5" y="741" width="0.4" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="654.47" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="731.7" y="917" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="734.71" y="927.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.03%)</title><rect x="286.9" y="693" width="0.5" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="289.95" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="546.6" y="405" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="549.64" y="415.5" ></text>
+</g>
+<g >
+<title>apparmor_file_alloc_security (20,202,020 samples, 0.06%)</title><rect x="59.2" y="853" width="0.8" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="62.18" y="863.5" ></text>
+</g>
+<g >
+<title>wait_task_zombie (10,101,010 samples, 0.03%)</title><rect x="727.4" y="757" width="0.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="730.39" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="484.1" y="501" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="487.09" y="511.5" ></text>
+</g>
+<g >
+<title>wait_consider_task (10,101,010 samples, 0.03%)</title><rect x="727.4" y="773" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="730.39" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_symlink (50,505,050 samples, 0.16%)</title><rect x="524.6" y="773" width="2.2" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="527.64" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="181.3" y="597" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="184.26" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (353,535,350 samples, 1.09%)</title><rect x="286.9" y="725" width="15.1" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="289.95" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="48.8" y="917" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="51.82" y="927.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (242,424,240 samples, 0.75%)</title><rect x="338.3" y="709" width="10.3" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="341.28" y="719.5" ></text>
+</g>
+<g >
+<title>mas_alloc_nodes (10,101,010 samples, 0.03%)</title><rect x="127.3" y="565" width="0.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="130.34" y="575.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="458.6" y="725" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="461.64" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (60,606,060 samples, 0.19%)</title><rect x="32.0" y="245" width="2.6" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="35.00" y="255.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="500.9" y="645" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="503.92" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (343,434,340 samples, 1.06%)</title><rect x="220.1" y="837" width="14.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="223.08" y="847.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.03%)</title><rect x="591.5" y="661" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="594.51" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="597.5" y="757" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="600.55" y="767.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="98.4" y="789" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="101.43" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="439.7" y="757" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="442.66" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="234.3" y="757" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="237.32" y="767.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="533" width="1.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1385.67" y="543.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (70,707,070 samples, 0.22%)</title><rect x="1377.1" y="885" width="3.0" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1380.06" y="895.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (60,606,060 samples, 0.19%)</title><rect x="24.2" y="789" width="2.6" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="27.24" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (10,101,010 samples, 0.03%)</title><rect x="230.4" y="597" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="233.44" y="607.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="601.0" y="629" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="604.00" y="639.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="603.6" y="549" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="606.59" y="559.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.03%)</title><rect x="221.8" y="645" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="224.81" y="655.5" ></text>
+</g>
+<g >
+<title>__libc_start_main (575,757,570 samples, 1.78%)</title><rect x="22.5" y="1045" width="24.6" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="25.51" y="1055.5" >_..</text>
+</g>
+<g >
+<title>__napi_poll (90,909,090 samples, 0.28%)</title><rect x="31.6" y="373" width="3.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="34.57" y="383.5" ></text>
+</g>
+<g >
+<title>__x64_sys_connect (151,515,150 samples, 0.47%)</title><rect x="1382.2" y="901" width="6.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1385.24" y="911.5" ></text>
+</g>
+<g >
+<title>log_entry_start (30,303,030 samples, 0.09%)</title><rect x="282.2" y="917" width="1.3" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="285.20" y="927.5" ></text>
+</g>
+<g >
+<title>fstatat64 (141,414,140 samples, 0.44%)</title><rect x="302.0" y="789" width="6.1" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="305.05" y="799.5" ></text>
+</g>
+<g >
+<title>release_pages (10,101,010 samples, 0.03%)</title><rect x="1322.7" y="757" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1325.70" y="767.5" ></text>
+</g>
+<g >
+<title>folio_wait_writeback (10,101,010 samples, 0.03%)</title><rect x="427.1" y="549" width="0.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="430.15" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="278.3" y="693" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="281.32" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="607.5" y="741" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="610.47" y="751.5" ></text>
+</g>
+<g >
+<title>do_symlinkat (50,505,050 samples, 0.16%)</title><rect x="524.6" y="757" width="2.2" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="527.64" y="767.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="244.2" y="469" width="0.5" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="247.24" y="479.5" ></text>
+</g>
+<g >
+<title>begin_current_label_crit_section (10,101,010 samples, 0.03%)</title><rect x="524.2" y="645" width="0.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="527.21" y="655.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="613" width="0.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1373.59" y="623.5" ></text>
+</g>
+<g >
+<title>begin_current_label_crit_section (10,101,010 samples, 0.03%)</title><rect x="59.6" y="837" width="0.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="62.61" y="847.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="1388.7" y="901" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1391.71" y="911.5" ></text>
+</g>
+<g >
+<title>ip_local_out (40,404,040 samples, 0.13%)</title><rect x="1387.0" y="741" width="1.7" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1389.98" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="189.5" y="645" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="192.46" y="655.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="232.2" y="453" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="235.16" y="463.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="251.1" y="757" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="254.14" y="767.5" ></text>
+</g>
+<g >
+<title>ci_run_git_repo (14,909,090,760 samples, 46.14%)</title><rect x="95.4" y="965" width="636.7" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="98.41" y="975.5" >ci_run_git_repo</text>
+</g>
+<g >
+<title>request_create_finished_run (7,797,979,720 samples, 24.13%)</title><rect x="1037.6" y="965" width="333.0" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1040.56" y="975.5" >request_create_finished_run</text>
+</g>
+<g >
+<title>ext4_generic_delete_entry (10,101,010 samples, 0.03%)</title><rect x="124.3" y="597" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="127.32" y="607.5" ></text>
+</g>
+<g >
+<title>unmap_vmas (60,606,060 samples, 0.19%)</title><rect x="738.6" y="709" width="2.6" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="741.61" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="125.2" y="597" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="128.18" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="355.1" y="725" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="358.11" y="735.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (30,303,030 samples, 0.09%)</title><rect x="344.3" y="453" width="1.3" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="347.32" y="463.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="235.6" y="645" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="238.61" y="655.5" ></text>
+</g>
+<g >
+<title>blk_mq_attempt_bio_merge (10,101,010 samples, 0.03%)</title><rect x="466.4" y="469" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="469.41" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="227.0" y="725" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="229.99" y="735.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (60,606,060 samples, 0.19%)</title><rect x="689.0" y="661" width="2.6" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="692.00" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="355.1" y="709" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="358.11" y="719.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="176.5" y="581" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="179.51" y="591.5" ></text>
+</g>
+<g >
+<title>opendir (30,303,030 samples, 0.09%)</title><rect x="610.5" y="741" width="1.3" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="613.49" y="751.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.09%)</title><rect x="588.9" y="709" width="1.3" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="591.92" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_rename (50,505,050 samples, 0.16%)</title><rect x="548.8" y="677" width="2.2" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="551.80" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mb_use_preallocated.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="566.1" y="469" width="0.4" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="569.06" y="479.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="332.2" y="565" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="335.24" y="575.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.03%)</title><rect x="415.5" y="821" width="0.4" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="418.50" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="117.4" y="453" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="120.41" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="516.0" y="485" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="519.01" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.16%)</title><rect x="27.7" y="869" width="2.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="30.69" y="879.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="138.1" y="725" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="141.12" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="181.7" y="581" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="184.69" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="349.9" y="805" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="352.93" y="815.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.09%)</title><rect x="481.9" y="645" width="1.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="484.93" y="655.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="272.7" y="709" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="275.71" y="719.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (30,303,030 samples, 0.09%)</title><rect x="549.2" y="597" width="1.3" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="552.23" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.06%)</title><rect x="236.0" y="741" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="239.05" y="751.5" ></text>
+</g>
+<g >
+<title>__fdget (10,101,010 samples, 0.03%)</title><rect x="15.2" y="821" width="0.4" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="18.18" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="512.1" y="501" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="515.13" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="104.9" y="565" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="107.90" y="575.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="378.8" y="613" width="1.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="381.83" y="623.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.03%)</title><rect x="41.9" y="917" width="0.5" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="44.92" y="927.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="387.0" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="390.03" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="463.8" y="773" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="466.82" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="181.3" y="581" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="184.26" y="591.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (30,303,030 samples, 0.09%)</title><rect x="261.5" y="629" width="1.3" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="264.50" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="541.9" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="544.90" y="735.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (70,707,070 samples, 0.22%)</title><rect x="688.6" y="677" width="3.0" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="691.57" y="687.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (20,202,020 samples, 0.06%)</title><rect x="725.7" y="821" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="728.67" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_es_free_extent (10,101,010 samples, 0.03%)</title><rect x="163.6" y="581" width="0.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="166.57" y="591.5" ></text>
+</g>
+<g >
+<title>strerror_l (10,101,010 samples, 0.03%)</title><rect x="397.8" y="613" width="0.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="400.81" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="288.7" y="629" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="291.67" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="528.5" y="661" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="531.52" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="233.5" y="677" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="236.46" y="687.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="132.9" y="581" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="135.94" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="277.0" y="773" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="280.03" y="783.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="443.1" y="613" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="446.11" y="623.5" ></text>
+</g>
+<g >
+<title>alloc_file_pseudo (20,202,020 samples, 0.06%)</title><rect x="1381.4" y="853" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1384.37" y="863.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="773" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1047.03" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="190.3" y="597" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="193.32" y="607.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (20,202,020 samples, 0.06%)</title><rect x="120.0" y="677" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="123.00" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.03%)</title><rect x="200.2" y="565" width="0.5" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="203.24" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="228.3" y="677" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="231.28" y="687.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (30,303,030 samples, 0.09%)</title><rect x="1047.9" y="885" width="1.3" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1050.91" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="388.8" y="645" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="391.76" y="655.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (20,202,020 samples, 0.06%)</title><rect x="1383.1" y="309" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1386.10" y="319.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="591.1" y="709" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="594.08" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="278.3" y="725" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="281.32" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_connect (80,808,080 samples, 0.25%)</title><rect x="1029.4" y="821" width="3.4" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1032.36" y="831.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (505,050,500 samples, 1.56%)</title><rect x="1005.2" y="773" width="21.6" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="1008.20" y="783.5" >t..</text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.03%)</title><rect x="611.8" y="645" width="0.4" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="614.78" y="655.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="71.3" y="805" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="74.26" y="815.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="603.6" y="645" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="606.59" y="655.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (20,202,020 samples, 0.06%)</title><rect x="487.1" y="565" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="490.11" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.19%)</title><rect x="408.6" y="725" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="411.60" y="735.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="141.6" y="629" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="144.57" y="639.5" ></text>
+</g>
+<g >
+<title>libjson_set_string_const_key (10,101,010 samples, 0.03%)</title><rect x="1389.6" y="901" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1392.57" y="911.5" ></text>
+</g>
+<g >
+<title>inet_release (70,707,070 samples, 0.22%)</title><rect x="1377.1" y="757" width="3.0" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1380.06" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_bread (30,303,030 samples, 0.09%)</title><rect x="131.2" y="613" width="1.3" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="134.22" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (20,202,020 samples, 0.06%)</title><rect x="575.5" y="709" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="578.55" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_claim_free_clusters (10,101,010 samples, 0.03%)</title><rect x="295.6" y="549" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="298.58" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="251.1" y="805" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="254.14" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="248.6" y="661" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="251.56" y="671.5" ></text>
+</g>
+<g >
+<title>path_openat (30,303,030 samples, 0.09%)</title><rect x="598.8" y="613" width="1.3" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="601.84" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (60,606,060 samples, 0.19%)</title><rect x="408.6" y="661" width="2.6" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="411.60" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="239.9" y="789" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="242.93" y="799.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.1.0] (6,090,909,030 samples, 18.85%)</title><rect x="743.4" y="885" width="260.1" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="746.35" y="895.5" >[libjson-c.so.5.1.0]</text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="514.3" y="629" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="517.29" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.06%)</title><rect x="549.7" y="501" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="552.66" y="511.5" ></text>
+</g>
+<g >
+<title>mnt_drop_write (10,101,010 samples, 0.03%)</title><rect x="65.2" y="901" width="0.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="68.22" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (60,606,060 samples, 0.19%)</title><rect x="183.8" y="565" width="2.6" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="186.85" y="575.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="236.9" y="757" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="239.91" y="767.5" ></text>
+</g>
+<g >
+<title>filemap_flush (30,303,030 samples, 0.09%)</title><rect x="402.1" y="613" width="1.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="405.13" y="623.5" ></text>
+</g>
+<g >
+<title>__percpu_counter_init (10,101,010 samples, 0.03%)</title><rect x="662.3" y="741" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="665.25" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (30,303,030 samples, 0.09%)</title><rect x="105.3" y="645" width="1.3" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="108.34" y="655.5" ></text>
+</g>
+<g >
+<title>dentry_kill (40,404,040 samples, 0.13%)</title><rect x="508.2" y="661" width="1.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="511.25" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (60,606,060 samples, 0.19%)</title><rect x="408.6" y="709" width="2.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="411.60" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="388.3" y="693" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="391.32" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="251.6" y="773" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="254.58" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (20,202,020 samples, 0.06%)</title><rect x="505.7" y="549" width="0.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="508.66" y="559.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="322.3" y="709" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="325.32" y="719.5" ></text>
+</g>
+<g >
+<title>kmalloc_trace (10,101,010 samples, 0.03%)</title><rect x="320.2" y="677" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="323.17" y="687.5" ></text>
+</g>
+<g >
+<title>cmd_dispatcher_handle_event (50,505,050 samples, 0.16%)</title><rect x="1371.0" y="949" width="2.2" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1374.02" y="959.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="251.6" y="789" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="254.58" y="799.5" ></text>
+</g>
+<g >
+<title>dup_task_struct (10,101,010 samples, 0.03%)</title><rect x="663.5" y="773" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="666.55" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="149.8" y="581" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="152.77" y="591.5" ></text>
+</g>
+<g >
+<title>inet_accept (10,101,010 samples, 0.03%)</title><rect x="38.5" y="805" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="41.47" y="815.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.03%)</title><rect x="728.3" y="741" width="0.4" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="731.26" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="504.4" y="629" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="507.37" y="639.5" ></text>
+</g>
+<g >
+<title>rename (181,818,180 samples, 0.56%)</title><rect x="543.2" y="757" width="7.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="546.19" y="767.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="547.9" y="405" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="550.94" y="415.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="393.9" y="645" width="0.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="396.93" y="655.5" ></text>
+</g>
+<g >
+<title>task_work_run (50,505,050 samples, 0.16%)</title><rect x="27.7" y="805" width="2.1" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="30.69" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.03%)</title><rect x="394.4" y="549" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="397.36" y="559.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="529.0" y="597" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="531.96" y="607.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (20,202,020 samples, 0.06%)</title><rect x="728.7" y="821" width="0.8" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="731.69" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="508.7" y="517" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="511.68" y="527.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="406.9" y="629" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="409.87" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="378.0" y="725" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="380.97" y="735.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.03%)</title><rect x="126.0" y="789" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="129.04" y="799.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="502.2" y="773" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="505.21" y="783.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="411.2" y="613" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="414.19" y="623.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="502.2" y="821" width="0.4" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="505.21" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (20,202,020 samples, 0.06%)</title><rect x="360.7" y="581" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="363.72" y="591.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="547.9" y="181" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="550.94" y="191.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="362.9" y="597" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="365.87" y="607.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="562.2" y="677" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="565.17" y="687.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="1037.1" y="789" width="0.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1040.13" y="799.5" ></text>
+</g>
+<g >
+<title>pthread_cond_wait (10,101,010 samples, 0.03%)</title><rect x="16.9" y="981" width="0.4" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="19.90" y="991.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="199.8" y="645" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="202.81" y="655.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.09%)</title><rect x="560.4" y="773" width="1.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="563.45" y="783.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_ipv4 (10,101,010 samples, 0.03%)</title><rect x="1387.8" y="277" width="0.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1390.84" y="287.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.03%)</title><rect x="1317.1" y="821" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1320.10" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="151.1" y="581" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="154.06" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.03%)</title><rect x="523.8" y="661" width="0.4" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="526.78" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="444.8" y="693" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="447.84" y="703.5" ></text>
+</g>
+<g >
+<title>sd_done (10,101,010 samples, 0.03%)</title><rect x="332.2" y="501" width="0.5" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="335.24" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="205.4" y="677" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="208.42" y="687.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.03%)</title><rect x="436.2" y="613" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="439.21" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (60,606,060 samples, 0.19%)</title><rect x="433.2" y="661" width="2.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="436.19" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="209.3" y="725" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="212.30" y="735.5" ></text>
+</g>
+<g >
+<title>d_lru_del (10,101,010 samples, 0.03%)</title><rect x="562.6" y="645" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="565.60" y="655.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.03%)</title><rect x="555.3" y="485" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="558.27" y="495.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.03%)</title><rect x="217.1" y="581" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="220.06" y="591.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (10,101,010 samples, 0.03%)</title><rect x="1021.6" y="229" width="0.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1024.60" y="239.5" ></text>
+</g>
+<g >
+<title>do_open (20,202,020 samples, 0.06%)</title><rect x="517.7" y="709" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="520.74" y="719.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="101.0" y="837" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="104.02" y="847.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="100.2" y="789" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="103.16" y="799.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.09%)</title><rect x="598.8" y="645" width="1.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="601.84" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="483.2" y="677" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="486.23" y="687.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (30,303,030 samples, 0.09%)</title><rect x="739.9" y="613" width="1.3" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="742.90" y="623.5" ></text>
+</g>
+<g >
+<title>git_repository_config_snapshot (131,313,130 samples, 0.41%)</title><rect x="619.1" y="869" width="5.6" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="622.12" y="879.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.06%)</title><rect x="173.5" y="677" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="176.49" y="687.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.03%)</title><rect x="613.5" y="581" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="616.51" y="591.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="258.0" y="613" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="261.05" y="623.5" ></text>
+</g>
+<g >
+<title>fsnotify (10,101,010 samples, 0.03%)</title><rect x="315.0" y="597" width="0.4" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="317.99" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="227.0" y="693" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="229.99" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="15.6" y="949" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="18.61" y="959.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (20,202,020 samples, 0.06%)</title><rect x="192.5" y="677" width="0.8" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="195.48" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="396.1" y="677" width="0.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="399.09" y="687.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.03%)</title><rect x="1327.4" y="837" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1330.45" y="847.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="361.6" y="501" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="364.58" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (171,717,170 samples, 0.53%)</title><rect x="47.5" y="1013" width="7.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="50.53" y="1023.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.06%)</title><rect x="12.6" y="277" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="15.59" y="287.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.06%)</title><rect x="602.7" y="741" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="605.72" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="610.9" y="629" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="613.92" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (20,202,020 samples, 0.06%)</title><rect x="410.3" y="613" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="413.33" y="623.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="629" width="1.3" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1377.47" y="639.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="601.0" y="645" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="604.00" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_ext_try_to_merge (10,101,010 samples, 0.03%)</title><rect x="51.8" y="773" width="0.5" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="54.84" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (20,202,020 samples, 0.06%)</title><rect x="584.2" y="629" width="0.8" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="587.17" y="639.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (20,202,020 samples, 0.06%)</title><rect x="118.3" y="661" width="0.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="121.28" y="671.5" ></text>
+</g>
+<g >
+<title>fib_table_lookup (10,101,010 samples, 0.03%)</title><rect x="34.2" y="165" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="37.16" y="175.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="487.1" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="490.11" y="687.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="607.9" y="549" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="610.90" y="559.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.06%)</title><rect x="16.0" y="837" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="19.04" y="847.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="336.6" y="629" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="339.56" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4fs_dirhash (10,101,010 samples, 0.03%)</title><rect x="319.7" y="629" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="322.73" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.03%)</title><rect x="255.0" y="661" width="0.5" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="258.03" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (414,141,410 samples, 1.28%)</title><rect x="469.4" y="741" width="17.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="472.42" y="751.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (10,101,010 samples, 0.03%)</title><rect x="1009.1" y="213" width="0.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1012.09" y="223.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="593.7" y="837" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="596.66" y="847.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (10,101,010 samples, 0.03%)</title><rect x="466.0" y="485" width="0.4" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="468.97" y="495.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="101.0" y="789" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="104.02" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="213.2" y="837" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="216.18" y="847.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.03%)</title><rect x="487.1" y="517" width="0.4" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="490.11" y="527.5" ></text>
+</g>
+<g >
+<title>net_rx_action (70,707,070 samples, 0.22%)</title><rect x="1006.9" y="453" width="3.0" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1009.93" y="463.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="542.8" y="693" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="545.76" y="703.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="563.0" y="565" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="566.04" y="575.5" ></text>
+</g>
+<g >
+<title>security_current_getsecid_subj (10,101,010 samples, 0.03%)</title><rect x="517.7" y="677" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="520.74" y="687.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="557.9" y="661" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="560.86" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (121,212,120 samples, 0.38%)</title><rect x="10.0" y="821" width="5.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="13.00" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="491.4" y="693" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="494.43" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_read (20,202,020 samples, 0.06%)</title><rect x="552.3" y="661" width="0.8" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="555.25" y="671.5" ></text>
+</g>
+<g >
+<title>kill_fasync (10,101,010 samples, 0.03%)</title><rect x="670.5" y="789" width="0.4" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="673.45" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.22%)</title><rect x="23.8" y="917" width="3.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="26.80" y="927.5" ></text>
+</g>
+<g >
+<title>folio_add_new_anon_rmap (10,101,010 samples, 0.03%)</title><rect x="995.3" y="693" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="998.28" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (151,515,150 samples, 0.47%)</title><rect x="570.8" y="725" width="6.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="573.80" y="735.5" ></text>
+</g>
+<g >
+<title>git_signature_default (40,404,040 samples, 0.13%)</title><rect x="368.9" y="805" width="1.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="371.91" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (50,505,050 samples, 0.16%)</title><rect x="478.5" y="501" width="2.1" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="481.48" y="511.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="371.1" y="597" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="374.07" y="607.5" ></text>
+</g>
+<g >
+<title>__tcp_ack_snd_check (10,101,010 samples, 0.03%)</title><rect x="12.2" y="341" width="0.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="15.16" y="351.5" ></text>
+</g>
+<g >
+<title>__kfree_skb (10,101,010 samples, 0.03%)</title><rect x="1373.2" y="725" width="0.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1376.18" y="735.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.03%)</title><rect x="505.2" y="549" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="508.23" y="559.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="304.6" y="693" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="307.64" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="170.0" y="757" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="173.04" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (232,323,230 samples, 0.72%)</title><rect x="503.5" y="805" width="9.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="506.50" y="815.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (50,505,050 samples, 0.16%)</title><rect x="63.1" y="901" width="2.1" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="66.06" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (111,111,110 samples, 0.34%)</title><rect x="343.9" y="645" width="4.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="346.89" y="655.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="98.9" y="805" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="101.87" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="233.5" y="645" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="236.46" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="384.4" y="693" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="387.44" y="703.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="693" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1373.59" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="727.8" y="917" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="730.82" y="927.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (20,202,020 samples, 0.06%)</title><rect x="431.5" y="709" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="434.46" y="719.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="273.6" y="677" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="276.58" y="687.5" ></text>
+</g>
+<g >
+<title>_copy_to_iter (373,737,370 samples, 1.16%)</title><rect x="676.9" y="757" width="16.0" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="679.92" y="767.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="338.3" y="677" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="341.28" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_readlink (20,202,020 samples, 0.06%)</title><rect x="615.7" y="757" width="0.8" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="618.66" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="564.8" y="645" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="567.76" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="415.5" y="869" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="418.50" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (333,333,330 samples, 1.03%)</title><rect x="287.4" y="677" width="14.2" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="290.38" y="687.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="532.0" y="549" width="0.4" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="534.98" y="559.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (30,303,030 samples, 0.09%)</title><rect x="485.8" y="597" width="1.3" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="488.82" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="102.3" y="693" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="105.32" y="703.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="1376.6" y="805" width="0.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1379.63" y="815.5" ></text>
+</g>
+<g >
+<title>evict (10,101,010 samples, 0.03%)</title><rect x="401.3" y="597" width="0.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="404.27" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="293.9" y="613" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="296.85" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="390.9" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="393.91" y="703.5" ></text>
+</g>
+<g >
+<title>do_anonymous_page (20,202,020 samples, 0.06%)</title><rect x="1048.3" y="789" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1051.34" y="799.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="529.0" y="517" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="531.96" y="527.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="334.0" y="629" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="336.97" y="639.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.06%)</title><rect x="459.5" y="821" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="462.50" y="831.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="466.8" y="453" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="469.84" y="463.5" ></text>
+</g>
+<g >
+<title>mktime (10,101,010 samples, 0.03%)</title><rect x="405.1" y="773" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="408.15" y="783.5" ></text>
+</g>
+<g >
+<title>__irq_work_queue_local (40,404,040 samples, 0.13%)</title><rect x="1384.0" y="677" width="1.7" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="1386.96" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.34%)</title><rect x="308.1" y="773" width="4.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="311.09" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (40,404,040 samples, 0.13%)</title><rect x="504.8" y="613" width="1.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="507.80" y="623.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="314.1" y="533" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="317.13" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.06%)</title><rect x="606.6" y="725" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="609.61" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="437.5" y="773" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="440.50" y="783.5" ></text>
+</g>
+<g >
+<title>do_open (50,505,050 samples, 0.16%)</title><rect x="60.9" y="901" width="2.2" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="63.90" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="504.8" y="693" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="507.80" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.06%)</title><rect x="1375.8" y="821" width="0.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1378.76" y="831.5" ></text>
+</g>
+<g >
+<title>perf_output_begin (10,101,010 samples, 0.03%)</title><rect x="21.6" y="885" width="0.5" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="24.65" y="895.5" ></text>
+</g>
+<g >
+<title>page_counter_cancel (10,101,010 samples, 0.03%)</title><rect x="675.6" y="693" width="0.5" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="678.63" y="703.5" ></text>
+</g>
+<g >
+<title>cpuset_fork (10,101,010 samples, 0.03%)</title><rect x="632.9" y="757" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="635.92" y="767.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="415.9" y="773" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="418.93" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="628.2" y="757" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="631.17" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="522.5" y="613" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="525.49" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="562.2" y="709" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="565.17" y="719.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (535,353,530 samples, 1.66%)</title><rect x="65.6" y="901" width="22.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="68.65" y="911.5" >o..</text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="41.5" y="789" width="0.4" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="44.49" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="591.1" y="741" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="594.08" y="751.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="104.9" y="485" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="107.90" y="495.5" ></text>
+</g>
+<g >
+<title>mktime (10,101,010 samples, 0.03%)</title><rect x="414.6" y="805" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="417.64" y="815.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="365.0" y="549" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="368.03" y="559.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (30,303,030 samples, 0.09%)</title><rect x="313.7" y="805" width="1.3" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="316.69" y="815.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (70,707,070 samples, 0.22%)</title><rect x="658.8" y="725" width="3.0" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="661.80" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="491.9" y="597" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="494.86" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="151.5" y="501" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="154.49" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="151.9" y="517" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="154.93" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (10,101,010 samples, 0.03%)</title><rect x="255.0" y="677" width="0.5" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="258.03" y="687.5" ></text>
+</g>
+<g >
+<title>git_signature_now (20,202,020 samples, 0.06%)</title><rect x="404.7" y="789" width="0.9" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="407.72" y="799.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.03%)</title><rect x="311.1" y="629" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="314.11" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (50,505,050 samples, 0.16%)</title><rect x="116.1" y="565" width="2.2" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="119.12" y="575.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.03%)</title><rect x="507.4" y="645" width="0.4" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="510.39" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,606,060,580 samples, 8.07%)</title><rect x="101.9" y="917" width="111.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="104.88" y="927.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (20,202,020 samples, 0.06%)</title><rect x="402.1" y="485" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="405.13" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="279.6" y="805" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="282.62" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (50,505,050 samples, 0.16%)</title><rect x="1007.4" y="309" width="2.1" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1010.36" y="319.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="125.2" y="565" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="128.18" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="419.4" y="773" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="422.38" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="1380.5" y="933" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1383.51" y="943.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_send (6,686,868,620 samples, 20.69%)</title><rect x="741.2" y="965" width="285.6" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="744.20" y="975.5" >jsonrpc_request_send</text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.03%)</title><rect x="179.5" y="645" width="0.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="182.53" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="422.8" y="757" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="425.84" y="767.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (20,202,020 samples, 0.06%)</title><rect x="1383.1" y="293" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1386.10" y="303.5" ></text>
+</g>
+<g >
+<title>futex_wait (10,101,010 samples, 0.03%)</title><rect x="26.8" y="821" width="0.5" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="29.82" y="831.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (60,606,060 samples, 0.19%)</title><rect x="214.5" y="901" width="2.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="217.48" y="911.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="312.4" y="725" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="315.40" y="735.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="391.3" y="533" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="394.34" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="1037.1" y="837" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1040.13" y="847.5" ></text>
+</g>
+<g >
+<title>security_inode_alloc (10,101,010 samples, 0.03%)</title><rect x="522.1" y="597" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="525.05" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="568.2" y="629" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="571.21" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (30,303,030 samples, 0.09%)</title><rect x="197.2" y="757" width="1.3" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="200.22" y="767.5" ></text>
+</g>
+<g >
+<title>rmdir (101,010,100 samples, 0.31%)</title><rect x="114.0" y="725" width="4.3" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="116.96" y="735.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="304.2" y="645" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="307.20" y="655.5" ></text>
+</g>
+<g >
+<title>__sys_connect_file (151,515,150 samples, 0.47%)</title><rect x="1382.2" y="869" width="6.5" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="1385.24" y="879.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="132.9" y="533" width="0.5" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="135.94" y="543.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.03%)</title><rect x="367.6" y="613" width="0.4" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="370.62" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (10,101,010 samples, 0.03%)</title><rect x="495.3" y="629" width="0.4" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="498.31" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="463.0" y="741" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="465.95" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.03%)</title><rect x="394.4" y="565" width="0.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="397.36" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="199.4" y="629" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="202.38" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_clone (747,474,740 samples, 2.31%)</title><rect x="632.9" y="837" width="31.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="635.92" y="847.5" >__..</text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.03%)</title><rect x="223.1" y="693" width="0.4" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="226.10" y="703.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="187.7" y="709" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="190.73" y="719.5" ></text>
+</g>
+<g >
+<title>inflate (10,101,010 samples, 0.03%)</title><rect x="234.8" y="757" width="0.4" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="237.75" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="332.2" y="661" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="335.24" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="527.7" y="645" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="530.66" y="655.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (40,404,040 samples, 0.13%)</title><rect x="1387.0" y="757" width="1.7" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1389.98" y="767.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.03%)</title><rect x="232.2" y="469" width="0.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="235.16" y="479.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.03%)</title><rect x="83.8" y="661" width="0.4" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="86.77" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="341" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1031.50" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (30,303,030 samples, 0.09%)</title><rect x="565.6" y="565" width="1.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="568.62" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_rack_update_reo_wnd (10,101,010 samples, 0.03%)</title><rect x="10.0" y="741" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="13.00" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="432.8" y="533" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="435.76" y="543.5" ></text>
+</g>
+<g >
+<title>find_group_other (10,101,010 samples, 0.03%)</title><rect x="74.3" y="837" width="0.4" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="77.28" y="847.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="363.3" y="517" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="366.30" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="289.1" y="645" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="292.11" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_init_security (10,101,010 samples, 0.03%)</title><rect x="477.6" y="581" width="0.5" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="480.62" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="231.7" y="437" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="234.73" y="447.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="286.9" y="613" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="289.95" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (50,505,050 samples, 0.16%)</title><rect x="497.5" y="741" width="2.1" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="500.46" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="125.6" y="677" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="128.61" y="687.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.03%)</title><rect x="466.0" y="421" width="0.4" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="468.97" y="431.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="407.7" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="410.74" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_v4_send_ack (10,101,010 samples, 0.03%)</title><rect x="34.2" y="229" width="0.4" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="37.16" y="239.5" ></text>
+</g>
+<g >
+<title>evict (121,212,120 samples, 0.38%)</title><rect x="338.7" y="613" width="5.2" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="341.72" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.03%)</title><rect x="230.4" y="533" width="0.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="233.44" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_release_dir (20,202,020 samples, 0.06%)</title><rect x="169.2" y="677" width="0.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="172.18" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="489.7" y="725" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="492.70" y="735.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.03%)</title><rect x="1036.3" y="757" width="0.4" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1039.26" y="767.5" ></text>
+</g>
+<g >
+<title>__do_softirq (90,909,090 samples, 0.28%)</title><rect x="31.6" y="405" width="3.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="34.57" y="415.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (30,303,030 samples, 0.09%)</title><rect x="1387.4" y="693" width="1.3" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1390.41" y="703.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.03%)</title><rect x="485.4" y="549" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="488.39" y="559.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="604.9" y="613" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="607.88" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="560.0" y="757" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="563.02" y="767.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="610.9" y="725" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="613.92" y="735.5" ></text>
+</g>
+<g >
+<title>ip_rcv (20,202,020 samples, 0.06%)</title><rect x="1374.5" y="421" width="0.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1377.47" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="503.1" y="581" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="506.07" y="591.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (10,101,010 samples, 0.03%)</title><rect x="530.3" y="629" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="533.25" y="639.5" ></text>
+</g>
+<g >
+<title>open64 (60,606,060 samples, 0.19%)</title><rect x="253.3" y="837" width="2.6" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="256.30" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="588.5" y="725" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="591.49" y="735.5" ></text>
+</g>
+<g >
+<title>folio_test_hugetlb (10,101,010 samples, 0.03%)</title><rect x="340.9" y="453" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="343.87" y="463.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="233.5" y="613" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="236.46" y="623.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="557.0" y="757" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="560.00" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.28%)</title><rect x="513.4" y="789" width="3.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="516.43" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="1376.6" y="853" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1379.63" y="863.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (30,303,030 samples, 0.09%)</title><rect x="549.2" y="581" width="1.3" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="552.23" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="48.8" y="981" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="51.82" y="991.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="1366.3" y="805" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1369.27" y="815.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.09%)</title><rect x="415.9" y="885" width="1.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="418.93" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (444,444,440 samples, 1.38%)</title><rect x="568.6" y="789" width="19.0" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="571.64" y="799.5" ></text>
+</g>
+<g >
+<title>select_collect (10,101,010 samples, 0.03%)</title><rect x="200.7" y="693" width="0.4" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="203.67" y="703.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (151,515,150 samples, 0.47%)</title><rect x="1012.5" y="693" width="6.5" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1015.54" y="703.5" ></text>
+</g>
+<g >
+<title>kfree (20,202,020 samples, 0.06%)</title><rect x="169.2" y="645" width="0.8" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="172.18" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="190.3" y="581" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="193.32" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="245.1" y="693" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="248.10" y="703.5" ></text>
+</g>
+<g >
+<title>__bio_add_page (10,101,010 samples, 0.03%)</title><rect x="434.9" y="469" width="0.4" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="437.91" y="479.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="352.1" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="355.09" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (80,808,080 samples, 0.25%)</title><rect x="198.5" y="773" width="3.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="201.52" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (252,525,250 samples, 0.78%)</title><rect x="417.7" y="837" width="10.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="420.66" y="847.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="542.3" y="693" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="545.33" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="179.1" y="629" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="182.10" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="292.6" y="613" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="295.56" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="293.0" y="629" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="295.99" y="639.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (30,303,030 samples, 0.09%)</title><rect x="15.6" y="981" width="1.3" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="18.61" y="991.5" ></text>
+</g>
+<g >
+<title>__wait_on_bit (10,101,010 samples, 0.03%)</title><rect x="253.7" y="597" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="256.73" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="450.9" y="789" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="453.88" y="799.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (30,303,030 samples, 0.09%)</title><rect x="308.1" y="693" width="1.3" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="311.09" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="1366.7" y="869" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1369.71" y="879.5" ></text>
+</g>
+<g >
+<title>sodium_bin2base64 (6,535,353,470 samples, 20.23%)</title><rect x="1049.2" y="933" width="279.1" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1052.21" y="943.5" >sodium_bin2base64</text>
+</g>
+<g >
+<title>srso_alias_return_thunk (10,101,010 samples, 0.03%)</title><rect x="63.9" y="885" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="66.92" y="895.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="559.2" y="709" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="562.15" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="510.4" y="517" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="513.41" y="527.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.03%)</title><rect x="292.6" y="597" width="0.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="295.56" y="607.5" ></text>
+</g>
+<g >
+<title>dup_mm.constprop.0 (686,868,680 samples, 2.13%)</title><rect x="634.2" y="773" width="29.3" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="637.21" y="783.5" >du..</text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="277.9" y="677" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="280.89" y="687.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="963.8" y="661" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="966.79" y="671.5" ></text>
+</g>
+<g >
+<title>remove (101,010,100 samples, 0.31%)</title><rect x="106.6" y="725" width="4.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="109.63" y="735.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.03%)</title><rect x="421.1" y="581" width="0.4" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="424.11" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="515.2" y="677" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="518.15" y="687.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.06%)</title><rect x="606.6" y="773" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="609.61" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="441.8" y="773" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="444.82" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="577.7" y="661" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="580.70" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_connect (40,404,040 samples, 0.13%)</title><rect x="1384.0" y="821" width="1.7" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1386.96" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="259.3" y="789" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="262.34" y="799.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="601.4" y="645" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="604.43" y="655.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (10,101,010 samples, 0.03%)</title><rect x="625.2" y="885" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="628.15" y="895.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="362.0" y="757" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="365.01" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mb_prefetch (10,101,010 samples, 0.03%)</title><rect x="584.6" y="597" width="0.4" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="587.60" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="445.3" y="725" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="448.27" y="735.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="196.8" y="709" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="199.79" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="170.0" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="173.04" y="783.5" ></text>
+</g>
+<g >
+<title>calloc@plt (10,101,010 samples, 0.03%)</title><rect x="1003.5" y="869" width="0.4" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="1006.48" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="217.1" y="741" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="220.06" y="751.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="597.1" y="757" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="600.11" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (50,505,050 samples, 0.16%)</title><rect x="135.5" y="645" width="2.2" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="138.53" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="546.6" y="437" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="549.64" y="447.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="277.9" y="517" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="280.89" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="259.8" y="693" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="262.77" y="703.5" ></text>
+</g>
+<g >
+<title>hv_send_ipi_self (30,303,030 samples, 0.09%)</title><rect x="1029.4" y="645" width="1.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1032.36" y="655.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (10,101,010 samples, 0.03%)</title><rect x="433.2" y="549" width="0.4" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="436.19" y="559.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="599.3" y="565" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="602.27" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (40,404,040 samples, 0.13%)</title><rect x="118.3" y="677" width="1.7" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="121.28" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (50,505,050 samples, 0.16%)</title><rect x="82.5" y="805" width="2.1" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="85.47" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="381.0" y="661" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="383.99" y="671.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.09%)</title><rect x="429.7" y="677" width="1.3" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="432.74" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="284.8" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="287.79" y="687.5" ></text>
+</g>
+<g >
+<title>file_close (70,707,070 samples, 0.22%)</title><rect x="1377.1" y="949" width="3.0" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1380.06" y="959.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="158.4" y="629" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="161.40" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="396.1" y="645" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="399.09" y="655.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="195.9" y="645" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="198.93" y="655.5" ></text>
+</g>
+<g >
+<title>nf_nat_init (80,808,080 samples, 0.25%)</title><rect x="1029.4" y="805" width="3.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1032.36" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.06%)</title><rect x="602.7" y="693" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="605.72" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_push (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="757" width="1.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1377.47" y="767.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.03%)</title><rect x="421.1" y="565" width="0.4" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="424.11" y="575.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="613.1" y="501" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="616.08" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (737,373,730 samples, 2.28%)</title><rect x="57.5" y="981" width="31.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="60.45" y="991.5" >do..</text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="239.1" y="629" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="242.07" y="639.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="604.0" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="607.02" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="151.5" y="533" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="154.49" y="543.5" ></text>
+</g>
+<g >
+<title>map_id_up (20,202,020 samples, 0.06%)</title><rect x="115.3" y="501" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="118.26" y="511.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="456.9" y="629" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="459.91" y="639.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.06%)</title><rect x="539.7" y="709" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="542.74" y="719.5" ></text>
+</g>
+<g >
+<title>create_empty_buffers (10,101,010 samples, 0.03%)</title><rect x="486.2" y="549" width="0.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="489.25" y="559.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="581" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1373.59" y="591.5" ></text>
+</g>
+<g >
+<title>nf_nat_ipv4_local_fn (10,101,010 samples, 0.03%)</title><rect x="10.9" y="645" width="0.4" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="13.86" y="655.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="560.4" y="613" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="563.45" y="623.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.03%)</title><rect x="614.8" y="597" width="0.4" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="617.80" y="607.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="427.1" y="453" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="430.15" y="463.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="170.0" y="725" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="173.04" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.03%)</title><rect x="140.3" y="565" width="0.4" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="143.28" y="575.5" ></text>
+</g>
+<g >
+<title>__wait_on_bit (10,101,010 samples, 0.03%)</title><rect x="484.1" y="405" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="487.09" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (40,404,040 samples, 0.13%)</title><rect x="190.8" y="613" width="1.7" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="193.75" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (40,404,040 samples, 0.13%)</title><rect x="207.1" y="821" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="210.14" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (20,202,020 samples, 0.06%)</title><rect x="486.2" y="581" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="489.25" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="389.2" y="613" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="392.19" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (202,020,200 samples, 0.63%)</title><rect x="129.9" y="741" width="8.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="132.92" y="751.5" ></text>
+</g>
+<g >
+<title>select_collect (20,202,020 samples, 0.06%)</title><rect x="186.4" y="661" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="189.44" y="671.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (10,101,010 samples, 0.03%)</title><rect x="427.1" y="597" width="0.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="430.15" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="461.2" y="773" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="464.23" y="783.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="522.1" y="581" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="525.05" y="591.5" ></text>
+</g>
+<g >
+<title>__fdget_pos (10,101,010 samples, 0.03%)</title><rect x="171.3" y="741" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="174.34" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="527.7" y="629" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="530.66" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (50,505,050 samples, 0.16%)</title><rect x="257.2" y="693" width="2.1" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="260.18" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (40,404,040 samples, 0.13%)</title><rect x="508.2" y="581" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="511.25" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_file_getattr (10,101,010 samples, 0.03%)</title><rect x="437.9" y="613" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="440.93" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="550.1" y="421" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="553.09" y="431.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.03%)</title><rect x="532.8" y="741" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="535.84" y="751.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="167.5" y="629" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="170.46" y="639.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="244.2" y="501" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="247.24" y="511.5" ></text>
+</g>
+<g >
+<title>fault_in_iov_iter_readable (10,101,010 samples, 0.03%)</title><rect x="222.7" y="629" width="0.4" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="225.67" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="220.5" y="757" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="223.52" y="767.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (30,303,030 samples, 0.09%)</title><rect x="613.1" y="741" width="1.3" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="616.08" y="751.5" ></text>
+</g>
+<g >
+<title>unlink (191,919,190 samples, 0.59%)</title><rect x="188.6" y="805" width="8.2" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="191.59" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="103.6" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="106.61" y="655.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="217.1" y="661" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="220.06" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="54.9" y="965" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="57.86" y="975.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="217.1" y="597" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="220.06" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_rename (40,404,040 samples, 0.13%)</title><rect x="466.0" y="693" width="1.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="468.97" y="703.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="393.9" y="453" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="396.93" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="202.0" y="853" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="204.97" y="863.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="676.5" y="757" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="679.49" y="767.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (20,202,020 samples, 0.06%)</title><rect x="963.4" y="821" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="966.36" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="901" width="0.4" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1373.59" y="911.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.03%)</title><rect x="562.2" y="645" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="565.17" y="655.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="419.8" y="693" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="422.82" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (101,010,100 samples, 0.31%)</title><rect x="1044.9" y="901" width="4.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1047.89" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.28%)</title><rect x="464.2" y="773" width="3.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="467.25" y="783.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="423.7" y="661" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="426.70" y="671.5" ></text>
+</g>
+<g >
+<title>do_rmdir (90,909,090 samples, 0.28%)</title><rect x="208.9" y="789" width="3.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="211.87" y="799.5" ></text>
+</g>
+<g >
+<title>security_file_permission (10,101,010 samples, 0.03%)</title><rect x="419.8" y="645" width="0.4" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" />
+<text x="422.82" y="655.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (20,202,020 samples, 0.06%)</title><rect x="730.4" y="853" width="0.9" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="733.41" y="863.5" ></text>
+</g>
+<g >
+<title>git_repository_free (10,101,010 samples, 0.03%)</title><rect x="381.4" y="805" width="0.5" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="384.42" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (60,606,060 samples, 0.19%)</title><rect x="630.3" y="773" width="2.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="633.33" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (40,404,040 samples, 0.13%)</title><rect x="253.3" y="677" width="1.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="256.30" y="687.5" ></text>
+</g>
+<g >
+<title>do_readlinkat (20,202,020 samples, 0.06%)</title><rect x="615.7" y="741" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="618.66" y="751.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (80,808,080 samples, 0.25%)</title><rect x="1020.7" y="741" width="3.5" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1023.73" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.09%)</title><rect x="557.9" y="709" width="1.3" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="560.86" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.47%)</title><rect x="392.6" y="757" width="6.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="395.64" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.03%)</title><rect x="487.5" y="533" width="0.5" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="490.54" y="543.5" ></text>
+</g>
+<g >
+<title>get_unused_fd_flags (10,101,010 samples, 0.03%)</title><rect x="315.4" y="709" width="0.5" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="318.42" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="381.4" y="773" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="384.42" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_socket (40,404,040 samples, 0.13%)</title><rect x="1380.5" y="901" width="1.7" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1383.51" y="911.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="416.4" y="725" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="419.36" y="735.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="172.2" y="709" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="175.20" y="719.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.03%)</title><rect x="593.2" y="661" width="0.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="596.23" y="671.5" ></text>
+</g>
+<g >
+<title>pthread_getspecific (10,101,010 samples, 0.03%)</title><rect x="264.9" y="789" width="0.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="267.95" y="799.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (60,606,060 samples, 0.19%)</title><rect x="1020.7" y="629" width="2.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1023.73" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="441.8" y="677" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="444.82" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="443.5" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="446.54" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="555.3" y="517" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="558.27" y="527.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="140.3" y="581" width="0.4" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="143.28" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="190.8" y="517" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="193.75" y="527.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="501.3" y="677" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="504.35" y="687.5" ></text>
+</g>
+<g >
+<title>git_reference_is_valid_name (10,101,010 samples, 0.03%)</title><rect x="494.0" y="837" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="497.01" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="227.0" y="757" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="229.99" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="629.9" y="693" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="632.90" y="703.5" ></text>
+</g>
+<g >
+<title>mkdir (151,515,150 samples, 0.47%)</title><rect x="626.4" y="885" width="6.5" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="629.45" y="895.5" ></text>
+</g>
+<g >
+<title>mkdir (161,616,160 samples, 0.50%)</title><rect x="475.0" y="709" width="6.9" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="478.03" y="719.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="355.5" y="693" width="0.5" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="358.54" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="272.7" y="725" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="275.71" y="735.5" ></text>
+</g>
+<g >
+<title>copyout (10,101,010 samples, 0.03%)</title><rect x="621.7" y="549" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="624.70" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (50,505,050 samples, 0.16%)</title><rect x="166.2" y="661" width="2.1" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="169.16" y="671.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (10,101,010 samples, 0.03%)</title><rect x="206.7" y="869" width="0.4" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="209.71" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (20,202,020 samples, 0.06%)</title><rect x="199.8" y="677" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="202.81" y="687.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="319.3" y="581" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="322.30" y="591.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="589.3" y="677" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="592.35" y="687.5" ></text>
+</g>
+<g >
+<title>__put_user_8 (10,101,010 samples, 0.03%)</title><rect x="129.9" y="725" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="132.92" y="735.5" ></text>
+</g>
+<g >
+<title>sockfd_lookup_light (10,101,010 samples, 0.03%)</title><rect x="15.2" y="837" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="18.18" y="847.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (10,101,010 samples, 0.03%)</title><rect x="1035.0" y="437" width="0.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1037.97" y="447.5" ></text>
+</g>
+<g >
+<title>str2hashbuf_signed (10,101,010 samples, 0.03%)</title><rect x="349.9" y="645" width="0.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="352.93" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="343.9" y="533" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="346.89" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="471.2" y="485" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="474.15" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="439.7" y="773" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="442.66" y="783.5" ></text>
+</g>
+<g >
+<title>mas_node_count_gfp (10,101,010 samples, 0.03%)</title><rect x="651.0" y="725" width="0.5" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="654.04" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.03%)</title><rect x="503.1" y="629" width="0.4" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="506.07" y="639.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="158.4" y="613" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="161.40" y="623.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="999.6" y="581" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1002.60" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="462.1" y="757" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="465.09" y="767.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (10,101,010 samples, 0.03%)</title><rect x="511.3" y="517" width="0.4" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="514.27" y="527.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.03%)</title><rect x="220.9" y="597" width="0.5" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="223.95" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="222.2" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="225.24" y="767.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="613.1" y="565" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="616.08" y="575.5" ></text>
+</g>
+<g >
+<title>eth_type_trans (10,101,010 samples, 0.03%)</title><rect x="14.3" y="549" width="0.4" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="17.31" y="559.5" ></text>
+</g>
+<g >
+<title>process_backlog (70,707,070 samples, 0.22%)</title><rect x="11.3" y="501" width="3.0" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="14.29" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="459.9" y="597" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="462.93" y="607.5" ></text>
+</g>
+<g >
+<title>remove (191,919,190 samples, 0.59%)</title><rect x="188.6" y="821" width="8.2" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="191.59" y="831.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="613.1" y="533" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="616.08" y="543.5" ></text>
+</g>
+<g >
+<title>get_obj_cgroup_from_current (10,101,010 samples, 0.03%)</title><rect x="463.4" y="517" width="0.4" height="15.0" fill="rgb(0,206,71)" rx="2" ry="2" />
+<text x="466.39" y="527.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_destroy (212,121,210 samples, 0.66%)</title><rect x="732.1" y="965" width="9.1" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="735.14" y="975.5" ></text>
+</g>
+<g >
+<title>ip_local_out (10,101,010 samples, 0.03%)</title><rect x="1021.6" y="213" width="0.4" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1024.60" y="223.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (20,202,020 samples, 0.06%)</title><rect x="210.2" y="677" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="213.16" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="612.6" y="629" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="615.64" y="639.5" ></text>
+</g>
+<g >
+<title>generic_set_encrypted_ci_d_ops (10,101,010 samples, 0.03%)</title><rect x="325.3" y="629" width="0.5" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="328.34" y="639.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="506.5" y="725" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="509.52" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.19%)</title><rect x="253.3" y="821" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="256.30" y="831.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="607.9" y="565" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="610.90" y="575.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="992.7" y="645" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="995.69" y="655.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="71.7" y="709" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="74.69" y="719.5" ></text>
+</g>
+<g >
+<title>__do_softirq (30,303,030 samples, 0.09%)</title><rect x="1387.4" y="597" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1390.41" y="607.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="613.9" y="645" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="616.94" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="233.0" y="677" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="236.03" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="426.7" y="437" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="429.72" y="447.5" ></text>
+</g>
+<g >
+<title>task_work_run (151,515,150 samples, 0.47%)</title><rect x="30.3" y="789" width="6.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="33.28" y="799.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="118.3" y="645" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="121.28" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="190.3" y="629" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="193.32" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="244.7" y="725" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="247.67" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (212,121,210 samples, 0.66%)</title><rect x="406.0" y="837" width="9.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="409.01" y="847.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.06%)</title><rect x="730.4" y="837" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="733.41" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="198.5" y="645" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="201.52" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="603.6" y="693" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="606.59" y="703.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.03%)</title><rect x="1009.5" y="357" width="0.4" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1012.52" y="367.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="411.2" y="629" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="414.19" y="639.5" ></text>
+</g>
+<g >
+<title>fdopendir (20,202,020 samples, 0.06%)</title><rect x="111.4" y="757" width="0.8" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="114.38" y="767.5" ></text>
+</g>
+<g >
+<title>lookup_fast (20,202,020 samples, 0.06%)</title><rect x="324.0" y="645" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="327.05" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (70,707,070 samples, 0.22%)</title><rect x="400.4" y="709" width="3.0" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="403.40" y="719.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="549" width="0.9" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1031.50" y="559.5" ></text>
+</g>
+<g >
+<title>write (40,404,040 samples, 0.13%)</title><rect x="360.3" y="741" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="363.28" y="751.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (30,303,030 samples, 0.09%)</title><rect x="623.4" y="709" width="1.3" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="626.43" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.22%)</title><rect x="378.4" y="773" width="3.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="381.40" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="468.1" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="471.13" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_check_req (10,101,010 samples, 0.03%)</title><rect x="1382.7" y="325" width="0.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1385.67" y="335.5" ></text>
+</g>
+<g >
+<title>inet_sk_rebuild_header (10,101,010 samples, 0.03%)</title><rect x="1382.2" y="693" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1385.24" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="467.3" y="597" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="470.27" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.06%)</title><rect x="222.2" y="725" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="225.24" y="735.5" ></text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.06%)</title><rect x="103.6" y="597" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="106.61" y="607.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="286.9" y="677" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="289.95" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (10,101,010 samples, 0.03%)</title><rect x="12.2" y="325" width="0.4" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="15.16" y="335.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="378.4" y="725" width="2.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="381.40" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (40,404,040 samples, 0.13%)</title><rect x="231.3" y="693" width="1.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="234.30" y="703.5" ></text>
+</g>
+<g >
+<title>iput (40,404,040 samples, 0.13%)</title><rect x="563.0" y="629" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="566.04" y="639.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.03%)</title><rect x="1316.7" y="725" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1319.66" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="140.7" y="597" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="143.71" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="527.7" y="661" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="530.66" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="384.0" y="709" width="2.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="387.01" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="482.4" y="437" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="485.37" y="447.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="607.5" y="677" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="610.47" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.13%)</title><rect x="603.6" y="757" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="606.59" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.03%)</title><rect x="585.5" y="677" width="0.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="588.47" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (20,202,020 samples, 0.06%)</title><rect x="224.8" y="645" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="227.83" y="655.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="276.2" y="725" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="279.16" y="735.5" ></text>
+</g>
+<g >
+<title>git_error_clear (10,101,010 samples, 0.03%)</title><rect x="264.9" y="805" width="0.5" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="267.95" y="815.5" ></text>
+</g>
+<g >
+<title>link (40,404,040 samples, 0.13%)</title><rect x="274.4" y="837" width="1.8" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="277.44" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (131,313,130 samples, 0.41%)</title><rect x="10.0" y="869" width="5.6" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="13.00" y="879.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="365.0" y="517" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="368.03" y="527.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="999.6" y="485" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1002.60" y="495.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (10,101,010 samples, 0.03%)</title><rect x="1377.1" y="693" width="0.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1380.06" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_link (10,101,010 samples, 0.03%)</title><rect x="412.1" y="709" width="0.4" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="415.05" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="595.8" y="757" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="598.82" y="767.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="589.3" y="645" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="592.35" y="655.5" ></text>
+</g>
+<g >
+<title>iterate_dir (30,303,030 samples, 0.09%)</title><rect x="197.2" y="773" width="1.3" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="200.22" y="783.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.13%)</title><rect x="316.3" y="789" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="319.28" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="312.8" y="773" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="315.83" y="783.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="510.8" y="469" width="0.5" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="513.84" y="479.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.03%)</title><rect x="498.8" y="661" width="0.4" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="501.76" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="382.7" y="693" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="385.72" y="703.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="962.9" y="805" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="965.93" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="378.8" y="709" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="381.83" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="277.9" y="741" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="280.89" y="751.5" ></text>
+</g>
+<g >
+<title>security_inode_free (10,101,010 samples, 0.03%)</title><rect x="544.1" y="549" width="0.4" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="547.05" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="412.1" y="597" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="415.05" y="607.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="196.8" y="773" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="199.79" y="783.5" ></text>
+</g>
+<g >
+<title>__blk_mq_end_request (10,101,010 samples, 0.03%)</title><rect x="613.1" y="421" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="616.08" y="431.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.06%)</title><rect x="623.9" y="677" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="626.86" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="431.0" y="757" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="434.03" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="362.9" y="581" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="365.87" y="591.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="709" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1031.50" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="369.3" y="725" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="372.34" y="735.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="1026.8" y="597" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1029.77" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="482.8" y="469" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="485.80" y="479.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="201.5" y="741" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="204.53" y="751.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="176.9" y="581" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="179.95" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="515.6" y="565" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="518.58" y="575.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="158.4" y="645" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="161.40" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="334.0" y="661" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="336.97" y="671.5" ></text>
+</g>
+<g >
+<title>alloc_file_pseudo (40,404,040 samples, 0.13%)</title><rect x="39.8" y="789" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="42.77" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="266.7" y="709" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="269.67" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="390.1" y="661" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="393.05" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_ext_search_right (10,101,010 samples, 0.03%)</title><rect x="52.3" y="789" width="0.4" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="55.28" y="799.5" ></text>
+</g>
+<g >
+<title>post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="1000.0" y="629" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1003.03" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="507.4" y="741" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="510.39" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="551.4" y="709" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="554.39" y="719.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.06%)</title><rect x="602.7" y="645" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="605.72" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.06%)</title><rect x="123.0" y="597" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="126.02" y="607.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (20,202,020 samples, 0.06%)</title><rect x="218.8" y="773" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="221.79" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.03%)</title><rect x="1026.8" y="677" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1029.77" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="601.9" y="757" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="604.86" y="767.5" ></text>
+</g>
+<g >
+<title>kfree (10,101,010 samples, 0.03%)</title><rect x="29.0" y="741" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="31.98" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="350.4" y="853" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="353.36" y="863.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (80,808,080 samples, 0.25%)</title><rect x="11.3" y="629" width="3.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="14.29" y="639.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (20,202,020 samples, 0.06%)</title><rect x="1387.4" y="469" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1390.41" y="479.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="853" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1373.59" y="863.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="323.2" y="661" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="326.19" y="671.5" ></text>
+</g>
+<g >
+<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="962.9" y="773" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="965.93" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="373.7" y="645" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="376.66" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="502.6" y="677" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="505.64" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="140.3" y="597" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="143.28" y="607.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="601.4" y="613" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="604.43" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="147.2" y="565" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="150.18" y="575.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="641.5" y="645" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="644.55" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="249.4" y="597" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="252.42" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.22%)</title><rect x="445.3" y="757" width="3.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="448.27" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (20,202,020 samples, 0.06%)</title><rect x="83.3" y="773" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="86.34" y="783.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="726.5" y="789" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="729.53" y="799.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="138.1" y="709" width="0.5" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="141.12" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="581.2" y="597" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="584.15" y="607.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (10,101,010 samples, 0.03%)</title><rect x="76.9" y="757" width="0.4" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="79.86" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="336.1" y="757" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="339.13" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_synsent_state_process (40,404,040 samples, 0.13%)</title><rect x="1382.2" y="741" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1385.24" y="751.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="541.9" y="741" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="544.90" y="751.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="58.3" y="885" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="61.32" y="895.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.13%)</title><rect x="79.5" y="837" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="82.45" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="151.1" y="549" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="154.06" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="187.7" y="773" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="190.73" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="403.4" y="709" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="406.42" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="103.6" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="106.61" y="671.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="367.6" y="677" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="370.62" y="687.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.03%)</title><rect x="114.4" y="565" width="0.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="117.40" y="575.5" ></text>
+</g>
+<g >
+<title>server_listen_thread (575,757,570 samples, 1.78%)</title><rect x="22.5" y="981" width="24.6" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="25.51" y="991.5" >s..</text>
+</g>
+<g >
+<title>__dma_map_sg_attrs (10,101,010 samples, 0.03%)</title><rect x="344.3" y="309" width="0.5" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="347.32" y="319.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (40,404,040 samples, 0.13%)</title><rect x="1021.2" y="389" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1024.17" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (20,202,020 samples, 0.06%)</title><rect x="271.0" y="661" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="273.99" y="671.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (10,101,010 samples, 0.03%)</title><rect x="1021.6" y="261" width="0.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1024.60" y="271.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="963.8" y="677" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="966.79" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="281.3" y="693" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="284.34" y="703.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (40,404,040 samples, 0.13%)</title><rect x="1021.2" y="405" width="1.7" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1024.17" y="415.5" ></text>
+</g>
+<g >
+<title>get_mem_cgroup_from_mm (10,101,010 samples, 0.03%)</title><rect x="995.7" y="693" width="0.4" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="998.71" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="615.2" y="789" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="618.23" y="799.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (20,202,020 samples, 0.06%)</title><rect x="556.1" y="709" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="559.13" y="719.5" ></text>
+</g>
+<g >
+<title>opendir (10,101,010 samples, 0.03%)</title><rect x="405.6" y="853" width="0.4" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="408.58" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="414.6" y="709" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="417.64" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="560.4" y="629" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="563.45" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="217.1" y="613" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="220.06" y="623.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.03%)</title><rect x="578.1" y="629" width="0.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="581.13" y="639.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.03%)</title><rect x="1363.3" y="645" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1366.25" y="655.5" ></text>
+</g>
+<g >
+<title>git_object_lookup_prefix (40,404,040 samples, 0.13%)</title><rect x="277.5" y="885" width="1.7" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="280.46" y="895.5" ></text>
+</g>
+<g >
+<title>generic_write_end (10,101,010 samples, 0.03%)</title><rect x="335.3" y="581" width="0.4" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="338.26" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="449.1" y="613" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="452.15" y="623.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="421" width="0.4" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1027.19" y="431.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="358.1" y="501" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="361.13" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="185.1" y="469" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="188.14" y="479.5" ></text>
+</g>
+<g >
+<title>sysvec_reschedule_ipi (10,101,010 samples, 0.03%)</title><rect x="250.3" y="693" width="0.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="253.28" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.03%)</title><rect x="611.8" y="629" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="614.78" y="639.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.03%)</title><rect x="549.2" y="389" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="552.23" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.03%)</title><rect x="114.4" y="597" width="0.4" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="117.40" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="398.7" y="629" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="401.68" y="639.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="569.9" y="613" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="572.94" y="623.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="421" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1031.50" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (70,707,070 samples, 0.22%)</title><rect x="577.3" y="725" width="3.0" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="580.27" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="362.9" y="741" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="365.87" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (20,202,020 samples, 0.06%)</title><rect x="340.4" y="501" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="343.44" y="511.5" ></text>
+</g>
+<g >
+<title>__sock_release (70,707,070 samples, 0.22%)</title><rect x="1377.1" y="773" width="3.0" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1380.06" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_empty_dir (10,101,010 samples, 0.03%)</title><rect x="142.0" y="645" width="0.4" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="145.00" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="263.2" y="741" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="266.22" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_send_fin (10,101,010 samples, 0.03%)</title><rect x="1027.2" y="709" width="0.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1030.21" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (111,111,110 samples, 0.34%)</title><rect x="181.7" y="629" width="4.7" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="184.69" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="388.8" y="597" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="391.76" y="607.5" ></text>
+</g>
+<g >
+<title>do_anonymous_page (282,828,280 samples, 0.88%)</title><rect x="1351.6" y="773" width="12.1" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1354.61" y="783.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.03%)</title><rect x="41.9" y="901" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="44.92" y="911.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="180.8" y="629" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="183.83" y="639.5" ></text>
+</g>
+<g >
+<title>__check_object_size (20,202,020 samples, 0.06%)</title><rect x="285.7" y="645" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="288.65" y="655.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (20,202,020 samples, 0.06%)</title><rect x="96.7" y="789" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="99.71" y="799.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="450.0" y="677" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="453.01" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="614.4" y="725" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="617.37" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="444.8" y="757" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="447.84" y="767.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="159.7" y="709" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="162.69" y="719.5" ></text>
+</g>
+<g >
+<title>do_futex (10,101,010 samples, 0.03%)</title><rect x="26.8" y="837" width="0.5" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="29.82" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (30,303,030 samples, 0.09%)</title><rect x="464.2" y="629" width="1.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="467.25" y="639.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (20,202,020 samples, 0.06%)</title><rect x="1375.8" y="949" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1378.76" y="959.5" ></text>
+</g>
+<g >
+<title>folio_wait_bit (10,101,010 samples, 0.03%)</title><rect x="427.1" y="533" width="0.5" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="430.15" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="467.3" y="645" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="470.27" y="655.5" ></text>
+</g>
+<g >
+<title>do_anonymous_page (272,727,270 samples, 0.84%)</title><rect x="989.2" y="709" width="11.7" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="992.24" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="218.8" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="221.79" y="799.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="447.9" y="709" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="450.86" y="719.5" ></text>
+</g>
+<g >
+<title>d_walk (10,101,010 samples, 0.03%)</title><rect x="211.0" y="741" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="214.03" y="751.5" ></text>
+</g>
+<g >
+<title>__napi_poll (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="485" width="1.3" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1377.47" y="495.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="428.9" y="773" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="431.87" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="626.9" y="661" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="629.88" y="671.5" ></text>
+</g>
+<g >
+<title>security_path_mknod (10,101,010 samples, 0.03%)</title><rect x="88.1" y="869" width="0.4" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="91.08" y="879.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (10,101,010 samples, 0.03%)</title><rect x="204.6" y="693" width="0.4" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="207.55" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="98.4" y="805" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="101.43" y="815.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="485.4" y="565" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="488.39" y="575.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (545,454,540 samples, 1.69%)</title><rect x="1343.0" y="869" width="23.3" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1345.98" y="879.5" >a..</text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="293.9" y="597" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="296.85" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="620.4" y="693" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="623.41" y="703.5" ></text>
+</g>
+<g >
+<title>net_send_part (60,606,060 samples, 0.19%)</title><rect x="1373.2" y="901" width="2.6" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1376.18" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.06%)</title><rect x="146.7" y="597" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="149.75" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="363.3" y="565" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="366.30" y="575.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.03%)</title><rect x="561.7" y="709" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="564.74" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="228.3" y="693" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="231.28" y="703.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="444.0" y="597" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="446.97" y="607.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="111.4" y="629" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="114.38" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.03%)</title><rect x="547.9" y="197" width="0.5" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="550.94" y="207.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="417.2" y="869" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="420.23" y="879.5" ></text>
+</g>
+<g >
+<title>anon_vma_clone (50,505,050 samples, 0.16%)</title><rect x="636.4" y="725" width="2.1" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="639.37" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="501.3" y="757" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="504.35" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (151,515,150 samples, 0.47%)</title><rect x="626.4" y="901" width="6.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="629.45" y="911.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="200.2" y="549" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="203.24" y="559.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="264.5" y="661" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="267.52" y="671.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="78.2" y="757" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="81.16" y="767.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="622.1" y="757" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="625.14" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (30,303,030 samples, 0.09%)</title><rect x="483.2" y="661" width="1.3" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="486.23" y="671.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.06%)</title><rect x="488.0" y="757" width="0.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="490.97" y="767.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="321.9" y="693" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="324.89" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="390.9" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="393.91" y="591.5" ></text>
+</g>
+<g >
+<title>srso_alias_return_thunk (10,101,010 samples, 0.03%)</title><rect x="561.7" y="629" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="564.74" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (141,414,140 samples, 0.44%)</title><rect x="475.5" y="613" width="6.0" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="478.46" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (20,202,020 samples, 0.06%)</title><rect x="505.7" y="533" width="0.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="508.66" y="543.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="457.3" y="661" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="460.35" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.03%)</title><rect x="54.4" y="869" width="0.5" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="57.43" y="879.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="123.0" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="126.02" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.03%)</title><rect x="106.2" y="549" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="109.20" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="552.3" y="725" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="555.25" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="406.9" y="725" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="409.87" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="617.8" y="693" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="620.82" y="703.5" ></text>
+</g>
+<g >
+<title>alloc_buffer_head (10,101,010 samples, 0.03%)</title><rect x="463.4" y="549" width="0.4" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="466.39" y="559.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="397.4" y="485" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="400.38" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.25%)</title><rect x="241.7" y="789" width="3.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="244.65" y="799.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="220.9" y="645" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="223.95" y="655.5" ></text>
+</g>
+<g >
+<title>git_repository__cleanup (10,101,010 samples, 0.03%)</title><rect x="459.1" y="821" width="0.4" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="462.07" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="563.5" y="565" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="566.47" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_statx (111,111,110 samples, 0.34%)</title><rect x="534.6" y="741" width="4.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="537.56" y="751.5" ></text>
+</g>
+<g >
+<title>d_splice_alias (10,101,010 samples, 0.03%)</title><rect x="523.8" y="645" width="0.4" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="526.78" y="655.5" ></text>
+</g>
+<g >
+<title>tlb_remove_table_rcu (10,101,010 samples, 0.03%)</title><rect x="603.6" y="485" width="0.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="606.59" y="495.5" ></text>
+</g>
+<g >
+<title>call_filldir (10,101,010 samples, 0.03%)</title><rect x="112.7" y="629" width="0.4" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="115.67" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (141,414,140 samples, 0.44%)</title><rect x="562.6" y="725" width="6.0" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="565.60" y="735.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (20,202,020 samples, 0.06%)</title><rect x="96.7" y="805" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="99.71" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.22%)</title><rect x="365.5" y="773" width="3.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="368.46" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="917" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1030.64" y="927.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="105.3" y="677" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="108.34" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="612.6" y="725" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="615.64" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="147.2" y="533" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="150.18" y="543.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (70,707,070 samples, 0.22%)</title><rect x="23.8" y="885" width="3.0" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="26.80" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="372.8" y="725" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="375.79" y="735.5" ></text>
+</g>
+<g >
+<title>net_recv_buf (20,202,020 samples, 0.06%)</title><rect x="1372.3" y="885" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1375.31" y="895.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.03%)</title><rect x="511.3" y="357" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="514.27" y="367.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.06%)</title><rect x="445.7" y="613" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="448.70" y="623.5" ></text>
+</g>
+<g >
+<title>d_lru_add (10,101,010 samples, 0.03%)</title><rect x="474.2" y="517" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="477.17" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="437.9" y="709" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="440.93" y="719.5" ></text>
+</g>
+<g >
+<title>get_random_u8 (10,101,010 samples, 0.03%)</title><rect x="1032.8" y="773" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1035.81" y="783.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="489.7" y="613" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="492.70" y="623.5" ></text>
+</g>
+<g >
+<title>vma_alloc_folio (10,101,010 samples, 0.03%)</title><rect x="127.8" y="597" width="0.4" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="130.77" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_release_dir (20,202,020 samples, 0.06%)</title><rect x="313.7" y="661" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="316.69" y="671.5" ></text>
+</g>
+<g >
+<title>mast_fill_bnode (20,202,020 samples, 0.06%)</title><rect x="654.9" y="629" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="657.92" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="625.2" y="853" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="628.15" y="863.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="217.1" y="725" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="220.06" y="735.5" ></text>
+</g>
+<g >
+<title>should_failslab (10,101,010 samples, 0.03%)</title><rect x="60.0" y="853" width="0.5" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="63.04" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="121.3" y="757" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="124.30" y="767.5" ></text>
+</g>
+<g >
+<title>getdents64 (40,404,040 samples, 0.13%)</title><rect x="112.2" y="741" width="1.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="115.24" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="399.5" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="402.54" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="620.8" y="773" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="623.84" y="783.5" ></text>
+</g>
+<g >
+<title>ip_rcv (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="437" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1027.19" y="447.5" ></text>
+</g>
+<g >
+<title>getdents64 (10,101,010 samples, 0.03%)</title><rect x="611.8" y="725" width="0.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="614.78" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="236.5" y="693" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="239.48" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (80,808,080 samples, 0.25%)</title><rect x="581.6" y="677" width="3.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="584.58" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="179.1" y="597" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="182.10" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.41%)</title><rect x="609.6" y="805" width="5.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="612.62" y="815.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="437.9" y="741" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="440.93" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (30,303,030 samples, 0.09%)</title><rect x="334.4" y="645" width="1.3" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="337.40" y="655.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.03%)</title><rect x="584.2" y="341" width="0.4" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="587.17" y="351.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (484,848,480 samples, 1.50%)</title><rect x="469.0" y="773" width="20.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="471.99" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="295.1" y="501" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="298.15" y="511.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="188.2" y="773" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="191.16" y="783.5" ></text>
+</g>
+<g >
+<title>path_get (10,101,010 samples, 0.03%)</title><rect x="62.2" y="853" width="0.4" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="65.20" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.03%)</title><rect x="564.3" y="533" width="0.5" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="567.33" y="543.5" ></text>
+</g>
+<g >
+<title>locks_remove_file (10,101,010 samples, 0.03%)</title><rect x="29.4" y="757" width="0.4" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="32.41" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.03%)</title><rect x="117.8" y="501" width="0.5" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="120.85" y="511.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="447.4" y="645" width="0.5" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="450.42" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="415.5" y="853" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="418.50" y="863.5" ></text>
+</g>
+<g >
+<title>_IO_default_xsputn (10,101,010 samples, 0.03%)</title><rect x="617.8" y="677" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="620.82" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (20,202,020 samples, 0.06%)</title><rect x="590.2" y="837" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="593.21" y="847.5" ></text>
+</g>
+<g >
+<title>git_refdb_free (10,101,010 samples, 0.03%)</title><rect x="399.1" y="757" width="0.4" height="15.0" fill="rgb(0,201,46)" rx="2" ry="2" />
+<text x="402.11" y="767.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="98.4" y="773" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="101.43" y="783.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (10,101,010 samples, 0.03%)</title><rect x="442.7" y="629" width="0.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="445.68" y="639.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.03%)</title><rect x="281.3" y="597" width="0.5" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="284.34" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.06%)</title><rect x="231.7" y="565" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="234.73" y="575.5" ></text>
+</g>
+<g >
+<title>mas_walk (10,101,010 samples, 0.03%)</title><rect x="1327.0" y="869" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1330.02" y="879.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="588.5" y="693" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="591.49" y="703.5" ></text>
+</g>
+<g >
+<title>link (20,202,020 samples, 0.06%)</title><rect x="488.8" y="757" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="491.84" y="767.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (333,333,330 samples, 1.03%)</title><rect x="1350.3" y="821" width="14.2" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1353.31" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="473.7" y="501" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="476.74" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.41%)</title><rect x="302.5" y="773" width="5.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="305.48" y="783.5" ></text>
+</g>
+<g >
+<title>mas_wr_store_setup (10,101,010 samples, 0.03%)</title><rect x="656.2" y="741" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="659.21" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="494.4" y="773" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="497.45" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="334.4" y="725" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="337.40" y="735.5" ></text>
+</g>
+<g >
+<title>make_pollfds (10,101,010 samples, 0.03%)</title><rect x="36.7" y="949" width="0.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="39.75" y="959.5" ></text>
+</g>
+<g >
+<title>mas_wr_bnode (50,505,050 samples, 0.16%)</title><rect x="653.6" y="693" width="2.2" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="656.63" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="190.3" y="645" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="193.32" y="655.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (40,404,040 samples, 0.13%)</title><rect x="464.2" y="677" width="1.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="467.25" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (30,303,030 samples, 0.09%)</title><rect x="535.4" y="613" width="1.3" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="538.43" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="221.8" y="725" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="224.81" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="151.9" y="485" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="154.93" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (80,808,080 samples, 0.25%)</title><rect x="433.2" y="693" width="3.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="436.19" y="703.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="367.6" y="597" width="0.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="370.62" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="614.8" y="741" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="617.80" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="243.8" y="725" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="246.81" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="611.4" y="709" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="614.35" y="719.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (20,202,020 samples, 0.06%)</title><rect x="1048.3" y="837" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1051.34" y="847.5" ></text>
+</g>
+<g >
+<title>lock_vma_under_rcu (10,101,010 samples, 0.03%)</title><rect x="1326.6" y="869" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1329.59" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="378.4" y="757" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="381.40" y="767.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.06%)</title><rect x="442.7" y="661" width="0.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="445.68" y="671.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.03%)</title><rect x="311.5" y="565" width="0.5" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="314.54" y="575.5" ></text>
+</g>
+<g >
+<title>_compound_head (10,101,010 samples, 0.03%)</title><rect x="689.4" y="629" width="0.5" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="692.43" y="639.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.03%)</title><rect x="466.0" y="469" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="468.97" y="479.5" ></text>
+</g>
+<g >
+<title>folio_add_new_anon_rmap (10,101,010 samples, 0.03%)</title><rect x="1323.1" y="805" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1326.14" y="815.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (10,101,010 samples, 0.03%)</title><rect x="536.3" y="581" width="0.4" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="539.29" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="441.8" y="693" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="444.82" y="703.5" ></text>
+</g>
+<g >
+<title>__release_sock (40,404,040 samples, 0.13%)</title><rect x="1382.2" y="789" width="1.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1385.24" y="799.5" ></text>
+</g>
+<g >
+<title>scsi_dispatch_cmd (10,101,010 samples, 0.03%)</title><rect x="344.3" y="357" width="0.5" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="347.32" y="367.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (20,202,020 samples, 0.06%)</title><rect x="963.4" y="709" width="0.8" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="966.36" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (30,303,030 samples, 0.09%)</title><rect x="554.4" y="581" width="1.3" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="557.41" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.06%)</title><rect x="539.7" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="542.74" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (60,606,060 samples, 0.19%)</title><rect x="339.1" y="565" width="2.6" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="342.15" y="575.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (30,303,030 samples, 0.09%)</title><rect x="59.2" y="869" width="1.3" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="62.18" y="879.5" ></text>
+</g>
+<g >
+<title>inode_set_flags (10,101,010 samples, 0.03%)</title><rect x="74.7" y="837" width="0.4" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="77.71" y="847.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="326.6" y="581" width="0.5" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="329.64" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="190.8" y="485" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="193.75" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="316.3" y="773" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="319.28" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (191,919,190 samples, 0.59%)</title><rect x="428.4" y="805" width="8.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="431.44" y="815.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="422.4" y="709" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="425.40" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.03%)</title><rect x="632.1" y="645" width="0.4" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="635.06" y="655.5" ></text>
+</g>
+<g >
+<title>[libsodium.so.23.3.0] (4,383,838,340 samples, 13.57%)</title><rect x="1131.6" y="917" width="187.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1134.60" y="927.5" >[libsodium.so.23.3.0]</text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="507.8" y="709" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="510.82" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.22%)</title><rect x="365.5" y="741" width="3.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="368.46" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="283.1" y="789" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="286.07" y="799.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_send (60,606,060 samples, 0.19%)</title><rect x="1373.2" y="965" width="2.6" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1376.18" y="975.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="1327.4" y="853" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1330.45" y="863.5" ></text>
+</g>
+<g >
+<title>__schedule (595,959,590 samples, 1.84%)</title><rect x="693.7" y="757" width="25.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="696.74" y="767.5" >_..</text>
+</g>
+<g >
+<title>filemap_release_folio (10,101,010 samples, 0.03%)</title><rect x="547.9" y="469" width="0.5" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="550.94" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.03%)</title><rect x="727.8" y="725" width="0.5" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="730.82" y="735.5" ></text>
+</g>
+<g >
+<title>dd_request_merge (10,101,010 samples, 0.03%)</title><rect x="466.4" y="405" width="0.4" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="469.41" y="415.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="488.0" y="709" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="490.97" y="719.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="555.7" y="693" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="558.70" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="277.5" y="805" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="280.46" y="815.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="965.5" y="709" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="968.52" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_fc_track_inode (10,101,010 samples, 0.03%)</title><rect x="72.6" y="805" width="0.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="75.55" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_validate_incoming (10,101,010 samples, 0.03%)</title><rect x="1010.8" y="693" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1013.81" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="481.9" y="693" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="484.93" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (10,101,010 samples, 0.03%)</title><rect x="412.5" y="677" width="0.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="415.48" y="687.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (10,101,010 samples, 0.03%)</title><rect x="405.6" y="837" width="0.4" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="408.58" y="847.5" ></text>
+</g>
+<g >
+<title>json_object_new_string (60,606,060 samples, 0.19%)</title><rect x="1367.6" y="901" width="2.6" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1370.57" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.06%)</title><rect x="172.2" y="693" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="175.20" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="456.9" y="677" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="459.91" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (30,303,030 samples, 0.09%)</title><rect x="176.1" y="597" width="1.3" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="179.08" y="607.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="591.5" y="741" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="594.51" y="751.5" ></text>
+</g>
+<g >
+<title>allocate_slab (10,101,010 samples, 0.03%)</title><rect x="489.7" y="517" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="492.70" y="527.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (10,101,010 samples, 0.03%)</title><rect x="1004.8" y="725" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1007.77" y="735.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (20,202,020 samples, 0.06%)</title><rect x="1327.4" y="901" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1330.45" y="911.5" ></text>
+</g>
+<g >
+<title>filename_lookup (101,010,100 samples, 0.31%)</title><rect x="322.8" y="709" width="4.3" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="325.75" y="719.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.03%)</title><rect x="614.8" y="581" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="617.80" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="369.3" y="741" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="372.34" y="751.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.03%)</title><rect x="444.4" y="725" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="447.40" y="735.5" ></text>
+</g>
+<g >
+<title>__sys_accept4 (80,808,080 samples, 0.25%)</title><rect x="38.5" y="837" width="3.4" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="41.47" y="847.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (10,101,010 samples, 0.03%)</title><rect x="1011.7" y="341" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1014.68" y="351.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="693" width="1.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1385.67" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (141,414,140 samples, 0.44%)</title><rect x="321.5" y="757" width="6.0" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="324.46" y="767.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.03%)</title><rect x="1036.3" y="885" width="0.4" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1039.26" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_da_update_reserve_space (10,101,010 samples, 0.03%)</title><rect x="346.5" y="485" width="0.4" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="349.48" y="495.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="415.9" y="725" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="418.93" y="735.5" ></text>
+</g>
+<g >
+<title>lockref_get (10,101,010 samples, 0.03%)</title><rect x="61.8" y="853" width="0.4" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="64.77" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="324.9" y="613" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="327.91" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="597.5" y="741" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="600.55" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (525,252,520 samples, 1.63%)</title><rect x="1004.3" y="837" width="22.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1007.34" y="847.5" >_..</text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="214.9" y="853" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="217.91" y="863.5" ></text>
+</g>
+<g >
+<title>dup_mmap (656,565,650 samples, 2.03%)</title><rect x="634.2" y="757" width="28.1" height="15.0" fill="rgb(0,201,46)" rx="2" ry="2" />
+<text x="637.21" y="767.5" >d..</text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="1363.3" y="581" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1366.25" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (50,505,050 samples, 0.16%)</title><rect x="198.5" y="693" width="2.2" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="201.52" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="126.9" y="757" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="129.91" y="767.5" ></text>
+</g>
+<g >
+<title>dentry_kill (40,404,040 samples, 0.13%)</title><rect x="464.2" y="709" width="1.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="467.25" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (20,202,020 samples, 0.06%)</title><rect x="197.7" y="725" width="0.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="200.65" y="735.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.03%)</title><rect x="197.7" y="661" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="200.65" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (90,909,090 samples, 0.28%)</title><rect x="424.1" y="741" width="3.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="427.13" y="751.5" ></text>
+</g>
+<g >
+<title>pte_alloc_one (20,202,020 samples, 0.06%)</title><rect x="641.5" y="677" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="644.55" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (121,212,120 samples, 0.38%)</title><rect x="302.9" y="725" width="5.2" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="305.91" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="368.9" y="741" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="371.91" y="751.5" ></text>
+</g>
+<g >
+<title>destroy_inode (10,101,010 samples, 0.03%)</title><rect x="177.4" y="661" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="180.38" y="671.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (20,202,020 samples, 0.06%)</title><rect x="725.7" y="837" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="728.67" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (111,111,110 samples, 0.34%)</title><rect x="139.8" y="661" width="4.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="142.85" y="671.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="610.1" y="709" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="613.06" y="719.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="210.6" y="597" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="213.59" y="607.5" ></text>
+</g>
+<g >
+<title>sg_free_table_chained (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="565" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1373.59" y="575.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="277.9" y="533" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="280.89" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="66.1" y="853" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="69.08" y="863.5" ></text>
+</g>
+<g >
+<title>cfree (20,202,020 samples, 0.06%)</title><rect x="98.0" y="821" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="101.00" y="831.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (121,212,120 samples, 0.38%)</title><rect x="31.1" y="597" width="5.2" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="34.14" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="382.7" y="613" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="385.72" y="623.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (40,404,040 samples, 0.13%)</title><rect x="1034.1" y="709" width="1.7" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1037.11" y="719.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (30,303,030 samples, 0.09%)</title><rect x="539.3" y="821" width="1.3" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="542.31" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="117.4" y="501" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="120.41" y="511.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="396.1" y="501" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="399.09" y="511.5" ></text>
+</g>
+<g >
+<title>unlink_cb (80,808,080 samples, 0.25%)</title><rect x="198.5" y="853" width="3.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="201.52" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="217.1" y="773" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="220.06" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="615.2" y="853" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="618.23" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="546.2" y="501" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="549.21" y="511.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (30,303,030 samples, 0.09%)</title><rect x="660.5" y="709" width="1.3" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="663.53" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="235.6" y="709" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="238.61" y="719.5" ></text>
+</g>
+<g >
+<title>__cond_resched (20,202,020 samples, 0.06%)</title><rect x="157.5" y="661" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="160.53" y="671.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="159.7" y="757" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="162.69" y="767.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="584.2" y="421" width="0.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="587.17" y="431.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.03%)</title><rect x="603.2" y="581" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="606.15" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (464,646,460 samples, 1.44%)</title><rect x="568.6" y="805" width="19.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="571.64" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="279.6" y="837" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="282.62" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="340.0" y="485" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="343.01" y="495.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="307.7" y="613" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="310.66" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (30,303,030 samples, 0.09%)</title><rect x="263.7" y="741" width="1.2" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="266.65" y="751.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.03%)</title><rect x="220.5" y="597" width="0.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="223.52" y="607.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="610.5" y="661" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="613.49" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (20,202,020 samples, 0.06%)</title><rect x="257.2" y="597" width="0.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="260.18" y="607.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="100.6" y="805" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="103.59" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="618.7" y="709" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="621.68" y="719.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="389" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1031.50" y="399.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="121.3" y="725" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="124.30" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="272.7" y="805" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="275.71" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="266.2" y="789" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="269.24" y="799.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="471.2" y="565" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="474.15" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="223.1" y="757" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="226.10" y="767.5" ></text>
+</g>
+<g >
+<title>file_modified_flags (10,101,010 samples, 0.03%)</title><rect x="224.0" y="645" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="226.97" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="429.7" y="741" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="432.74" y="751.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.03%)</title><rect x="499.6" y="789" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="502.62" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="539.7" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="542.74" y="767.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="199.4" y="581" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="202.38" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_desc (10,101,010 samples, 0.03%)</title><rect x="298.6" y="517" width="0.4" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="301.60" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (30,303,030 samples, 0.09%)</title><rect x="549.2" y="549" width="1.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="552.23" y="559.5" ></text>
+</g>
+<g >
+<title>ip_output (10,101,010 samples, 0.03%)</title><rect x="1021.6" y="197" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1024.60" y="207.5" ></text>
+</g>
+<g >
+<title>ext4_append (40,404,040 samples, 0.13%)</title><rect x="357.3" y="597" width="1.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="360.26" y="607.5" ></text>
+</g>
+<g >
+<title>git_odb_read (70,707,070 samples, 0.22%)</title><rect x="351.2" y="837" width="3.0" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="354.23" y="847.5" ></text>
+</g>
+<g >
+<title>pthread_rwlock_wrlock (10,101,010 samples, 0.03%)</title><rect x="101.5" y="885" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="104.45" y="895.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.03%)</title><rect x="1327.4" y="821" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1330.45" y="831.5" ></text>
+</g>
+<g >
+<title>iput (60,606,060 samples, 0.19%)</title><rect x="202.8" y="757" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="205.83" y="767.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.03%)</title><rect x="271.0" y="549" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="273.99" y="559.5" ></text>
+</g>
+<g >
+<title>fdopendir (20,202,020 samples, 0.06%)</title><rect x="170.0" y="821" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="173.04" y="831.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="28.1" y="677" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="31.12" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="237.3" y="789" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="240.34" y="799.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="21.2" y="933" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="24.22" y="943.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="468.6" y="581" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="471.56" y="591.5" ></text>
+</g>
+<g >
+<title>mpage_prepare_extent_to_map (10,101,010 samples, 0.03%)</title><rect x="566.5" y="533" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="569.49" y="543.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="263.7" y="677" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="266.65" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="162.7" y="629" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="165.71" y="639.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="380.1" y="581" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="383.13" y="591.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="499.2" y="677" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="502.19" y="687.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (20,202,020 samples, 0.06%)</title><rect x="1042.7" y="805" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1045.74" y="815.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="565.6" y="437" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="568.62" y="447.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="484.1" y="453" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="487.09" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="447.0" y="661" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="449.99" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="288.2" y="565" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="291.24" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="390.1" y="597" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="393.05" y="607.5" ></text>
+</g>
+<g >
+<title>path_put (20,202,020 samples, 0.06%)</title><rect x="129.1" y="661" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="132.06" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="484.1" y="469" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="487.09" y="479.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="327.5" y="789" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="330.50" y="799.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="493.6" y="725" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="496.58" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (202,020,200 samples, 0.63%)</title><rect x="419.4" y="805" width="8.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="422.38" y="815.5" ></text>
+</g>
+<g >
+<title>security_prepare_creds (10,101,010 samples, 0.03%)</title><rect x="633.4" y="741" width="0.4" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="636.35" y="751.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.03%)</title><rect x="499.2" y="709" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="502.19" y="719.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="538.9" y="677" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="541.88" y="687.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="619.5" y="693" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="622.55" y="703.5" ></text>
+</g>
+<g >
+<title>git_refdb_open (10,101,010 samples, 0.03%)</title><rect x="381.0" y="757" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="383.99" y="767.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.06%)</title><rect x="217.9" y="709" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="220.93" y="719.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="307.7" y="629" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="310.66" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_read_block_bitmap (10,101,010 samples, 0.03%)</title><rect x="232.2" y="501" width="0.4" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="235.16" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (30,303,030 samples, 0.09%)</title><rect x="528.1" y="693" width="1.3" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="531.09" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mb_complex_scan_group (10,101,010 samples, 0.03%)</title><rect x="297.3" y="533" width="0.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="300.30" y="543.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="100.6" y="853" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="103.59" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="401.3" y="565" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="404.27" y="575.5" ></text>
+</g>
+<g >
+<title>folio_add_lru (40,404,040 samples, 0.13%)</title><rect x="1354.2" y="741" width="1.7" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1357.20" y="751.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="203.7" y="677" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="206.69" y="687.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="238.6" y="629" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="241.63" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="614.4" y="629" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="617.37" y="639.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="567.8" y="565" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="570.78" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (50,505,050 samples, 0.16%)</title><rect x="741.2" y="917" width="2.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="744.20" y="927.5" ></text>
+</g>
+<g >
+<title>git_odb_read_header (60,606,060 samples, 0.19%)</title><rect x="234.8" y="853" width="2.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="237.75" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (131,313,130 samples, 0.41%)</title><rect x="10.0" y="885" width="5.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="13.00" y="895.5" ></text>
+</g>
+<g >
+<title>__next_zones_zonelist (10,101,010 samples, 0.03%)</title><rect x="1324.0" y="757" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1327.00" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="412.5" y="773" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="415.48" y="783.5" ></text>
+</g>
+<g >
+<title>__sock_release (20,202,020 samples, 0.06%)</title><rect x="1026.8" y="773" width="0.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1029.77" y="783.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="286.5" y="645" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="289.52" y="655.5" ></text>
+</g>
+<g >
+<title>do_wp_page (10,101,010 samples, 0.03%)</title><rect x="98.9" y="725" width="0.4" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="101.87" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (111,111,110 samples, 0.34%)</title><rect x="82.0" y="837" width="4.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="85.04" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="617.4" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="620.39" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.06%)</title><rect x="180.0" y="613" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="182.97" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="420.2" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="423.25" y="735.5" ></text>
+</g>
+<g >
+<title>thread_group_cputime_adjusted (10,101,010 samples, 0.03%)</title><rect x="727.4" y="741" width="0.4" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="730.39" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="605.3" y="677" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="608.31" y="687.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (60,606,060 samples, 0.19%)</title><rect x="1020.7" y="693" width="2.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1023.73" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="288.2" y="629" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="291.24" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="374.1" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="377.09" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="396.5" y="661" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="399.52" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="449.6" y="821" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="452.58" y="831.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="615.2" y="709" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="618.23" y="719.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (232,323,230 samples, 0.72%)</title><rect x="503.5" y="821" width="9.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="506.50" y="831.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (10,101,010 samples, 0.03%)</title><rect x="1021.6" y="277" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1024.60" y="287.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (10,101,010 samples, 0.03%)</title><rect x="110.5" y="629" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="113.51" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="80.7" y="805" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="83.75" y="815.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="48.8" y="853" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="51.82" y="863.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="515.2" y="613" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="518.15" y="623.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.03%)</title><rect x="592.4" y="741" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="595.37" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="262.8" y="629" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="265.79" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_fc_init_inode (10,101,010 samples, 0.03%)</title><rect x="576.8" y="661" width="0.5" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="579.84" y="671.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (30,303,030 samples, 0.09%)</title><rect x="723.5" y="821" width="1.3" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="726.51" y="831.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (40,404,040 samples, 0.13%)</title><rect x="1021.2" y="437" width="1.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1024.17" y="447.5" ></text>
+</g>
+<g >
+<title>remove (343,434,340 samples, 1.06%)</title><rect x="173.5" y="805" width="14.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="176.49" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="472.0" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="475.01" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="220.9" y="757" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="223.95" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="151.9" y="533" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="154.93" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="350.4" y="805" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="353.36" y="815.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (80,808,080 samples, 0.25%)</title><rect x="598.4" y="789" width="3.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="601.41" y="799.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.03%)</title><rect x="554.0" y="549" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="556.98" y="559.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="620.0" y="773" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="622.98" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (20,202,020 samples, 0.06%)</title><rect x="340.4" y="485" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="343.44" y="495.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="224.8" y="437" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="227.83" y="447.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="350.4" y="757" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="353.36" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="539.3" y="757" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="542.31" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="622.1" y="677" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="625.14" y="687.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="467.7" y="709" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="470.70" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (40,404,040 samples, 0.13%)</title><rect x="32.4" y="229" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="35.43" y="239.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (10,101,010 samples, 0.03%)</title><rect x="1021.6" y="117" width="0.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1024.60" y="127.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (30,303,030 samples, 0.09%)</title><rect x="664.8" y="837" width="1.3" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="667.84" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="381.9" y="773" width="1.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="384.85" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="459.1" y="757" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="462.07" y="767.5" ></text>
+</g>
+<g >
+<title>crc_pcl (20,202,020 samples, 0.06%)</title><rect x="73.4" y="805" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="76.41" y="815.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.03%)</title><rect x="378.0" y="565" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="380.97" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="334.0" y="549" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="336.97" y="559.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.03%)</title><rect x="459.9" y="517" width="0.5" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="462.93" y="527.5" ></text>
+</g>
+<g >
+<title>unlock_buffer (10,101,010 samples, 0.03%)</title><rect x="584.2" y="293" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="587.17" y="303.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.09%)</title><rect x="238.2" y="725" width="1.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="241.20" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="253.7" y="661" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="256.73" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.03%)</title><rect x="293.4" y="629" width="0.5" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="296.42" y="639.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (30,303,030 samples, 0.09%)</title><rect x="364.2" y="709" width="1.3" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="367.17" y="719.5" ></text>
+</g>
+<g >
+<title>down_read_trylock (10,101,010 samples, 0.03%)</title><rect x="1001.3" y="741" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1004.32" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="597.5" y="789" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="600.55" y="799.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.03%)</title><rect x="459.1" y="789" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="462.07" y="799.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (151,515,150 samples, 0.47%)</title><rect x="30.3" y="837" width="6.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="33.28" y="847.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="262.4" y="597" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="265.36" y="607.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="581" width="1.3" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1377.47" y="591.5" ></text>
+</g>
+<g >
+<title>mm_account_fault (10,101,010 samples, 0.03%)</title><rect x="48.4" y="885" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="51.39" y="895.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="515.2" y="629" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="518.15" y="639.5" ></text>
+</g>
+<g >
+<title>filemap_get_pages (10,101,010 samples, 0.03%)</title><rect x="441.8" y="565" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="444.82" y="575.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="741" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1373.59" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="448.3" y="629" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="451.29" y="639.5" ></text>
+</g>
+<g >
+<title>d_alloc (20,202,020 samples, 0.06%)</title><rect x="91.5" y="853" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="94.53" y="863.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.03%)</title><rect x="154.9" y="517" width="0.5" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="157.95" y="527.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_from_slab_obj (10,101,010 samples, 0.03%)</title><rect x="155.8" y="581" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="158.81" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="411.2" y="757" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="414.19" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="610.5" y="693" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="613.49" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="1366.7" y="789" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1369.71" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="281.3" y="773" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="284.34" y="783.5" ></text>
+</g>
+<g >
+<title>net_rx_action (60,606,060 samples, 0.19%)</title><rect x="1020.7" y="501" width="2.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1023.73" y="511.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (20,202,020 samples, 0.06%)</title><rect x="103.6" y="613" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="106.61" y="623.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.03%)</title><rect x="487.1" y="533" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="490.11" y="543.5" ></text>
+</g>
+<g >
+<title>inode_permission (20,202,020 samples, 0.06%)</title><rect x="87.2" y="869" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="90.22" y="879.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (40,404,040 samples, 0.13%)</title><rect x="1034.1" y="645" width="1.7" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1037.11" y="655.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="227.4" y="613" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="230.42" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="527.7" y="677" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="530.66" y="687.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="622.1" y="629" width="0.5" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="625.14" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="568.2" y="549" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="571.21" y="559.5" ></text>
+</g>
+<g >
+<title>ksys_write (30,303,030 samples, 0.09%)</title><rect x="334.4" y="677" width="1.3" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="337.40" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="453.0" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="456.03" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="312.4" y="709" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="315.40" y="719.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="56.2" y="997" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="59.16" y="1007.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (20,202,020 samples, 0.06%)</title><rect x="665.3" y="725" width="0.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="668.27" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (10,101,010 samples, 0.03%)</title><rect x="508.2" y="549" width="0.5" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="511.25" y="559.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="587.2" y="613" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="590.19" y="623.5" ></text>
+</g>
+<g >
+<title>ksys_write (60,606,060 samples, 0.19%)</title><rect x="408.6" y="693" width="2.6" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="411.60" y="703.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.03%)</title><rect x="382.7" y="645" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="385.72" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="592.4" y="773" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="595.37" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="620.4" y="789" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="623.41" y="799.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.1.0] (5,212,121,160 samples, 16.13%)</title><rect x="743.4" y="837" width="222.5" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="746.35" y="847.5" >[libjson-c.so.5.1.0]</text>
+</g>
+<g >
+<title>do_open (20,202,020 samples, 0.06%)</title><rect x="602.7" y="629" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="605.72" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_tso_segs (10,101,010 samples, 0.03%)</title><rect x="1027.2" y="661" width="0.4" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1030.21" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="244.2" y="645" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="247.24" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="295.1" y="485" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="298.15" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.03%)</title><rect x="503.1" y="645" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="506.07" y="655.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="599.3" y="581" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="602.27" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_link (30,303,030 samples, 0.09%)</title><rect x="274.9" y="757" width="1.3" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="277.87" y="767.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.06%)</title><rect x="606.6" y="709" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="609.61" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="614.4" y="693" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="617.37" y="703.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="449.1" y="517" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="452.15" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (323,232,320 samples, 1.00%)</title><rect x="173.5" y="741" width="13.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="176.49" y="751.5" ></text>
+</g>
+<g >
+<title>git_reference_list (111,111,110 samples, 0.34%)</title><rect x="444.8" y="837" width="4.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="447.84" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (30,303,030 samples, 0.09%)</title><rect x="197.2" y="741" width="1.3" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="200.22" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="588.5" y="741" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="591.49" y="751.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (20,202,020 samples, 0.06%)</title><rect x="525.9" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="528.94" y="687.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="557.4" y="757" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="560.43" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="444.4" y="773" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="447.40" y="783.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (20,202,020 samples, 0.06%)</title><rect x="218.8" y="757" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="221.79" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="467.3" y="661" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="470.27" y="671.5" ></text>
+</g>
+<g >
+<title>vma_alloc_folio (70,707,070 samples, 0.22%)</title><rect x="1323.6" y="805" width="3.0" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1326.57" y="815.5" ></text>
+</g>
+<g >
+<title>git_remote_create_with_opts (565,656,560 samples, 1.75%)</title><rect x="417.7" y="869" width="24.1" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="420.66" y="879.5" >g..</text>
+</g>
+<g >
+<title>do_syscall_64 (191,919,190 samples, 0.59%)</title><rect x="188.6" y="773" width="8.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="191.59" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="452.2" y="709" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="455.17" y="719.5" ></text>
+</g>
+<g >
+<title>all (32,313,130,990 samples, 100%)</title><rect x="10.0" y="1093" width="1380.0" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="13.00" y="1103.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="569.9" y="677" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="572.94" y="687.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.03%)</title><rect x="428.4" y="629" width="0.5" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="431.44" y="639.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.03%)</title><rect x="487.1" y="325" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="490.11" y="335.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (20,202,020 samples, 0.06%)</title><rect x="565.6" y="485" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="568.62" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="199.4" y="645" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="202.38" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (20,202,020 samples, 0.06%)</title><rect x="275.3" y="709" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="278.30" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="220.9" y="677" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="223.95" y="687.5" ></text>
+</g>
+<g >
+<title>git_repository_open_ext (202,020,200 samples, 0.63%)</title><rect x="449.6" y="837" width="8.6" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="452.58" y="847.5" ></text>
+</g>
+<g >
+<title>new_inode (20,202,020 samples, 0.06%)</title><rect x="524.6" y="693" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="527.64" y="703.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (10,101,010 samples, 0.03%)</title><rect x="1026.8" y="661" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1029.77" y="671.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.03%)</title><rect x="415.5" y="885" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="418.50" y="895.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="614.4" y="613" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="617.37" y="623.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="314.6" y="677" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="317.56" y="687.5" ></text>
+</g>
+<g >
+<title>libgit_clone (8,030,302,950 samples, 24.85%)</title><rect x="283.5" y="917" width="342.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="286.50" y="927.5" >libgit_clone</text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="605.3" y="613" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="608.31" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="369.3" y="645" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="372.34" y="655.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="610.9" y="597" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="613.92" y="607.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="1366.7" y="677" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1369.71" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="578.1" y="645" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="581.13" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="265.4" y="773" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="268.38" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="221.4" y="757" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="224.38" y="767.5" ></text>
+</g>
+<g >
+<title>shrink_dentry_list (30,303,030 samples, 0.09%)</title><rect x="211.5" y="741" width="1.3" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="214.46" y="751.5" ></text>
+</g>
+<g >
+<title>do_linkat (20,202,020 samples, 0.06%)</title><rect x="336.6" y="709" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="339.56" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.09%)</title><rect x="378.8" y="677" width="1.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="381.83" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (10,101,010 samples, 0.03%)</title><rect x="1379.2" y="261" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="1382.22" y="271.5" ></text>
+</g>
+<g >
+<title>dentry_kill (30,303,030 samples, 0.09%)</title><rect x="400.4" y="661" width="1.3" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="403.40" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.47%)</title><rect x="371.9" y="821" width="6.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="374.93" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_dx_add_entry (30,303,030 samples, 0.09%)</title><rect x="629.0" y="757" width="1.3" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="632.04" y="767.5" ></text>
+</g>
+<g >
+<title>apparmor_d_instantiate (10,101,010 samples, 0.03%)</title><rect x="1381.8" y="821" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1384.80" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="468.1" y="789" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="471.13" y="799.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (30,303,030 samples, 0.09%)</title><rect x="131.2" y="565" width="1.3" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="134.22" y="575.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="377.5" y="741" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="380.54" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (90,909,090 samples, 0.28%)</title><rect x="513.4" y="773" width="3.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="516.43" y="783.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (10,101,010 samples, 0.03%)</title><rect x="1008.2" y="197" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1011.22" y="207.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="233.0" y="613" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="236.03" y="623.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (101,010,100 samples, 0.31%)</title><rect x="453.9" y="789" width="4.3" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="456.89" y="799.5" ></text>
+</g>
+<g >
+<title>__legitimize_mnt (10,101,010 samples, 0.03%)</title><rect x="498.8" y="629" width="0.4" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="501.76" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="601.9" y="741" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="604.86" y="751.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.03%)</title><rect x="540.2" y="597" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="543.17" y="607.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="618.7" y="581" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="621.68" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.06%)</title><rect x="370.6" y="613" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="373.64" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="141.1" y="629" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="144.14" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="221.4" y="709" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="224.38" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="251.6" y="709" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="254.58" y="719.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (10,101,010 samples, 0.03%)</title><rect x="105.8" y="501" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="108.77" y="511.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="588.5" y="645" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="591.49" y="655.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.06%)</title><rect x="459.5" y="741" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="462.50" y="751.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="184.7" y="341" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="187.71" y="351.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.03%)</title><rect x="184.7" y="421" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="187.71" y="431.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.03%)</title><rect x="360.3" y="565" width="0.4" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="363.28" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (10,101,010 samples, 0.03%)</title><rect x="349.9" y="773" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="352.93" y="783.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="242.9" y="645" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="245.95" y="655.5" ></text>
+</g>
+<g >
+<title>from_kuid (10,101,010 samples, 0.03%)</title><rect x="49.7" y="837" width="0.4" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="52.69" y="847.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (161,616,160 samples, 0.50%)</title><rect x="475.0" y="645" width="6.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="478.03" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (121,212,120 samples, 0.38%)</title><rect x="1006.1" y="709" width="5.1" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1009.07" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (30,303,030 samples, 0.09%)</title><rect x="464.2" y="613" width="1.3" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="467.25" y="623.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.03%)</title><rect x="277.9" y="613" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="280.89" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (80,808,080 samples, 0.25%)</title><rect x="122.6" y="693" width="3.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="125.59" y="703.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="300.8" y="565" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="303.75" y="575.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="276.2" y="757" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="279.16" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (40,404,040 samples, 0.13%)</title><rect x="360.3" y="629" width="1.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="363.28" y="639.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.03%)</title><rect x="1376.6" y="933" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1379.63" y="943.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="217.9" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="220.93" y="799.5" ></text>
+</g>
+<g >
+<title>git_refdb_open (30,303,030 samples, 0.09%)</title><rect x="448.3" y="773" width="1.3" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="451.29" y="783.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="1367.1" y="789" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1370.14" y="799.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="98.9" y="757" width="0.4" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="101.87" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (242,424,240 samples, 0.75%)</title><rect x="418.1" y="821" width="10.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="421.09" y="831.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="326.6" y="597" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="329.64" y="607.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.06%)</title><rect x="213.2" y="789" width="0.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="216.18" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="393.9" y="693" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="396.93" y="703.5" ></text>
+</g>
+<g >
+<title>privileged_wrt_inode_uidgid (10,101,010 samples, 0.03%)</title><rect x="309.8" y="645" width="0.4" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="312.81" y="655.5" ></text>
+</g>
+<g >
+<title>mutex_lock (10,101,010 samples, 0.03%)</title><rect x="563.9" y="565" width="0.4" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="566.90" y="575.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="610.5" y="597" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="613.49" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="444.4" y="757" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="447.40" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="120.0" y="757" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="123.00" y="767.5" ></text>
+</g>
+<g >
+<title>inet_hash_connect (20,202,020 samples, 0.06%)</title><rect x="1385.7" y="805" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1388.69" y="815.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="1364.1" y="805" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1367.12" y="815.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="588.5" y="661" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="591.49" y="671.5" ></text>
+</g>
+<g >
+<title>____fput (20,202,020 samples, 0.06%)</title><rect x="169.2" y="709" width="0.8" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="172.18" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="372.8" y="709" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="375.79" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="621.7" y="693" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="624.70" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="214.5" y="869" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="217.48" y="879.5" ></text>
+</g>
+<g >
+<title>should_fail_alloc_page (10,101,010 samples, 0.03%)</title><rect x="642.0" y="645" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="644.98" y="655.5" ></text>
+</g>
+<g >
+<title>do_rmdir (323,232,320 samples, 1.00%)</title><rect x="173.5" y="725" width="13.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="176.49" y="735.5" ></text>
+</g>
+<g >
+<title>write (30,303,030 samples, 0.09%)</title><rect x="334.4" y="741" width="1.3" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="337.40" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="104.9" y="533" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="107.90" y="543.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="393.9" y="709" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="396.93" y="719.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (20,202,020 samples, 0.06%)</title><rect x="432.3" y="677" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="435.33" y="687.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.03%)</title><rect x="294.7" y="549" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="297.71" y="559.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.03%)</title><rect x="394.4" y="581" width="0.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="397.36" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_v4_send_synack (10,101,010 samples, 0.03%)</title><rect x="1035.0" y="341" width="0.4" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1037.97" y="351.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="448.7" y="645" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="451.72" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="491.4" y="709" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="494.43" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="560.4" y="645" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="563.45" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (141,414,140 samples, 0.44%)</title><rect x="372.4" y="789" width="6.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="375.36" y="799.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="200.2" y="533" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="203.24" y="543.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (20,202,020 samples, 0.06%)</title><rect x="16.0" y="917" width="0.9" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="19.04" y="927.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.03%)</title><rect x="69.1" y="805" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="72.10" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.03%)</title><rect x="231.7" y="533" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="234.73" y="543.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (111,111,110 samples, 0.34%)</title><rect x="543.6" y="645" width="4.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="546.62" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_get_int32 (20,202,020 samples, 0.06%)</title><rect x="594.5" y="837" width="0.9" height="15.0" fill="rgb(0,236,197)" rx="2" ry="2" />
+<text x="597.53" y="847.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="613.1" y="597" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="616.08" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="235.6" y="677" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="238.61" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (171,717,170 samples, 0.53%)</title><rect x="517.3" y="805" width="7.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="520.31" y="815.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="269.3" y="661" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="272.26" y="671.5" ></text>
+</g>
+<g >
+<title>ksys_read (20,202,020 samples, 0.06%)</title><rect x="503.9" y="661" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="506.94" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="437.9" y="661" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="440.93" y="671.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.03%)</title><rect x="261.1" y="597" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="264.07" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="607.5" y="725" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="610.47" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (30,303,030 samples, 0.09%)</title><rect x="549.2" y="533" width="1.3" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="552.23" y="543.5" ></text>
+</g>
+<g >
+<title>scsi_alloc_sgtables (10,101,010 samples, 0.03%)</title><rect x="511.3" y="293" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="514.27" y="303.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.06%)</title><rect x="387.0" y="741" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="390.03" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (30,313,131,010 samples, 93.81%)</title><rect x="95.4" y="1029" width="1294.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="98.41" y="1039.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="591.9" y="789" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="594.94" y="799.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="398.2" y="629" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="401.25" y="639.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (60,606,060 samples, 0.19%)</title><rect x="253.3" y="773" width="2.6" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="256.30" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_bread (40,404,040 samples, 0.13%)</title><rect x="357.3" y="581" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="360.26" y="591.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="235.2" y="741" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="238.18" y="751.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="613" width="1.3" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1014.24" y="623.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="725" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1373.59" y="735.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="95.0" y="885" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="97.98" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="271.9" y="613" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="274.85" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="351.7" y="805" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="354.66" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="482.4" y="517" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="485.37" y="527.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (20,202,020 samples, 0.06%)</title><rect x="293.0" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="295.99" y="655.5" ></text>
+</g>
+<g >
+<title>kfree (10,101,010 samples, 0.03%)</title><rect x="327.9" y="661" width="0.5" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="330.93" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="544.9" y="549" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="547.92" y="559.5" ></text>
+</g>
+<g >
+<title>ip_output (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="645" width="1.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1377.47" y="655.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="361.6" y="517" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="364.58" y="527.5" ></text>
+</g>
+<g >
+<title>inet_unhash (10,101,010 samples, 0.03%)</title><rect x="33.3" y="133" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="36.29" y="143.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.03%)</title><rect x="244.7" y="645" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="247.67" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="104.9" y="517" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="107.90" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="592.8" y="725" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="595.80" y="735.5" ></text>
+</g>
+<g >
+<title>__sg_free_table (10,101,010 samples, 0.03%)</title><rect x="132.9" y="405" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="135.94" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.03%)</title><rect x="338.7" y="549" width="0.4" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="341.72" y="559.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.03%)</title><rect x="1387.0" y="709" width="0.4" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1389.98" y="719.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="260.2" y="613" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="263.20" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (20,202,020 samples, 0.06%)</title><rect x="153.2" y="389" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="156.22" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_fname_setup_ci_filename (10,101,010 samples, 0.03%)</title><rect x="142.4" y="629" width="0.5" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="145.44" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="280.5" y="661" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="283.48" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="106.6" y="501" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="109.63" y="511.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.03%)</title><rect x="495.3" y="549" width="0.4" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="498.31" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_link (20,202,020 samples, 0.06%)</title><rect x="275.3" y="741" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="278.30" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (10,101,010 samples, 0.03%)</title><rect x="512.1" y="469" width="0.5" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="515.13" y="479.5" ></text>
+</g>
+<g >
+<title>atime_needs_update (10,101,010 samples, 0.03%)</title><rect x="260.2" y="565" width="0.4" height="15.0" fill="rgb(0,202,51)" rx="2" ry="2" />
+<text x="263.20" y="575.5" ></text>
+</g>
+<g >
+<title>unmap_region (181,818,180 samples, 0.56%)</title><rect x="733.4" y="725" width="7.8" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="736.43" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (30,303,030 samples, 0.09%)</title><rect x="182.1" y="485" width="1.3" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="185.12" y="495.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (10,101,010 samples, 0.03%)</title><rect x="1373.6" y="725" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1376.61" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="615.2" y="741" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="618.23" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (131,313,130 samples, 0.41%)</title><rect x="89.8" y="981" width="5.6" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="92.81" y="991.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="280.0" y="677" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="283.05" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_node (30,303,030 samples, 0.09%)</title><rect x="1025.5" y="709" width="1.3" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1028.48" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="250.7" y="757" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="253.71" y="767.5" ></text>
+</g>
+<g >
+<title>__folio_throttle_swaprate (10,101,010 samples, 0.03%)</title><rect x="989.7" y="693" width="0.4" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="992.67" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="386.6" y="677" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="389.60" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="159.7" y="773" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="162.69" y="783.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="503.5" y="709" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="506.50" y="719.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (40,404,040 samples, 0.13%)</title><rect x="964.2" y="757" width="1.7" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="967.22" y="767.5" ></text>
+</g>
+<g >
+<title>file_update_time (10,101,010 samples, 0.03%)</title><rect x="1036.3" y="741" width="0.4" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1039.26" y="751.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="592.8" y="677" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="595.80" y="687.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="162.3" y="629" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="165.28" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="359.9" y="661" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="362.85" y="671.5" ></text>
+</g>
+<g >
+<title>sock_close (20,202,020 samples, 0.06%)</title><rect x="1026.8" y="789" width="0.8" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="1029.77" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="500.9" y="565" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="503.92" y="575.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (20,202,020 samples, 0.06%)</title><rect x="303.8" y="661" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="306.77" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="334.0" y="645" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="336.97" y="655.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.03%)</title><rect x="412.5" y="725" width="0.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="415.48" y="735.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="281.3" y="677" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="284.34" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="727.8" y="901" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="730.82" y="911.5" ></text>
+</g>
+<g >
+<title>vfs_write (40,404,040 samples, 0.13%)</title><rect x="504.8" y="645" width="1.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="507.80" y="655.5" ></text>
+</g>
+<g >
+<title>do_writepages (60,606,060 samples, 0.19%)</title><rect x="510.0" y="565" width="2.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="512.97" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="112.2" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="115.24" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="590.2" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="593.21" y="815.5" ></text>
+</g>
+<g >
+<title>slab_pre_alloc_hook.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="459.5" y="597" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="462.50" y="607.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="458.6" y="693" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="461.64" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="281.8" y="709" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="284.77" y="719.5" ></text>
+</g>
+<g >
+<title>kernel_clone (121,212,120 samples, 0.38%)</title><rect x="17.3" y="981" width="5.2" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="20.33" y="991.5" ></text>
+</g>
+<g >
+<title>json_object_to_json_string_length (6,101,010,040 samples, 18.88%)</title><rect x="743.4" y="901" width="260.5" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="746.35" y="911.5" >json_object_to_json_string_length</text>
+</g>
+<g >
+<title>alloc_inode (20,202,020 samples, 0.06%)</title><rect x="38.9" y="773" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="41.90" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (222,222,220 samples, 0.69%)</title><rect x="354.7" y="773" width="9.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="357.68" y="783.5" ></text>
+</g>
+<g >
+<title>git_odb_read_header (30,303,030 samples, 0.09%)</title><rect x="489.7" y="789" width="1.3" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="492.70" y="799.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (40,404,040 samples, 0.13%)</title><rect x="1377.9" y="357" width="1.7" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1380.92" y="367.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="244.2" y="629" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="247.24" y="639.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="390.5" y="485" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="393.48" y="495.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="214.5" y="853" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="217.48" y="863.5" ></text>
+</g>
+<g >
+<title>write (40,404,040 samples, 0.13%)</title><rect x="504.8" y="725" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="507.80" y="735.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="580.7" y="629" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="583.72" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="239.9" y="709" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="242.93" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.03%)</title><rect x="473.7" y="485" width="0.5" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="476.74" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="106.2" y="501" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="109.20" y="511.5" ></text>
+</g>
+<g >
+<title>build_open_flags (10,101,010 samples, 0.03%)</title><rect x="377.5" y="677" width="0.5" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="380.54" y="687.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="619.1" y="725" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="622.12" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (30,303,030 samples, 0.09%)</title><rect x="12.2" y="357" width="1.3" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="15.16" y="367.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (30,303,030 samples, 0.09%)</title><rect x="205.4" y="757" width="1.3" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="208.42" y="767.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="600.6" y="677" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="603.57" y="687.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="625.2" y="725" width="0.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="628.15" y="735.5" ></text>
+</g>
+<g >
+<title>inet_csk_destroy_sock (10,101,010 samples, 0.03%)</title><rect x="1379.2" y="197" width="0.4" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1382.22" y="207.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.03%)</title><rect x="281.8" y="597" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="284.77" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="260.2" y="645" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="263.20" y="655.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="534.1" y="709" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="537.13" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.41%)</title><rect x="452.6" y="805" width="5.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="455.60" y="815.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="731.7" y="757" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="734.71" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="235.6" y="549" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="238.61" y="559.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (10,101,010 samples, 0.03%)</title><rect x="1376.6" y="949" width="0.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1379.63" y="959.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="581" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1031.50" y="591.5" ></text>
+</g>
+<g >
+<title>do_softirq (30,303,030 samples, 0.09%)</title><rect x="1034.5" y="613" width="1.3" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1037.54" y="623.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="334.0" y="677" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="336.97" y="687.5" ></text>
+</g>
+<g >
+<title>from_kuid (20,202,020 samples, 0.06%)</title><rect x="115.3" y="517" width="0.8" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="118.26" y="527.5" ></text>
+</g>
+<g >
+<title>mkdir (353,535,350 samples, 1.09%)</title><rect x="286.9" y="773" width="15.1" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="289.95" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="456.9" y="565" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="459.91" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="198.5" y="613" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="201.52" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="223.5" y="757" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="226.54" y="767.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="441.8" y="709" width="0.4" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="444.82" y="719.5" ></text>
+</g>
+<g >
+<title>git_branch_is_checked_out (333,333,330 samples, 1.03%)</title><rect x="378.4" y="837" width="14.2" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="381.40" y="847.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (50,505,050 samples, 0.16%)</title><rect x="397.0" y="741" width="2.1" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="399.95" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="217.1" y="853" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="220.06" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (60,606,060 samples, 0.19%)</title><rect x="123.0" y="645" width="2.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="126.02" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="457.3" y="693" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="460.35" y="703.5" ></text>
+</g>
+<g >
+<title>server_assign_run (161,616,160 samples, 0.50%)</title><rect x="10.0" y="1013" width="6.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="13.00" y="1023.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (30,303,030 samples, 0.09%)</title><rect x="344.3" y="533" width="1.3" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="347.32" y="543.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (20,202,020 samples, 0.06%)</title><rect x="638.5" y="725" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="641.53" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_v4_conn_request (10,101,010 samples, 0.03%)</title><rect x="1035.0" y="373" width="0.4" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1037.97" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="522.5" y="629" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="525.49" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="601.0" y="709" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="604.00" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="405.1" y="741" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="408.15" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="403.9" y="661" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="406.85" y="671.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (10,101,010 samples, 0.03%)</title><rect x="1022.5" y="261" width="0.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1025.46" y="271.5" ></text>
+</g>
+<g >
+<title>perf_event_task_output (10,101,010 samples, 0.03%)</title><rect x="21.6" y="901" width="0.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="24.65" y="911.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="474.2" y="533" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="477.17" y="543.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.06%)</title><rect x="242.5" y="773" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="245.52" y="783.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="499.6" y="725" width="0.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="502.62" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="1372.3" y="837" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1375.31" y="847.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="411.2" y="661" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="414.19" y="671.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (50,505,050 samples, 0.16%)</title><rect x="27.7" y="837" width="2.1" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="30.69" y="847.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="125.6" y="661" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="128.61" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="502.6" y="773" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="505.64" y="783.5" ></text>
+</g>
+<g >
+<title>close_fd (10,101,010 samples, 0.03%)</title><rect x="168.7" y="757" width="0.5" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="171.75" y="767.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (151,515,150 samples, 0.47%)</title><rect x="1012.5" y="709" width="6.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1015.54" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="340.4" y="437" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="343.44" y="447.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.03%)</title><rect x="128.2" y="645" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="131.20" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_bio_write_folio (20,202,020 samples, 0.06%)</title><rect x="347.3" y="485" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="350.34" y="495.5" ></text>
+</g>
+<g >
+<title>inode_maybe_inc_iversion (10,101,010 samples, 0.03%)</title><rect x="124.7" y="597" width="0.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="127.75" y="607.5" ></text>
+</g>
+<g >
+<title>strerror_l (10,101,010 samples, 0.03%)</title><rect x="448.3" y="613" width="0.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="451.29" y="623.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.03%)</title><rect x="134.2" y="645" width="0.5" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="137.24" y="655.5" ></text>
+</g>
+<g >
+<title>io_schedule (10,101,010 samples, 0.03%)</title><rect x="484.1" y="373" width="0.4" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="487.09" y="383.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (20,202,020 samples, 0.06%)</title><rect x="276.2" y="773" width="0.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="279.16" y="783.5" ></text>
+</g>
+<g >
+<title>fib_table_lookup (10,101,010 samples, 0.03%)</title><rect x="1386.5" y="773" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1389.55" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="66.5" y="853" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="69.51" y="863.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="145.0" y="613" width="0.5" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="148.02" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.06%)</title><rect x="565.6" y="517" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="568.62" y="527.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="187.7" y="677" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="190.73" y="687.5" ></text>
+</g>
+<g >
+<title>kprobe_ftrace_handler (40,404,040 samples, 0.13%)</title><rect x="1384.0" y="789" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1386.96" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.06%)</title><rect x="289.5" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="292.54" y="623.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="478.1" y="501" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="481.05" y="511.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="627.3" y="741" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="630.31" y="751.5" ></text>
+</g>
+<g >
+<title>link (40,404,040 samples, 0.13%)</title><rect x="336.6" y="773" width="1.7" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="339.56" y="783.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.03%)</title><rect x="572.1" y="677" width="0.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="575.09" y="687.5" ></text>
+</g>
+<g >
+<title>__folio_batch_release (10,101,010 samples, 0.03%)</title><rect x="204.6" y="677" width="0.4" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="207.55" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="231.7" y="421" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="234.73" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="578.1" y="661" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="581.13" y="671.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="239.9" y="661" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="242.93" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="208.4" y="741" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="211.44" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_info (10,101,010 samples, 0.03%)</title><rect x="290.4" y="645" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="293.40" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="369.3" y="693" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="372.34" y="703.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="557.9" y="677" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="560.86" y="687.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="613.9" y="661" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="616.94" y="671.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.03%)</title><rect x="251.1" y="821" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="254.14" y="831.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (20,202,020 samples, 0.06%)</title><rect x="728.7" y="901" width="0.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="731.69" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="73.0" y="741" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="75.98" y="751.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="132.9" y="421" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="135.94" y="431.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="489.3" y="645" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="492.27" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_readlink (10,101,010 samples, 0.03%)</title><rect x="382.7" y="677" width="0.4" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="385.72" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="350.4" y="789" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="353.36" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="284.8" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="287.79" y="751.5" ></text>
+</g>
+<g >
+<title>free_slab (10,101,010 samples, 0.03%)</title><rect x="1363.3" y="533" width="0.4" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="1366.25" y="543.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="102.3" y="661" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="105.32" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="107.1" y="501" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="110.06" y="511.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.03%)</title><rect x="160.6" y="629" width="0.4" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="163.55" y="639.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="597" width="1.3" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1385.67" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rt_sigprocmask (10,101,010 samples, 0.03%)</title><rect x="38.0" y="837" width="0.5" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="41.04" y="847.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="588.1" y="773" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="591.06" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="625.6" y="853" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="628.59" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.03%)</title><rect x="230.4" y="565" width="0.5" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="233.44" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="242.1" y="693" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="245.09" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="378.0" y="757" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="380.97" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="564.3" y="405" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="567.33" y="415.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="243.8" y="677" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="246.81" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (30,303,030 samples, 0.09%)</title><rect x="197.2" y="789" width="1.3" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="200.22" y="799.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.03%)</title><rect x="459.9" y="581" width="0.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="462.93" y="591.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.03%)</title><rect x="282.2" y="885" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="285.20" y="895.5" ></text>
+</g>
+<g >
+<title>file_modified (10,101,010 samples, 0.03%)</title><rect x="222.2" y="645" width="0.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="225.24" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="429.3" y="741" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="432.31" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.31%)</title><rect x="372.8" y="741" width="4.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="375.79" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="405.1" y="725" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="408.15" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="48.4" y="981" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="51.39" y="991.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (20,202,020 samples, 0.06%)</title><rect x="12.6" y="309" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="15.59" y="319.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="590.6" y="645" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="593.64" y="655.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.03%)</title><rect x="13.5" y="421" width="0.4" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="16.45" y="431.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="572.5" y="677" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="575.53" y="687.5" ></text>
+</g>
+<g >
+<title>bit_wait_io (10,101,010 samples, 0.03%)</title><rect x="224.8" y="469" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="227.83" y="479.5" ></text>
+</g>
+<g >
+<title>do_brk_flags (10,101,010 samples, 0.03%)</title><rect x="127.3" y="597" width="0.5" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="130.34" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="359.9" y="725" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="362.85" y="735.5" ></text>
+</g>
+<g >
+<title>memcg_list_lru_alloc (10,101,010 samples, 0.03%)</title><rect x="76.4" y="757" width="0.5" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="79.43" y="767.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="339.6" y="453" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="342.58" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (737,373,730 samples, 2.28%)</title><rect x="57.5" y="997" width="31.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="60.45" y="1007.5" >en..</text>
+</g>
+<g >
+<title>inode_permission (20,202,020 samples, 0.06%)</title><rect x="309.8" y="693" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="312.81" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="377.5" y="709" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="380.54" y="719.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="388.8" y="613" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="391.76" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="243.8" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="246.81" y="767.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (20,202,020 samples, 0.06%)</title><rect x="1318.0" y="837" width="0.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1320.96" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="281.8" y="757" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="284.77" y="767.5" ></text>
+</g>
+<g >
+<title>atime_needs_update (10,101,010 samples, 0.03%)</title><rect x="397.4" y="469" width="0.4" height="15.0" fill="rgb(0,202,51)" rx="2" ry="2" />
+<text x="400.38" y="479.5" ></text>
+</g>
+<g >
+<title>dget_parent (10,101,010 samples, 0.03%)</title><rect x="61.3" y="821" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="64.33" y="831.5" ></text>
+</g>
+<g >
+<title>syscall_trace_enter.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="507.8" y="693" width="0.4" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="510.82" y="703.5" ></text>
+</g>
+<g >
+<title>d_lru_add (10,101,010 samples, 0.03%)</title><rect x="532.8" y="677" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="535.84" y="687.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (10,101,010 samples, 0.03%)</title><rect x="433.2" y="485" width="0.4" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="436.19" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="406.9" y="645" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="409.87" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="249.4" y="629" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="252.42" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.06%)</title><rect x="483.7" y="613" width="0.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="486.66" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="426.7" y="405" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="429.72" y="415.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.25%)</title><rect x="318.0" y="773" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="321.01" y="783.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (30,303,030 samples, 0.09%)</title><rect x="1387.4" y="677" width="1.3" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1390.41" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="437.5" y="741" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="440.50" y="751.5" ></text>
+</g>
+<g >
+<title>net_rx_action (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="501" width="1.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1377.47" y="511.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="456.9" y="581" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="459.91" y="591.5" ></text>
+</g>
+<g >
+<title>touch_atime (80,808,080 samples, 0.25%)</title><rect x="134.7" y="693" width="3.4" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="137.67" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="369.3" y="757" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="372.34" y="767.5" ></text>
+</g>
+<g >
+<title>fprintf (20,202,020 samples, 0.06%)</title><rect x="16.0" y="965" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="19.04" y="975.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (20,202,020 samples, 0.06%)</title><rect x="402.1" y="421" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="405.13" y="431.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="510.8" y="453" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="513.84" y="463.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.03%)</title><rect x="443.1" y="565" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="446.11" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_finish_connect (10,101,010 samples, 0.03%)</title><rect x="1382.2" y="725" width="0.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1385.24" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.03%)</title><rect x="564.3" y="501" width="0.5" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="567.33" y="511.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="529.0" y="565" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="531.96" y="575.5" ></text>
+</g>
+<g >
+<title>lookup_fast (30,303,030 samples, 0.09%)</title><rect x="325.8" y="661" width="1.3" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="328.77" y="671.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="170.0" y="677" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="173.04" y="687.5" ></text>
+</g>
+<g >
+<title>____fput (30,303,030 samples, 0.09%)</title><rect x="313.7" y="693" width="1.3" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="316.69" y="703.5" ></text>
+</g>
+<g >
+<title>fsnotify_perm.part.0 (10,101,010 samples, 0.03%)</title><rect x="603.2" y="565" width="0.4" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="606.15" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_match.part.0 (20,202,020 samples, 0.06%)</title><rect x="92.8" y="805" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="95.83" y="815.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="48.4" y="901" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="51.39" y="911.5" ></text>
+</g>
+<g >
+<title>skb_page_frag_refill (151,515,150 samples, 0.47%)</title><rect x="1012.5" y="741" width="6.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="1015.54" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (60,606,060 samples, 0.19%)</title><rect x="433.2" y="581" width="2.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="436.19" y="591.5" ></text>
+</g>
+<g >
+<title>ktime_get_mono_fast_ns (10,101,010 samples, 0.03%)</title><rect x="613.1" y="373" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="616.08" y="383.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (343,434,340 samples, 1.06%)</title><rect x="286.9" y="709" width="14.7" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="289.95" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_da_reserve_space (10,101,010 samples, 0.03%)</title><rect x="531.5" y="613" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="534.54" y="623.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="100.6" y="837" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="103.59" y="847.5" ></text>
+</g>
+<g >
+<title>__default_morecore (10,101,010 samples, 0.03%)</title><rect x="1366.7" y="837" width="0.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1369.71" y="847.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="244.7" y="677" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="247.67" y="687.5" ></text>
+</g>
+<g >
+<title>dentry_kill (10,101,010 samples, 0.03%)</title><rect x="28.1" y="741" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="31.12" y="751.5" ></text>
+</g>
+<g >
+<title>pte_alloc_one (10,101,010 samples, 0.03%)</title><rect x="1367.1" y="709" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1370.14" y="719.5" ></text>
+</g>
+<g >
+<title>rmdir (333,333,330 samples, 1.03%)</title><rect x="173.5" y="789" width="14.2" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="176.49" y="799.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="158.4" y="597" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="161.40" y="607.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (10,101,010 samples, 0.03%)</title><rect x="511.3" y="453" width="0.4" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="514.27" y="463.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="1322.3" y="773" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1325.27" y="783.5" ></text>
+</g>
+<g >
+<title>posix_acl_create (10,101,010 samples, 0.03%)</title><rect x="520.3" y="629" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="523.33" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.03%)</title><rect x="447.0" y="597" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="449.99" y="607.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (30,303,030 samples, 0.09%)</title><rect x="313.7" y="725" width="1.3" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="316.69" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_brk (10,101,010 samples, 0.03%)</title><rect x="127.3" y="629" width="0.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="130.34" y="639.5" ></text>
+</g>
+<g >
+<title>ktime_get_coarse_real_ts64 (10,101,010 samples, 0.03%)</title><rect x="260.2" y="533" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="263.20" y="543.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="264.1" y="661" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="267.09" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="406.4" y="709" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="409.44" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="184.7" y="469" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="187.71" y="479.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="651.0" y="693" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="654.04" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (60,606,060 samples, 0.19%)</title><rect x="193.8" y="709" width="2.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="196.77" y="719.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.03%)</title><rect x="433.2" y="453" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="436.19" y="463.5" ></text>
+</g>
+<g >
+<title>dput (20,202,020 samples, 0.06%)</title><rect x="622.6" y="693" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="625.57" y="703.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="379.7" y="533" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="382.70" y="543.5" ></text>
+</g>
+<g >
+<title>block_invalidate_folio (10,101,010 samples, 0.03%)</title><rect x="343.5" y="517" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="346.46" y="527.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (40,404,040 samples, 0.13%)</title><rect x="464.2" y="693" width="1.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="467.25" y="703.5" ></text>
+</g>
+<g >
+<title>truncate_inode_partial_folio (10,101,010 samples, 0.03%)</title><rect x="427.1" y="565" width="0.5" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="430.15" y="575.5" ></text>
+</g>
+<g >
+<title>free_unref_page_prepare (10,101,010 samples, 0.03%)</title><rect x="509.5" y="485" width="0.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="512.54" y="495.5" ></text>
+</g>
+<g >
+<title>copy_page_from_iter (10,101,010 samples, 0.03%)</title><rect x="46.7" y="757" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="49.67" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="581.2" y="645" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="584.15" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.03%)</title><rect x="301.2" y="645" width="0.4" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="304.18" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.03%)</title><rect x="335.3" y="597" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="338.26" y="607.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.06%)</title><rect x="489.7" y="629" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="492.70" y="639.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="101.5" y="853" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="104.45" y="863.5" ></text>
+</g>
+<g >
+<title>half_md4_transform (10,101,010 samples, 0.03%)</title><rect x="319.7" y="613" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="322.73" y="623.5" ></text>
+</g>
+<g >
+<title>__tcp_ack_snd_check (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="325" width="0.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1027.19" y="335.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (121,212,120 samples, 0.38%)</title><rect x="508.2" y="709" width="5.2" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="511.25" y="719.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="457.3" y="645" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="460.35" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="383.6" y="757" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="386.58" y="767.5" ></text>
+</g>
+<g >
+<title>libjson_set_string_internal (969,696,960 samples, 3.00%)</title><rect x="1329.2" y="917" width="41.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1332.17" y="927.5" >lib..</text>
+</g>
+<g >
+<title>mt_find (20,202,020 samples, 0.06%)</title><rect x="692.0" y="645" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="695.02" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="615.2" y="693" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="618.23" y="703.5" ></text>
+</g>
+<g >
+<title>ip_local_out (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="661" width="1.3" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1377.47" y="671.5" ></text>
+</g>
+<g >
+<title>ksys_write (40,404,040 samples, 0.13%)</title><rect x="271.0" y="741" width="1.7" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="273.99" y="751.5" ></text>
+</g>
+<g >
+<title>__inet_hash_connect (10,101,010 samples, 0.03%)</title><rect x="1385.7" y="789" width="0.4" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1388.69" y="799.5" ></text>
+</g>
+<g >
+<title>git_buf_dispose (10,101,010 samples, 0.03%)</title><rect x="447.9" y="725" width="0.4" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="450.86" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="251.6" y="725" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="254.58" y="735.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (70,707,070 samples, 0.22%)</title><rect x="91.1" y="885" width="3.0" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="94.10" y="895.5" ></text>
+</g>
+<g >
+<title>release_sock (10,101,010 samples, 0.03%)</title><rect x="10.0" y="805" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="13.00" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (101,010,100 samples, 0.31%)</title><rect x="182.1" y="597" width="4.3" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="185.12" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="497.9" y="565" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="500.90" y="575.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (313,131,310 samples, 0.97%)</title><rect x="987.9" y="757" width="13.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="990.95" y="767.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="962.9" y="741" width="0.5" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="965.93" y="751.5" ></text>
+</g>
+<g >
+<title>jsonrpc_notification_create (10,101,010 samples, 0.03%)</title><rect x="1328.3" y="949" width="0.4" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1331.31" y="959.5" ></text>
+</g>
+<g >
+<title>slab_pre_alloc_hook.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="525.1" y="629" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="528.07" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="276.2" y="805" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="279.16" y="815.5" ></text>
+</g>
+<g >
+<title>mnt_want_write (10,101,010 samples, 0.03%)</title><rect x="500.1" y="709" width="0.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="503.05" y="719.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="394.4" y="645" width="0.4" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="397.36" y="655.5" ></text>
+</g>
+<g >
+<title>slab_pre_alloc_hook.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="92.0" y="805" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="94.96" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="179.1" y="613" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="182.10" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="466.8" y="549" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="469.84" y="559.5" ></text>
+</g>
+<g >
+<title>__vdso_time (10,101,010 samples, 0.03%)</title><rect x="404.7" y="773" width="0.4" height="15.0" fill="rgb(0,205,63)" rx="2" ry="2" />
+<text x="407.72" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.03%)</title><rect x="1035.0" y="421" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1037.97" y="431.5" ></text>
+</g>
+<g >
+<title>net_send_part (525,252,520 samples, 1.63%)</title><rect x="1004.3" y="901" width="22.5" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1007.34" y="911.5" >n..</text>
+</g>
+<g >
+<title>ext4_remove_blocks (60,606,060 samples, 0.19%)</title><rect x="152.8" y="549" width="2.6" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="155.79" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="405.6" y="789" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="408.58" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.03%)</title><rect x="506.1" y="517" width="0.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="509.09" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="116.6" y="469" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="119.55" y="479.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.03%)</title><rect x="139.8" y="597" width="0.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="142.85" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.09%)</title><rect x="182.1" y="565" width="1.3" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="185.12" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="227.0" y="661" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="229.99" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.09%)</title><rect x="121.3" y="693" width="1.3" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="124.30" y="703.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_create (10,101,010 samples, 0.03%)</title><rect x="524.2" y="661" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="527.21" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.03%)</title><rect x="189.9" y="661" width="0.4" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="192.89" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="429.3" y="757" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="432.31" y="767.5" ></text>
+</g>
+<g >
+<title>ip_rcv (20,202,020 samples, 0.06%)</title><rect x="1387.4" y="501" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1390.41" y="511.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.06%)</title><rect x="261.9" y="613" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="264.93" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_v4_conn_request (20,202,020 samples, 0.06%)</title><rect x="1387.4" y="373" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1390.41" y="383.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="473.7" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="476.74" y="607.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (60,606,060 samples, 0.19%)</title><rect x="1020.7" y="709" width="2.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1023.73" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (20,202,020 samples, 0.06%)</title><rect x="1378.8" y="293" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1381.78" y="303.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="584.2" y="517" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="587.17" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (30,303,030 samples, 0.09%)</title><rect x="131.2" y="533" width="1.3" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="134.22" y="543.5" ></text>
+</g>
+<g >
+<title>__napi_poll (40,404,040 samples, 0.13%)</title><rect x="1021.2" y="485" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1024.17" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="266.2" y="821" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="269.24" y="831.5" ></text>
+</g>
+<g >
+<title>net_rx_action (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="485" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1031.50" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="149.8" y="597" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="152.77" y="607.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (20,202,020 samples, 0.06%)</title><rect x="402.1" y="389" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="405.13" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (20,202,020 samples, 0.06%)</title><rect x="257.2" y="629" width="0.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="260.18" y="639.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_from_slab_obj (10,101,010 samples, 0.03%)</title><rect x="200.7" y="645" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="203.67" y="655.5" ></text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.06%)</title><rect x="230.0" y="677" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="233.01" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="617.8" y="709" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="620.82" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="209.3" y="741" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="212.30" y="751.5" ></text>
+</g>
+<g >
+<title>git_revparse_single (20,202,020 samples, 0.06%)</title><rect x="281.3" y="917" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="284.34" y="927.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="456.9" y="645" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="459.91" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (30,303,030 samples, 0.09%)</title><rect x="334.4" y="629" width="1.3" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="337.40" y="639.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (20,202,020 samples, 0.06%)</title><rect x="402.1" y="437" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="405.13" y="447.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (20,202,020 samples, 0.06%)</title><rect x="1007.8" y="229" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1010.79" y="239.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="226.1" y="677" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="229.12" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="457.8" y="645" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="460.78" y="655.5" ></text>
+</g>
+<g >
+<title>ksys_read (20,202,020 samples, 0.06%)</title><rect x="259.8" y="661" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="262.77" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="494.4" y="805" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="497.45" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="205.8" y="693" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="208.85" y="703.5" ></text>
+</g>
+<g >
+<title>errseq_sample (10,101,010 samples, 0.03%)</title><rect x="422.4" y="629" width="0.4" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="425.40" y="639.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="491.9" y="565" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="494.86" y="575.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="434.5" y="485" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="437.48" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.09%)</title><rect x="484.5" y="629" width="1.3" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="487.52" y="639.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="584.2" y="533" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="587.17" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (10,101,010 samples, 0.03%)</title><rect x="466.8" y="517" width="0.5" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="469.84" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (30,303,030 samples, 0.09%)</title><rect x="466.0" y="677" width="1.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="468.97" y="687.5" ></text>
+</g>
+<g >
+<title>evict (101,010,100 samples, 0.31%)</title><rect x="189.0" y="709" width="4.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="192.02" y="719.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="311.1" y="645" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="314.11" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (30,303,030 samples, 0.09%)</title><rect x="484.5" y="581" width="1.3" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="487.52" y="591.5" ></text>
+</g>
+<g >
+<title>pthread_mutex_destroy (10,101,010 samples, 0.03%)</title><rect x="98.9" y="837" width="0.4" height="15.0" fill="rgb(0,202,51)" rx="2" ry="2" />
+<text x="101.87" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="224.0" y="773" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="226.97" y="783.5" ></text>
+</g>
+<g >
+<title>__napi_poll (70,707,070 samples, 0.22%)</title><rect x="11.3" y="517" width="3.0" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="14.29" y="527.5" ></text>
+</g>
+<g >
+<title>tcp_check_req (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="325" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1031.50" y="335.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="448.3" y="645" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="451.29" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (50,505,050 samples, 0.16%)</title><rect x="261.1" y="693" width="2.1" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="264.07" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.09%)</title><rect x="429.7" y="693" width="1.3" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="432.74" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="429.3" y="773" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="432.31" y="783.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (101,010,100 samples, 0.31%)</title><rect x="388.3" y="741" width="4.3" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="391.32" y="751.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="353.4" y="661" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="356.38" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.03%)</title><rect x="338.7" y="565" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="341.72" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_write (60,606,060 samples, 0.19%)</title><rect x="408.6" y="677" width="2.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="411.60" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (20,202,020 samples, 0.06%)</title><rect x="478.9" y="469" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="481.92" y="479.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="635.5" y="725" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="638.51" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.41%)</title><rect x="330.1" y="757" width="5.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="333.09" y="767.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="214.5" y="821" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="217.48" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.03%)</title><rect x="349.9" y="725" width="0.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="352.93" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="311.1" y="661" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="314.11" y="671.5" ></text>
+</g>
+<g >
+<title>getdents64 (20,202,020 samples, 0.06%)</title><rect x="104.5" y="709" width="0.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="107.47" y="719.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="661" width="1.3" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1385.67" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="239.5" y="741" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="242.50" y="751.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.03%)</title><rect x="992.7" y="613" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="995.69" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.03%)</title><rect x="300.8" y="373" width="0.4" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="303.75" y="383.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="468.1" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="471.13" y="719.5" ></text>
+</g>
+<g >
+<title>apparmor_file_permission (10,101,010 samples, 0.03%)</title><rect x="1376.2" y="741" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1379.20" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="455.2" y="677" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="458.19" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="490.6" y="645" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="493.56" y="655.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="414.6" y="565" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="417.64" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="397.0" y="677" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="399.95" y="687.5" ></text>
+</g>
+<g >
+<title>ksys_write (40,404,040 samples, 0.13%)</title><rect x="360.3" y="677" width="1.7" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="363.28" y="687.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (80,808,080 samples, 0.25%)</title><rect x="11.3" y="645" width="3.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="14.29" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_init_transfer (10,101,010 samples, 0.03%)</title><rect x="1382.2" y="709" width="0.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1385.24" y="719.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="727.8" y="661" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="730.82" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (1,555,555,540 samples, 4.81%)</title><rect x="283.9" y="853" width="66.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="286.93" y="863.5" >[libgit..</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.31%)</title><rect x="453.9" y="757" width="4.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="456.89" y="767.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="587.2" y="629" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="590.19" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="236.0" y="773" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="239.05" y="783.5" ></text>
+</g>
+<g >
+<title>iput (30,303,030 samples, 0.09%)</title><rect x="464.2" y="661" width="1.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="467.25" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="403.9" y="629" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="406.85" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_desc (10,101,010 samples, 0.03%)</title><rect x="74.3" y="821" width="0.4" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="77.28" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_check_dir_entry (10,101,010 samples, 0.03%)</title><rect x="318.4" y="645" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="321.44" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_htree_store_dirent (10,101,010 samples, 0.03%)</title><rect x="319.3" y="645" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="322.30" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="593.7" y="805" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="596.66" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="546.6" y="389" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="549.64" y="399.5" ></text>
+</g>
+<g >
+<title>net_send (60,606,060 samples, 0.19%)</title><rect x="1373.2" y="917" width="2.6" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1376.18" y="927.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="280.9" y="581" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="283.91" y="591.5" ></text>
+</g>
+<g >
+<title>do_filp_open (40,404,040 samples, 0.13%)</title><rect x="497.5" y="709" width="1.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="500.46" y="719.5" ></text>
+</g>
+<g >
+<title>git_signature_now (10,101,010 samples, 0.03%)</title><rect x="239.9" y="853" width="0.5" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="242.93" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="259.8" y="709" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="262.77" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.25%)</title><rect x="601.9" y="773" width="3.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="604.86" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="26.8" y="885" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="29.82" y="895.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (191,919,190 samples, 0.59%)</title><rect x="733.0" y="805" width="8.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="736.00" y="815.5" ></text>
+</g>
+<g >
+<title>__slab_free (10,101,010 samples, 0.03%)</title><rect x="1363.3" y="565" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="1366.25" y="575.5" ></text>
+</g>
+<g >
+<title>path_openat (60,606,060 samples, 0.19%)</title><rect x="253.3" y="741" width="2.6" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="256.30" y="751.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="83.8" y="693" width="0.4" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="86.77" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="522.9" y="629" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="525.92" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (797,979,790 samples, 2.47%)</title><rect x="461.7" y="853" width="34.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="464.66" y="863.5" >[l..</text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="178.7" y="613" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="181.67" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.06%)</title><rect x="213.2" y="773" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="216.18" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="741" width="1.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1014.24" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="235.6" y="741" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="238.61" y="751.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="373.2" y="661" width="0.5" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="376.23" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="353.4" y="757" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="356.38" y="767.5" ></text>
+</g>
+<g >
+<title>getdents64 (80,808,080 samples, 0.25%)</title><rect x="318.0" y="789" width="3.5" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="321.01" y="799.5" ></text>
+</g>
+<g >
+<title>napi_consume_skb (10,101,010 samples, 0.03%)</title><rect x="1022.9" y="485" width="0.4" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1025.89" y="495.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="677" width="1.3" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1385.67" y="687.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="201.5" y="757" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="204.53" y="767.5" ></text>
+</g>
+<g >
+<title>git_remote_is_valid_name (10,101,010 samples, 0.03%)</title><rect x="441.4" y="837" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="444.38" y="847.5" ></text>
+</g>
+<g >
+<title>__send_ipi_one (30,303,030 samples, 0.09%)</title><rect x="1029.4" y="629" width="1.3" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1032.36" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mb_use_best_found (10,101,010 samples, 0.03%)</title><rect x="584.2" y="581" width="0.4" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="587.17" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="610.9" y="613" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="613.92" y="623.5" ></text>
+</g>
+<g >
+<title>ksys_write (30,303,030 samples, 0.09%)</title><rect x="483.2" y="645" width="1.3" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="486.23" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.19%)</title><rect x="157.1" y="741" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="160.10" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_complex_scan_group (10,101,010 samples, 0.03%)</title><rect x="54.0" y="757" width="0.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="57.00" y="767.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (151,515,150 samples, 0.47%)</title><rect x="30.3" y="805" width="6.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="33.28" y="815.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (50,505,050 samples, 0.16%)</title><rect x="44.5" y="757" width="2.2" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="47.51" y="767.5" ></text>
+</g>
+<g >
+<title>__lookup_mnt (10,101,010 samples, 0.03%)</title><rect x="64.8" y="853" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="67.79" y="863.5" ></text>
+</g>
+<g >
+<title>xas_find (10,101,010 samples, 0.03%)</title><rect x="165.7" y="597" width="0.5" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="168.73" y="607.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="494.9" y="661" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="497.88" y="671.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="259.3" y="773" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="262.34" y="783.5" ></text>
+</g>
+<g >
+<title>unlink_cb (80,808,080 samples, 0.25%)</title><rect x="122.6" y="773" width="3.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="125.59" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.09%)</title><rect x="560.4" y="677" width="1.3" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="563.45" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="441.8" y="725" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="444.82" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.03%)</title><rect x="232.2" y="517" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="235.16" y="527.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="385.7" y="549" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="388.74" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="73.0" y="773" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="75.98" y="783.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="613" width="1.3" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1385.67" y="623.5" ></text>
+</g>
+<g >
+<title>rename (121,212,120 samples, 0.38%)</title><rect x="508.2" y="757" width="5.2" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="511.25" y="767.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="245" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1027.19" y="255.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (20,202,020 samples, 0.06%)</title><rect x="963.4" y="805" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="966.36" y="815.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (131,313,130 samples, 0.41%)</title><rect x="10.0" y="853" width="5.6" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="13.00" y="863.5" ></text>
+</g>
+<g >
+<title>sk_reset_timer (10,101,010 samples, 0.03%)</title><rect x="14.7" y="725" width="0.5" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="17.75" y="735.5" ></text>
+</g>
+<g >
+<title>path_parentat (20,202,020 samples, 0.06%)</title><rect x="173.5" y="693" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="176.49" y="703.5" ></text>
+</g>
+<g >
+<title>release_sock (40,404,040 samples, 0.13%)</title><rect x="1382.2" y="805" width="1.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1385.24" y="815.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (40,404,040 samples, 0.13%)</title><rect x="1387.0" y="773" width="1.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1389.98" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="448.3" y="725" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="451.29" y="735.5" ></text>
+</g>
+<g >
+<title>remove (141,414,140 samples, 0.44%)</title><rect x="114.0" y="741" width="6.0" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="116.96" y="751.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.03%)</title><rect x="261.1" y="629" width="0.4" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="264.07" y="639.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (141,414,140 samples, 0.44%)</title><rect x="562.6" y="709" width="6.0" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="565.60" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.47%)</title><rect x="371.9" y="837" width="6.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="374.93" y="847.5" ></text>
+</g>
+<g >
+<title>__fdget_pos (10,101,010 samples, 0.03%)</title><rect x="503.9" y="645" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="506.94" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="472.0" y="629" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="475.01" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="271.9" y="597" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="274.85" y="607.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="444.8" y="661" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="447.84" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="276.6" y="677" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="279.60" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="406.9" y="661" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="409.87" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="309.4" y="693" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="312.38" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.16%)</title><rect x="497.5" y="757" width="2.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="500.46" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_xattr_delete_inode (10,101,010 samples, 0.03%)</title><rect x="341.7" y="581" width="0.5" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="344.73" y="591.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.03%)</title><rect x="134.2" y="629" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="137.24" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (181,818,180 samples, 0.56%)</title><rect x="293.9" y="661" width="7.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="296.85" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="348.6" y="709" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="351.64" y="719.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="250.3" y="725" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="253.28" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (878,787,870 samples, 2.72%)</title><rect x="1329.2" y="885" width="37.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1332.17" y="895.5" >[li..</text>
+</g>
+<g >
+<title>__dev_queue_xmit (30,303,030 samples, 0.09%)</title><rect x="1387.4" y="645" width="1.3" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1390.41" y="655.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="359.0" y="597" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="361.99" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="241.7" y="773" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="244.65" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="405.6" y="821" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="408.58" y="831.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="555.7" y="709" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="558.70" y="719.5" ></text>
+</g>
+<g >
+<title>perf_syscall_enter (10,101,010 samples, 0.03%)</title><rect x="507.8" y="677" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="510.82" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="587.2" y="597" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="590.19" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="383.6" y="789" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="386.58" y="799.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.03%)</title><rect x="1367.1" y="645" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1370.14" y="655.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="1367.1" y="837" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1370.14" y="847.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="132.9" y="517" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="135.94" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="26.8" y="869" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="29.82" y="879.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (20,202,020 samples, 0.06%)</title><rect x="492.3" y="677" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="495.29" y="687.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="151.9" y="421" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="154.93" y="431.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (20,202,020 samples, 0.06%)</title><rect x="213.2" y="869" width="0.8" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="216.18" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="596.7" y="709" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="599.68" y="719.5" ></text>
+</g>
+<g >
+<title>get_current_dir_name (10,101,010 samples, 0.03%)</title><rect x="731.7" y="933" width="0.4" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="734.71" y="943.5" ></text>
+</g>
+<g >
+<title>libjson_recv (50,505,050 samples, 0.16%)</title><rect x="1371.0" y="901" width="2.2" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1374.02" y="911.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (20,202,020 samples, 0.06%)</title><rect x="1352.5" y="757" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1355.47" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="104.5" y="677" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="107.47" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="503.9" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="506.94" y="719.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="603.6" y="629" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="606.59" y="639.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="428.9" y="709" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="431.87" y="719.5" ></text>
+</g>
+<g >
+<title>apparmor_file_free_security (10,101,010 samples, 0.03%)</title><rect x="367.6" y="565" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="370.62" y="575.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="236.5" y="677" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="239.48" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="445.7" y="677" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="448.70" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="283.9" y="837" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="286.93" y="847.5" ></text>
+</g>
+<g >
+<title>mkdir (50,505,050 samples, 0.16%)</title><rect x="356.8" y="725" width="2.2" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="359.83" y="735.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.03%)</title><rect x="244.7" y="661" width="0.4" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="247.67" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="172.6" y="661" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="175.63" y="671.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.03%)</title><rect x="529.0" y="469" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="531.96" y="479.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (30,303,030 samples, 0.09%)</title><rect x="413.3" y="805" width="1.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="416.34" y="815.5" ></text>
+</g>
+<g >
+<title>_copy_to_iter (10,101,010 samples, 0.03%)</title><rect x="621.7" y="565" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="624.70" y="575.5" ></text>
+</g>
+<g >
+<title>syscall_trace_enter.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="587.6" y="773" width="0.5" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="590.62" y="783.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (20,202,020 samples, 0.06%)</title><rect x="1025.9" y="693" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1028.91" y="703.5" ></text>
+</g>
+<g >
+<title>apparmor_capable (10,101,010 samples, 0.03%)</title><rect x="310.2" y="629" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="313.24" y="639.5" ></text>
+</g>
+<g >
+<title>iterate_dir (20,202,020 samples, 0.06%)</title><rect x="104.5" y="645" width="0.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="107.47" y="655.5" ></text>
+</g>
+<g >
+<title>do_anonymous_page (131,313,130 samples, 0.41%)</title><rect x="1321.0" y="821" width="5.6" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1323.98" y="831.5" ></text>
+</g>
+<g >
+<title>path_parentat (20,202,020 samples, 0.06%)</title><rect x="431.5" y="693" width="0.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="434.46" y="703.5" ></text>
+</g>
+<g >
+<title>__rseq_handle_notify_resume (10,101,010 samples, 0.03%)</title><rect x="664.8" y="805" width="0.5" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="667.84" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="397.0" y="693" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="399.95" y="703.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="48.4" y="949" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="51.39" y="959.5" ></text>
+</g>
+<g >
+<title>tcp_clean_rtx_queue.constprop.0 (20,202,020 samples, 0.06%)</title><rect x="1009.9" y="677" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="1012.95" y="687.5" ></text>
+</g>
+<g >
+<title>git_repository_init_ext (2,484,848,460 samples, 7.69%)</title><rect x="495.7" y="869" width="106.2" height="15.0" fill="rgb(0,235,192)" rx="2" ry="2" />
+<text x="498.74" y="879.5" >git_reposito..</text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="244.2" y="565" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="247.24" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="411.2" y="741" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="414.19" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="460.8" y="677" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="463.80" y="687.5" ></text>
+</g>
+<g >
+<title>lookup_fast (20,202,020 samples, 0.06%)</title><rect x="280.5" y="597" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="283.48" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="608.3" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="611.33" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (30,303,030 samples, 0.09%)</title><rect x="466.0" y="597" width="1.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="468.97" y="607.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="962.9" y="725" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="965.93" y="735.5" ></text>
+</g>
+<g >
+<title>release_sock (30,303,030 samples, 0.09%)</title><rect x="1028.1" y="805" width="1.3" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1031.07" y="815.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="373" width="1.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1385.67" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_rename (70,707,070 samples, 0.22%)</title><rect x="510.0" y="645" width="3.0" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="512.97" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,343,434,320 samples, 7.25%)</title><rect x="101.9" y="869" width="100.1" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="104.88" y="879.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>copy_present_pte (30,303,030 samples, 0.09%)</title><rect x="647.6" y="693" width="1.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="650.59" y="703.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="587.2" y="661" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="590.19" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="406.9" y="693" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="409.87" y="703.5" ></text>
+</g>
+<g >
+<title>__sbrk (40,404,040 samples, 0.13%)</title><rect x="1046.2" y="869" width="1.7" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1049.19" y="879.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.03%)</title><rect x="1004.8" y="741" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1007.77" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (30,303,030 samples, 0.09%)</title><rect x="276.2" y="789" width="1.3" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="279.16" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (20,202,020 samples, 0.06%)</title><rect x="139.8" y="613" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="142.85" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="263.7" y="757" width="1.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="266.65" y="767.5" ></text>
+</g>
+<g >
+<title>memcg_account_kmem (10,101,010 samples, 0.03%)</title><rect x="674.8" y="709" width="0.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="677.76" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="431.0" y="773" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="434.03" y="783.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="453.0" y="645" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="456.03" y="655.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="80.7" y="757" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="83.75" y="767.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="284.8" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="287.79" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_connect (181,818,180 samples, 0.56%)</title><rect x="1028.1" y="901" width="7.7" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1031.07" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="487.5" y="485" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="490.54" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="281.3" y="821" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="284.34" y="831.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.03%)</title><rect x="265.8" y="869" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="268.81" y="879.5" ></text>
+</g>
+<g >
+<title>from_kgid (10,101,010 samples, 0.03%)</title><rect x="334.0" y="501" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="336.97" y="511.5" ></text>
+</g>
+<g >
+<title>unlock_buffer (10,101,010 samples, 0.03%)</title><rect x="487.1" y="261" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="490.11" y="271.5" ></text>
+</g>
+<g >
+<title>git_filter_source_flags (10,101,010 samples, 0.03%)</title><rect x="252.4" y="821" width="0.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="255.44" y="831.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="28.1" y="693" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="31.12" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="151.1" y="565" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="154.06" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="500.9" y="613" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="503.92" y="623.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="259.3" y="693" width="0.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="262.34" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="1372.3" y="805" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1375.31" y="815.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="484.1" y="325" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="487.09" y="335.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="545.3" y="517" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="548.35" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="103.2" y="677" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="106.18" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="444.8" y="709" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="447.84" y="719.5" ></text>
+</g>
+<g >
+<title>get_obj_cgroup_from_current (10,101,010 samples, 0.03%)</title><rect x="660.1" y="709" width="0.4" height="15.0" fill="rgb(0,206,71)" rx="2" ry="2" />
+<text x="663.10" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="359.9" y="677" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="362.85" y="687.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="36.7" y="933" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="39.75" y="943.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="484.5" y="661" width="1.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="487.52" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (50,505,050 samples, 0.16%)</title><rect x="356.8" y="629" width="2.2" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="359.83" y="639.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="309.4" y="677" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="312.38" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_send_fin (121,212,120 samples, 0.38%)</title><rect x="31.1" y="645" width="5.2" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="34.14" y="655.5" ></text>
+</g>
+<g >
+<title>open64 (757,575,750 samples, 2.34%)</title><rect x="56.6" y="1013" width="32.3" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="59.59" y="1023.5" >op..</text>
+</g>
+<g >
+<title>truncate_inode_pages_final (50,505,050 samples, 0.16%)</title><rect x="108.4" y="581" width="2.1" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="111.36" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="378.8" y="661" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="381.83" y="671.5" ></text>
+</g>
+<g >
+<title>__next_zones_zonelist (10,101,010 samples, 0.03%)</title><rect x="1358.1" y="709" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1361.08" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="668.7" y="853" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="671.72" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="428.4" y="725" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="431.44" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="449.1" y="565" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="452.15" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="377.1" y="645" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="380.11" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="444.8" y="725" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="447.84" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="383.1" y="741" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="386.15" y="751.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (60,606,060 samples, 0.19%)</title><rect x="1324.0" y="773" width="2.6" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1327.00" y="783.5" ></text>
+</g>
+<g >
+<title>charge_memcg (20,202,020 samples, 0.06%)</title><rect x="1352.5" y="741" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1355.47" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="598.0" y="789" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="600.98" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (80,808,080 samples, 0.25%)</title><rect x="162.7" y="661" width="3.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="165.71" y="671.5" ></text>
+</g>
+<g >
+<title>io_schedule (10,101,010 samples, 0.03%)</title><rect x="427.1" y="501" width="0.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="430.15" y="511.5" ></text>
+</g>
+<g >
+<title>ip_local_out (90,909,090 samples, 0.28%)</title><rect x="10.9" y="693" width="3.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="13.86" y="703.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.03%)</title><rect x="261.1" y="613" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="264.07" y="623.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.03%)</title><rect x="471.2" y="533" width="0.4" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="474.15" y="543.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.03%)</title><rect x="51.4" y="773" width="0.4" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="54.41" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (30,303,030 samples, 0.09%)</title><rect x="1021.6" y="341" width="1.3" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1024.60" y="351.5" ></text>
+</g>
+<g >
+<title>__folio_alloc (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="789" width="0.5" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1047.03" y="799.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="610.1" y="693" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="613.06" y="703.5" ></text>
+</g>
+<g >
+<title>__irq_work_queue_local (80,808,080 samples, 0.25%)</title><rect x="1029.4" y="677" width="3.4" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="1032.36" y="687.5" ></text>
+</g>
+<g >
+<title>iput (70,707,070 samples, 0.22%)</title><rect x="115.3" y="629" width="3.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="118.26" y="639.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (50,505,050 samples, 0.16%)</title><rect x="11.3" y="421" width="2.2" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="14.29" y="431.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="396.5" y="693" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="399.52" y="703.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="89.4" y="981" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="92.37" y="991.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.03%)</title><rect x="217.9" y="661" width="0.5" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="220.93" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="526.4" y="645" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="529.37" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="482.4" y="469" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="485.37" y="479.5" ></text>
+</g>
+<g >
+<title>inode_permission (30,303,030 samples, 0.09%)</title><rect x="306.4" y="629" width="1.3" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="309.36" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="473.3" y="677" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="476.31" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="215.8" y="789" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="218.77" y="799.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.03%)</title><rect x="111.8" y="629" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="114.81" y="639.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.03%)</title><rect x="244.2" y="485" width="0.5" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="247.24" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="475.5" y="581" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="478.46" y="591.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="242.5" y="645" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="245.52" y="655.5" ></text>
+</g>
+<g >
+<title>hook_path_mkdir (10,101,010 samples, 0.03%)</title><rect x="49.3" y="917" width="0.4" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="52.26" y="927.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="122.2" y="661" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="125.16" y="671.5" ></text>
+</g>
+<g >
+<title>apparmor_file_permission (10,101,010 samples, 0.03%)</title><rect x="419.8" y="629" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="422.82" y="639.5" ></text>
+</g>
+<g >
+<title>pthread_mutex_lock (10,101,010 samples, 0.03%)</title><rect x="101.0" y="853" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="104.02" y="863.5" ></text>
+</g>
+<g >
+<title>getdents64 (10,101,010 samples, 0.03%)</title><rect x="447.0" y="693" width="0.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="449.99" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (30,303,030 samples, 0.09%)</title><rect x="549.2" y="629" width="1.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="552.23" y="639.5" ></text>
+</g>
+<g >
+<title>__folio_batch_release (10,101,010 samples, 0.03%)</title><rect x="509.5" y="533" width="0.5" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="512.54" y="543.5" ></text>
+</g>
+<g >
+<title>tcp_server_accept (111,111,110 samples, 0.34%)</title><rect x="37.2" y="933" width="4.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="40.18" y="943.5" ></text>
+</g>
+<g >
+<title>tcp_close (20,202,020 samples, 0.06%)</title><rect x="1026.8" y="741" width="0.8" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1029.77" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (60,606,060 samples, 0.19%)</title><rect x="253.3" y="789" width="2.6" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="256.30" y="799.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.03%)</title><rect x="187.7" y="789" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="190.73" y="799.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="154.1" y="469" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="157.08" y="479.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.06%)</title><rect x="602.7" y="677" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="605.72" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (70,707,070 samples, 0.22%)</title><rect x="519.5" y="661" width="3.0" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="522.47" y="671.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="962.9" y="757" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="965.93" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_io_submit (10,101,010 samples, 0.03%)</title><rect x="466.4" y="565" width="0.4" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="469.41" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="265.4" y="757" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="268.38" y="767.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="277.0" y="757" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="280.03" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.03%)</title><rect x="412.1" y="549" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="415.05" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="393.9" y="661" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="396.93" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="487.1" y="341" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="490.11" y="351.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (40,404,040 samples, 0.13%)</title><rect x="420.2" y="629" width="1.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="423.25" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.28%)</title><rect x="208.9" y="837" width="3.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="211.87" y="847.5" ></text>
+</g>
+<g >
+<title>tcp_push (80,808,080 samples, 0.25%)</title><rect x="1020.7" y="757" width="3.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1023.73" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="202.4" y="821" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="205.40" y="831.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="393.9" y="613" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="396.93" y="623.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.03%)</title><rect x="409.9" y="501" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="412.89" y="511.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="228.3" y="709" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="231.28" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="230.0" y="565" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="233.01" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="618.7" y="741" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="621.68" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="601.4" y="741" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="604.43" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="444.8" y="773" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="447.84" y="783.5" ></text>
+</g>
+<g >
+<title>readdir64 (10,101,010 samples, 0.03%)</title><rect x="447.0" y="709" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="449.99" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="441.8" y="661" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="444.82" y="671.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.03%)</title><rect x="1366.3" y="757" width="0.4" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="1369.27" y="767.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.03%)</title><rect x="98.9" y="741" width="0.4" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="101.87" y="751.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="259.3" y="821" width="0.5" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="262.34" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="442.7" y="709" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="445.68" y="719.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (30,303,030 samples, 0.09%)</title><rect x="402.1" y="581" width="1.3" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="405.13" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="503.1" y="565" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="506.07" y="575.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="300.8" y="533" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="303.75" y="543.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="586.8" y="773" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="589.76" y="783.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.03%)</title><rect x="447.4" y="629" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="450.42" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (171,717,170 samples, 0.53%)</title><rect x="517.3" y="773" width="7.3" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="520.31" y="783.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="280.5" y="629" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="283.48" y="639.5" ></text>
+</g>
+<g >
+<title>io_schedule (10,101,010 samples, 0.03%)</title><rect x="253.7" y="565" width="0.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="256.73" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="255.9" y="821" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="258.89" y="831.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="40.6" y="741" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="43.63" y="751.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="393.9" y="629" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="396.93" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (20,202,020 samples, 0.06%)</title><rect x="308.5" y="677" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="311.52" y="687.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="327.9" y="773" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="330.93" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="160.1" y="789" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="163.12" y="799.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="727.8" y="805" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="730.82" y="815.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="603.6" y="613" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="606.59" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="614.8" y="661" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="617.80" y="671.5" ></text>
+</g>
+<g >
+<title>do_rmdir (30,303,030 samples, 0.09%)</title><rect x="105.3" y="629" width="1.3" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="108.34" y="639.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="639.4" y="725" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="642.39" y="735.5" ></text>
+</g>
+<g >
+<title>sock_alloc_file (40,404,040 samples, 0.13%)</title><rect x="39.8" y="805" width="1.7" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="42.77" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (131,313,130 samples, 0.41%)</title><rect x="89.8" y="997" width="5.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="92.81" y="1007.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (40,404,040 samples, 0.13%)</title><rect x="342.2" y="565" width="1.7" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="345.17" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="591.5" y="789" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="594.51" y="799.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="203.7" y="661" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="206.69" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="362.9" y="645" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="365.87" y="655.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="390.5" y="549" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="393.48" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (20,202,020 samples, 0.06%)</title><rect x="151.9" y="549" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="154.93" y="559.5" ></text>
+</g>
+<g >
+<title>legitimize_links (10,101,010 samples, 0.03%)</title><rect x="220.9" y="581" width="0.5" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="223.95" y="591.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="234.3" y="725" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="237.32" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="620.4" y="757" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="623.41" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="522.9" y="597" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="525.92" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.03%)</title><rect x="149.8" y="613" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="152.77" y="623.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="326.6" y="629" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="329.64" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="353.8" y="789" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="356.81" y="799.5" ></text>
+</g>
+<g >
+<title>lookup_fast (20,202,020 samples, 0.06%)</title><rect x="94.1" y="885" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="97.12" y="895.5" ></text>
+</g>
+<g >
+<title>git_odb_backend_pack (30,303,030 samples, 0.09%)</title><rect x="460.4" y="821" width="1.3" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="463.37" y="831.5" ></text>
+</g>
+<g >
+<title>__pte_offset_map_lock (10,101,010 samples, 0.03%)</title><rect x="1353.3" y="757" width="0.5" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1356.33" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (868,686,860 samples, 2.69%)</title><rect x="240.4" y="901" width="37.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="243.36" y="911.5" >[li..</text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="98.9" y="773" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="101.87" y="783.5" ></text>
+</g>
+<g >
+<title>__do_softirq (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="501" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1385.67" y="511.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (30,303,030 samples, 0.09%)</title><rect x="445.7" y="693" width="1.3" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="448.70" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="339.6" y="469" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="342.58" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="406.0" y="757" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="409.01" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="497.9" y="597" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="500.90" y="607.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="367.6" y="725" width="0.4" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="370.62" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="265.8" y="821" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="268.81" y="831.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="251.1" y="773" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="254.14" y="783.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="286.5" y="629" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="289.52" y="639.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="84.2" y="773" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="87.20" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="406.0" y="741" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="409.01" y="751.5" ></text>
+</g>
+<g >
+<title>__rseq_handle_notify_resume (10,101,010 samples, 0.03%)</title><rect x="588.1" y="757" width="0.4" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="591.06" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="235.6" y="533" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="238.61" y="543.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (10,101,010 samples, 0.03%)</title><rect x="511.3" y="485" width="0.4" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="514.27" y="495.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="396.5" y="597" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="399.52" y="607.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="564.3" y="469" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="567.33" y="479.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="110.9" y="725" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="113.94" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mb_release_context.isra.0 (10,101,010 samples, 0.03%)</title><rect x="480.2" y="485" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="483.21" y="495.5" ></text>
+</g>
+<g >
+<title>folio_create_empty_buffers (10,101,010 samples, 0.03%)</title><rect x="463.4" y="581" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="466.39" y="591.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="463.8" y="789" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="466.82" y="799.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="264.1" y="645" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="267.09" y="655.5" ></text>
+</g>
+<g >
+<title>__fput (20,202,020 samples, 0.06%)</title><rect x="313.7" y="677" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="316.69" y="687.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="597" width="1.3" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1014.24" y="607.5" ></text>
+</g>
+<g >
+<title>common_perm_cond (10,101,010 samples, 0.03%)</title><rect x="622.1" y="613" width="0.5" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="625.14" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="574.7" y="693" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="577.68" y="703.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="539.3" y="725" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="542.31" y="735.5" ></text>
+</g>
+<g >
+<title>copyin (10,101,010 samples, 0.03%)</title><rect x="334.4" y="581" width="0.4" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="337.40" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="507.8" y="741" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="510.82" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="605.3" y="725" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="608.31" y="735.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="272.3" y="581" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="275.28" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (20,202,020 samples, 0.06%)</title><rect x="564.8" y="565" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="567.76" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="172.6" y="629" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="175.63" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.28%)</title><rect x="392.6" y="741" width="3.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="395.64" y="751.5" ></text>
+</g>
+<g >
+<title>prepare_creds (10,101,010 samples, 0.03%)</title><rect x="633.4" y="757" width="0.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="636.35" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (121,212,120 samples, 0.38%)</title><rect x="302.9" y="709" width="5.2" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="305.91" y="719.5" ></text>
+</g>
+<g >
+<title>git_reference_create_matching (414,141,410 samples, 1.28%)</title><rect x="354.2" y="837" width="17.7" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="357.25" y="847.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (20,202,020 samples, 0.06%)</title><rect x="271.0" y="629" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="273.99" y="639.5" ></text>
+</g>
+<g >
+<title>inet_csk_destroy_sock (10,101,010 samples, 0.03%)</title><rect x="32.9" y="133" width="0.4" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="35.86" y="143.5" ></text>
+</g>
+<g >
+<title>do_filp_open (30,303,030 samples, 0.09%)</title><rect x="481.9" y="629" width="1.3" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="484.93" y="639.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="224.8" y="533" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="227.83" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="311.5" y="613" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="314.54" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="546.2" y="485" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="549.21" y="495.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="587.2" y="677" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="590.19" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (101,010,100 samples, 0.31%)</title><rect x="1044.9" y="917" width="4.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1047.89" y="927.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="213.2" y="901" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="216.18" y="911.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="275.7" y="693" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="278.73" y="703.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="999.6" y="565" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1002.60" y="575.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="343.5" y="437" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="346.46" y="447.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (30,303,030 samples, 0.09%)</title><rect x="91.1" y="869" width="1.3" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="94.10" y="879.5" ></text>
+</g>
+<g >
+<title>git_repository_open_ext (252,525,250 samples, 0.78%)</title><rect x="591.1" y="853" width="10.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="594.08" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="1026.8" y="917" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1029.77" y="927.5" ></text>
+</g>
+<g >
+<title>readdir64 (20,202,020 samples, 0.06%)</title><rect x="104.5" y="725" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="107.47" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="234.3" y="741" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="237.32" y="751.5" ></text>
+</g>
+<g >
+<title>wake_up_bit (10,101,010 samples, 0.03%)</title><rect x="584.2" y="277" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="587.17" y="287.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="192.5" y="661" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="195.48" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.03%)</title><rect x="205.4" y="693" width="0.4" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="208.42" y="703.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (10,101,010 samples, 0.03%)</title><rect x="297.7" y="517" width="0.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="300.73" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="268.0" y="789" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="270.97" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_brk (10,101,010 samples, 0.03%)</title><rect x="1366.7" y="757" width="0.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1369.71" y="767.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (30,303,030 samples, 0.09%)</title><rect x="481.9" y="581" width="1.3" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="484.93" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_rename (111,111,110 samples, 0.34%)</title><rect x="343.9" y="693" width="4.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="346.89" y="703.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (30,303,030 samples, 0.09%)</title><rect x="152.8" y="501" width="1.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="155.79" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_da_release_space (10,101,010 samples, 0.03%)</title><rect x="465.1" y="581" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="468.11" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="220.1" y="773" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="223.08" y="783.5" ></text>
+</g>
+<g >
+<title>evict (101,010,100 samples, 0.31%)</title><rect x="544.1" y="597" width="4.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="547.05" y="607.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="383.1" y="661" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="386.15" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_htree_store_dirent (10,101,010 samples, 0.03%)</title><rect x="171.8" y="661" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="174.77" y="671.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.03%)</title><rect x="104.0" y="533" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="107.04" y="543.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="590.6" y="629" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="593.64" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (161,616,160 samples, 0.50%)</title><rect x="1382.2" y="917" width="6.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1385.24" y="927.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="447.4" y="693" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="450.42" y="703.5" ></text>
+</g>
+<g >
+<title>__memset (20,202,020 samples, 0.06%)</title><rect x="657.9" y="725" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="660.94" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.22%)</title><rect x="445.3" y="773" width="3.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="448.27" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_set_inode_flags (10,101,010 samples, 0.03%)</title><rect x="254.6" y="661" width="0.4" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="257.60" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.22%)</title><rect x="1377.1" y="901" width="3.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1380.06" y="911.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct_nocheck (20,202,020 samples, 0.06%)</title><rect x="433.6" y="501" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="436.62" y="511.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="522.5" y="549" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="525.49" y="559.5" ></text>
+</g>
+<g >
+<title>remove (161,616,160 samples, 0.50%)</title><rect x="161.8" y="789" width="6.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="164.85" y="799.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.03%)</title><rect x="1376.6" y="901" width="0.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1379.63" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.03%)</title><rect x="312.0" y="661" width="0.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="314.97" y="671.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="378.0" y="613" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="380.97" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="356.8" y="613" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="359.83" y="623.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="421" width="1.3" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1385.67" y="431.5" ></text>
+</g>
+<g >
+<title>libjson_set_internal (10,101,010 samples, 0.03%)</title><rect x="1370.2" y="901" width="0.4" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1373.16" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="222.2" y="581" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="225.24" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (20,202,020 samples, 0.06%)</title><rect x="1024.2" y="741" width="0.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1027.19" y="751.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="111.4" y="677" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="114.38" y="687.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (111,111,110 samples, 0.34%)</title><rect x="82.0" y="821" width="4.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="85.04" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.16%)</title><rect x="171.3" y="773" width="2.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="174.34" y="783.5" ></text>
+</g>
+<g >
+<title>getname_flags (30,303,030 samples, 0.09%)</title><rect x="375.4" y="629" width="1.3" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="378.38" y="639.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="91.5" y="805" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="94.53" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_link (10,101,010 samples, 0.03%)</title><rect x="488.8" y="677" width="0.5" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="491.84" y="687.5" ></text>
+</g>
+<g >
+<title>filldir64 (10,101,010 samples, 0.03%)</title><rect x="133.8" y="661" width="0.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="136.81" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="622.1" y="693" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="625.14" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="516.0" y="517" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="519.01" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="140.7" y="629" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="143.71" y="639.5" ></text>
+</g>
+<g >
+<title>ksys_write (60,606,060 samples, 0.19%)</title><rect x="553.1" y="677" width="2.6" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="556.11" y="687.5" ></text>
+</g>
+<g >
+<title>should_failslab (10,101,010 samples, 0.03%)</title><rect x="294.7" y="533" width="0.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="297.71" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="237.8" y="741" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="240.77" y="751.5" ></text>
+</g>
+<g >
+<title>ext4fs_dirhash (10,101,010 samples, 0.03%)</title><rect x="319.7" y="645" width="0.5" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="322.73" y="655.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.03%)</title><rect x="10.9" y="661" width="0.4" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="13.86" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.41%)</title><rect x="10.0" y="901" width="5.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="13.00" y="911.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="419.4" y="757" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="422.38" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="494.9" y="805" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="497.88" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="613.1" y="725" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="616.08" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="257.2" y="821" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="260.18" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.03%)</title><rect x="244.2" y="549" width="0.5" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="247.24" y="559.5" ></text>
+</g>
+<g >
+<title>do_vmi_align_munmap (191,919,190 samples, 0.59%)</title><rect x="733.0" y="741" width="8.2" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="736.00" y="751.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.03%)</title><rect x="593.2" y="645" width="0.5" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="596.23" y="655.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="414.6" y="741" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="417.64" y="751.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="584.2" y="437" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="587.17" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="281.3" y="645" width="0.5" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="284.34" y="655.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.03%)</title><rect x="1380.9" y="757" width="0.5" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1383.94" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="150.2" y="581" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="153.20" y="591.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (20,202,020 samples, 0.06%)</title><rect x="402.1" y="469" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="405.13" y="479.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="513.0" y="645" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="515.99" y="655.5" ></text>
+</g>
+<g >
+<title>dentry_free (10,101,010 samples, 0.03%)</title><rect x="28.1" y="709" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="31.12" y="719.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="353.4" y="645" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="356.38" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="460.4" y="789" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="463.37" y="799.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="303.3" y="661" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="306.34" y="671.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.03%)</title><rect x="255.0" y="645" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="258.03" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="279.6" y="693" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="282.62" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="26.8" y="901" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="29.82" y="911.5" ></text>
+</g>
+<g >
+<title>__wait_on_bit (10,101,010 samples, 0.03%)</title><rect x="572.1" y="645" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="575.09" y="655.5" ></text>
+</g>
+<g >
+<title>malloc (20,202,020 samples, 0.06%)</title><rect x="609.6" y="741" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="612.62" y="751.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.03%)</title><rect x="1037.1" y="869" width="0.5" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="1040.13" y="879.5" ></text>
+</g>
+<g >
+<title>mas_walk (20,202,020 samples, 0.06%)</title><rect x="1001.8" y="741" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1004.75" y="751.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.06%)</title><rect x="213.2" y="853" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="216.18" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="214.0" y="869" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="217.05" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="428.9" y="741" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="431.87" y="751.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.03%)</title><rect x="495.3" y="645" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="498.31" y="655.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.03%)</title><rect x="547.9" y="437" width="0.5" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="550.94" y="447.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (10,101,010 samples, 0.03%)</title><rect x="403.0" y="517" width="0.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="405.99" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="596.3" y="693" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="599.25" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="588.5" y="837" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="591.49" y="847.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.03%)</title><rect x="208.0" y="725" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="211.01" y="735.5" ></text>
+</g>
+<g >
+<title>apparmor_file_alloc_security (10,101,010 samples, 0.03%)</title><rect x="598.8" y="549" width="0.5" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="601.84" y="559.5" ></text>
+</g>
+<g >
+<title>__memcpy (10,101,010 samples, 0.03%)</title><rect x="626.4" y="757" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="629.45" y="767.5" ></text>
+</g>
+<g >
+<title>cpuset_fork (10,101,010 samples, 0.03%)</title><rect x="20.4" y="933" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="23.35" y="943.5" ></text>
+</g>
+<g >
+<title>link (20,202,020 samples, 0.06%)</title><rect x="411.6" y="789" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="414.62" y="799.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (20,202,020 samples, 0.06%)</title><rect x="459.5" y="677" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="462.50" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="626.9" y="741" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="629.88" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="125.2" y="581" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="128.18" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_xattr_delete_inode (10,101,010 samples, 0.03%)</title><rect x="204.1" y="709" width="0.5" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="207.12" y="719.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="48.8" y="821" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="51.82" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (30,303,030 samples, 0.09%)</title><rect x="182.1" y="501" width="1.3" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="185.12" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="450.9" y="773" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="453.88" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (30,303,030 samples, 0.09%)</title><rect x="258.0" y="645" width="1.3" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="261.05" y="655.5" ></text>
+</g>
+<g >
+<title>save_fpregs_to_fpstate (10,101,010 samples, 0.03%)</title><rect x="312.0" y="565" width="0.4" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="314.97" y="575.5" ></text>
+</g>
+<g >
+<title>git_clone_options_init (10,101,010 samples, 0.03%)</title><rect x="624.7" y="901" width="0.5" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="627.72" y="911.5" ></text>
+</g>
+<g >
+<title>kernel_clone (747,474,740 samples, 2.31%)</title><rect x="632.9" y="805" width="31.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="635.92" y="815.5" >ke..</text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="456.1" y="597" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="459.05" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (90,909,090 samples, 0.28%)</title><rect x="114.4" y="645" width="3.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="117.40" y="655.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="741" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1047.03" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="615.7" y="821" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="618.66" y="831.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.06%)</title><rect x="356.0" y="613" width="0.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="358.97" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="612.2" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="615.21" y="735.5" ></text>
+</g>
+<g >
+<title>git_buf_dispose (10,101,010 samples, 0.03%)</title><rect x="56.2" y="1013" width="0.4" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="59.16" y="1023.5" ></text>
+</g>
+<g >
+<title>security_sock_rcv_skb (10,101,010 samples, 0.03%)</title><rect x="1021.2" y="325" width="0.4" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="1024.17" y="335.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.03%)</title><rect x="486.7" y="549" width="0.4" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="489.68" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="502.6" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="505.64" y="815.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="362.0" y="629" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="365.01" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.03%)</title><rect x="396.1" y="613" width="0.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="399.09" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.22%)</title><rect x="365.5" y="757" width="3.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="368.46" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="551.4" y="741" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="554.39" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="470.3" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="473.29" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="177.8" y="645" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="180.81" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.41%)</title><rect x="609.6" y="837" width="5.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="612.62" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (101,010,100 samples, 0.31%)</title><rect x="182.1" y="613" width="4.3" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="185.12" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="619.5" y="725" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="622.55" y="735.5" ></text>
+</g>
+<g >
+<title>truncate_cleanup_folio (10,101,010 samples, 0.03%)</title><rect x="343.5" y="549" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="346.46" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_find_extent (10,101,010 samples, 0.03%)</title><rect x="257.6" y="565" width="0.4" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="260.61" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (121,212,120 samples, 0.38%)</title><rect x="302.9" y="757" width="5.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="305.91" y="767.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="490.6" y="501" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="493.56" y="511.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.06%)</title><rect x="615.7" y="725" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="618.66" y="735.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="613.1" y="645" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="616.08" y="655.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="315.0" y="677" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="317.99" y="687.5" ></text>
+</g>
+<g >
+<title>nf_nat_inet_fn (10,101,010 samples, 0.03%)</title><rect x="1387.0" y="693" width="0.4" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1389.98" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.03%)</title><rect x="409.9" y="549" width="0.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="412.89" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="287.8" y="597" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="290.81" y="607.5" ></text>
+</g>
+<g >
+<title>git_odb_read_header (80,808,080 samples, 0.25%)</title><rect x="365.5" y="805" width="3.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="368.46" y="815.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (20,202,020 samples, 0.06%)</title><rect x="963.4" y="789" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="966.36" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (40,404,040 samples, 0.13%)</title><rect x="1007.8" y="293" width="1.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1010.79" y="303.5" ></text>
+</g>
+<g >
+<title>__remove_inode_hash (10,101,010 samples, 0.03%)</title><rect x="424.6" y="613" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="427.56" y="623.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="48.4" y="917" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="51.39" y="927.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (20,202,020 samples, 0.06%)</title><rect x="547.5" y="565" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="550.51" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="279.2" y="821" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="282.18" y="831.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="451.7" y="725" width="0.5" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="454.74" y="735.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="336.6" y="645" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="339.56" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="592.8" y="741" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="595.80" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="406.0" y="709" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="409.01" y="719.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="597" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1031.50" y="607.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.03%)</title><rect x="253.7" y="629" width="0.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="256.73" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="513.4" y="661" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="516.43" y="671.5" ></text>
+</g>
+<g >
+<title>_find_next_zero_bit (10,101,010 samples, 0.03%)</title><rect x="574.3" y="709" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="577.25" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (50,505,050 samples, 0.16%)</title><rect x="607.5" y="709" width="2.1" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="610.47" y="719.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.03%)</title><rect x="224.8" y="517" width="0.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="227.83" y="527.5" ></text>
+</g>
+<g >
+<title>__do_softirq (70,707,070 samples, 0.22%)</title><rect x="1006.9" y="469" width="3.0" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1009.93" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="279.6" y="789" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="282.62" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (30,303,030 samples, 0.09%)</title><rect x="1021.6" y="325" width="1.3" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1024.60" y="335.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="378.4" y="741" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="381.40" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (707,070,700 samples, 2.19%)</title><rect x="240.4" y="885" width="30.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="243.36" y="895.5" >[l..</text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.03%)</title><rect x="197.7" y="645" width="0.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="200.65" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="99.7" y="869" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="102.73" y="879.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="245.1" y="789" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="248.10" y="799.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="390.1" y="565" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="393.05" y="575.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.03%)</title><rect x="511.3" y="469" width="0.4" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="514.27" y="479.5" ></text>
+</g>
+<g >
+<title>dd_dispatch_request (10,101,010 samples, 0.03%)</title><rect x="402.6" y="373" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="405.56" y="383.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="510.8" y="517" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="513.84" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_rename (111,111,110 samples, 0.34%)</title><rect x="343.9" y="661" width="4.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="346.89" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.03%)</title><rect x="487.5" y="549" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="490.54" y="559.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="206.7" y="789" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="209.71" y="799.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (50,505,050 samples, 0.16%)</title><rect x="157.1" y="693" width="2.2" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="160.10" y="703.5" ></text>
+</g>
+<g >
+<title>should_failslab (10,101,010 samples, 0.03%)</title><rect x="198.1" y="661" width="0.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="201.08" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (20,202,020 samples, 0.06%)</title><rect x="552.3" y="693" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="555.25" y="703.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.03%)</title><rect x="443.1" y="581" width="0.4" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="446.11" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.03%)</title><rect x="523.3" y="645" width="0.5" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="526.35" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="477.2" y="549" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="480.19" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_gettid (10,101,010 samples, 0.03%)</title><rect x="214.0" y="853" width="0.5" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="217.05" y="863.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (10,101,010 samples, 0.03%)</title><rect x="204.6" y="709" width="0.4" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="207.55" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="428.9" y="661" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="431.87" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="268.4" y="677" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="271.40" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="336.6" y="741" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="339.56" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (40,404,040 samples, 0.13%)</title><rect x="183.8" y="517" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="186.85" y="527.5" ></text>
+</g>
+<g >
+<title>dentry_free (10,101,010 samples, 0.03%)</title><rect x="201.1" y="677" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="204.10" y="687.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (10,101,010 samples, 0.03%)</title><rect x="225.3" y="581" width="0.4" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="228.26" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.03%)</title><rect x="210.6" y="645" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="213.59" y="655.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="516.0" y="597" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="519.01" y="607.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="304.2" y="629" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="307.20" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="172.2" y="661" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="175.20" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="731.7" y="869" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="734.71" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_find_extent (10,101,010 samples, 0.03%)</title><rect x="294.7" y="565" width="0.4" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="297.71" y="575.5" ></text>
+</g>
+<g >
+<title>read (20,202,020 samples, 0.06%)</title><rect x="552.3" y="741" width="0.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="555.25" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_ensure_credits (10,101,010 samples, 0.03%)</title><rect x="145.9" y="613" width="0.4" height="15.0" fill="rgb(0,192,11)" rx="2" ry="2" />
+<text x="148.89" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (181,818,180 samples, 0.56%)</title><rect x="1028.1" y="917" width="7.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1031.07" y="927.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.03%)</title><rect x="336.6" y="693" width="0.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="339.56" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="217.1" y="805" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="220.06" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,606,060,580 samples, 8.07%)</title><rect x="101.9" y="901" width="111.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="104.88" y="911.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.03%)</title><rect x="625.2" y="821" width="0.4" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="628.15" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.06%)</title><rect x="459.5" y="773" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="462.50" y="783.5" ></text>
+</g>
+<g >
+<title>brk (10,101,010 samples, 0.03%)</title><rect x="1366.7" y="805" width="0.4" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="1369.71" y="815.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (121,212,120 samples, 0.38%)</title><rect x="31.1" y="629" width="5.2" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="34.14" y="639.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="422.4" y="773" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="425.40" y="783.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="541.0" y="501" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="544.03" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (20,202,020 samples, 0.06%)</title><rect x="426.3" y="517" width="0.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="429.29" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.19%)</title><rect x="1373.2" y="869" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1376.18" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="88.9" y="997" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="91.94" y="1007.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="393.1" y="725" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="396.07" y="735.5" ></text>
+</g>
+<g >
+<title>ip_local_out (60,606,060 samples, 0.19%)</title><rect x="1377.5" y="613" width="2.6" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1380.49" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="560.4" y="661" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="563.45" y="671.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="239.1" y="597" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="242.07" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="107.9" y="565" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="110.92" y="575.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="350.4" y="725" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="353.36" y="735.5" ></text>
+</g>
+<g >
+<title>mm_init (10,101,010 samples, 0.03%)</title><rect x="662.3" y="757" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="665.25" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.03%)</title><rect x="324.9" y="597" width="0.4" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="327.91" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (40,404,040 samples, 0.13%)</title><rect x="112.2" y="693" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="115.24" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="448.3" y="709" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="451.29" y="719.5" ></text>
+</g>
+<g >
+<title>clock_gettime (10,101,010 samples, 0.03%)</title><rect x="497.0" y="789" width="0.5" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="500.03" y="799.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="476.3" y="565" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="479.33" y="575.5" ></text>
+</g>
+<g >
+<title>security_inode_alloc (20,202,020 samples, 0.06%)</title><rect x="77.7" y="789" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="80.73" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="369.8" y="613" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="372.77" y="623.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="268.4" y="709" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="271.40" y="719.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_handle_over_high (10,101,010 samples, 0.03%)</title><rect x="393.5" y="613" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="396.50" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="440.1" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="443.09" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (40,404,040 samples, 0.13%)</title><rect x="450.9" y="821" width="1.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="453.88" y="831.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="693" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1031.50" y="703.5" ></text>
+</g>
+<g >
+<title>printbuf_new (10,101,010 samples, 0.03%)</title><rect x="1003.5" y="885" width="0.4" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="1006.48" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (10,101,010 samples, 0.03%)</title><rect x="564.3" y="565" width="0.5" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="567.33" y="575.5" ></text>
+</g>
+<g >
+<title>filemap_get_read_batch (10,101,010 samples, 0.03%)</title><rect x="441.8" y="549" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="444.82" y="559.5" ></text>
+</g>
+<g >
+<title>iput (212,121,210 samples, 0.66%)</title><rect x="177.4" y="693" width="9.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="180.38" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.06%)</title><rect x="82.5" y="789" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="85.47" y="799.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (10,101,010 samples, 0.03%)</title><rect x="76.9" y="741" width="0.4" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="79.86" y="751.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.03%)</title><rect x="501.3" y="629" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="504.35" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="482.4" y="453" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="485.37" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (20,202,020 samples, 0.06%)</title><rect x="289.5" y="645" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="292.54" y="655.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.03%)</title><rect x="62.6" y="853" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="65.63" y="863.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="382.7" y="629" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="385.72" y="639.5" ></text>
+</g>
+<g >
+<title>tzset (30,303,030 samples, 0.09%)</title><rect x="370.6" y="773" width="1.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="373.64" y="783.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="54.9" y="885" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="57.86" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (404,040,400 samples, 1.25%)</title><rect x="551.4" y="805" width="17.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="554.39" y="815.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (121,212,120 samples, 0.38%)</title><rect x="431.5" y="725" width="5.1" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="434.46" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="234.8" y="821" width="2.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="237.75" y="831.5" ></text>
+</g>
+<g >
+<title>inode_init_always (10,101,010 samples, 0.03%)</title><rect x="514.3" y="661" width="0.4" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="517.29" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (30,303,030 samples, 0.09%)</title><rect x="205.4" y="741" width="1.3" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="208.42" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="462.5" y="725" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="465.52" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="459.1" y="805" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="462.07" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="168.7" y="773" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="171.75" y="783.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.03%)</title><rect x="219.2" y="725" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="222.22" y="735.5" ></text>
+</g>
+<g >
+<title>__jbd2_journal_temp_unlink_buffer (10,101,010 samples, 0.03%)</title><rect x="209.3" y="661" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="212.30" y="671.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (505,050,500 samples, 1.56%)</title><rect x="328.4" y="837" width="21.5" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="331.36" y="847.5" >g..</text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="362.0" y="645" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="365.01" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.06%)</title><rect x="80.3" y="821" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="83.32" y="831.5" ></text>
+</g>
+<g >
+<title>git_remote_lookup (50,505,050 samples, 0.16%)</title><rect x="439.7" y="853" width="2.1" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="442.66" y="863.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="187.7" y="693" width="0.5" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="190.73" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="592.8" y="709" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="595.80" y="719.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (80,808,080 samples, 0.25%)</title><rect x="1006.5" y="501" width="3.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1009.50" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (60,606,060 samples, 0.19%)</title><rect x="193.8" y="725" width="2.6" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="196.77" y="735.5" ></text>
+</g>
+<g >
+<title>process_backlog (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="469" width="1.3" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1377.47" y="479.5" ></text>
+</g>
+<g >
+<title>strerror_l (10,101,010 samples, 0.03%)</title><rect x="313.3" y="789" width="0.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="316.26" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (232,323,230 samples, 0.72%)</title><rect x="145.9" y="629" width="9.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="148.89" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="472.4" y="565" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="475.44" y="575.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.03%)</title><rect x="300.8" y="389" width="0.4" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="303.75" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="471.2" y="501" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="474.15" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (171,717,170 samples, 0.53%)</title><rect x="354.7" y="757" width="7.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="357.68" y="767.5" ></text>
+</g>
+<g >
+<title>block_invalidate_folio (10,101,010 samples, 0.03%)</title><rect x="547.9" y="485" width="0.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="550.94" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="460.8" y="709" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="463.80" y="719.5" ></text>
+</g>
+<g >
+<title>brk (10,101,010 samples, 0.03%)</title><rect x="127.3" y="677" width="0.5" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="130.34" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="313.7" y="773" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="316.69" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="73.0" y="789" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="75.98" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.03%)</title><rect x="412.5" y="741" width="0.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="415.48" y="751.5" ></text>
+</g>
+<g >
+<title>block_write_end (10,101,010 samples, 0.03%)</title><rect x="272.3" y="629" width="0.4" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="275.28" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_write (30,303,030 samples, 0.09%)</title><rect x="334.4" y="661" width="1.3" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="337.40" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (70,707,070 samples, 0.22%)</title><rect x="305.1" y="693" width="3.0" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="308.07" y="703.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.03%)</title><rect x="269.3" y="693" width="0.4" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="272.26" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="278.3" y="789" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="281.32" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="227.0" y="741" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="229.99" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.03%)</title><rect x="396.5" y="565" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="399.52" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_xattr_set_credits (10,101,010 samples, 0.03%)</title><rect x="79.0" y="853" width="0.5" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="82.02" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="437.1" y="805" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="440.07" y="815.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="529.0" y="645" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="531.96" y="655.5" ></text>
+</g>
+<g >
+<title>mkdir (464,646,460 samples, 1.44%)</title><rect x="568.6" y="837" width="19.9" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="571.64" y="847.5" ></text>
+</g>
+<g >
+<title>evict (262,626,260 samples, 0.81%)</title><rect x="144.6" y="645" width="11.2" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="147.59" y="655.5" ></text>
+</g>
+<g >
+<title>rmdir (80,808,080 samples, 0.25%)</title><rect x="198.5" y="821" width="3.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="201.52" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.03%)</title><rect x="324.9" y="629" width="0.4" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="327.91" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="244.7" y="741" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="247.67" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (20,202,020 samples, 0.06%)</title><rect x="147.6" y="581" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="150.61" y="591.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.06%)</title><rect x="350.4" y="709" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="353.36" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (595,959,590 samples, 1.84%)</title><rect x="240.4" y="869" width="25.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="243.36" y="879.5" >[..</text>
+</g>
+<g >
+<title>chdir (10,101,010 samples, 0.03%)</title><rect x="731.3" y="933" width="0.4" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="734.28" y="943.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="620.4" y="741" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="623.41" y="751.5" ></text>
+</g>
+<g >
+<title>vma_alloc_folio (151,515,150 samples, 0.47%)</title><rect x="1357.2" y="757" width="6.5" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1360.21" y="767.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="542.8" y="661" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="545.76" y="671.5" ></text>
+</g>
+<g >
+<title>do_softirq (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="549" width="1.3" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1014.24" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="507.8" y="725" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="510.82" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="50.1" y="869" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="53.12" y="879.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="121.7" y="645" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="124.73" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="448.3" y="677" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="451.29" y="687.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="257.6" y="517" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="260.61" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="472.0" y="645" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="475.01" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (20,202,020 samples, 0.06%)</title><rect x="291.3" y="645" width="0.8" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="294.26" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="605.3" y="741" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="608.31" y="751.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="334.0" y="581" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="336.97" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="274.4" y="821" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="277.44" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="590.2" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="593.21" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="266.7" y="725" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="269.67" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="104.9" y="501" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="107.90" y="511.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="48.8" y="869" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="51.82" y="879.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (60,606,060 samples, 0.19%)</title><rect x="1377.5" y="693" width="2.6" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1380.49" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="233.0" y="629" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="236.03" y="639.5" ></text>
+</g>
+<g >
+<title>vm_area_dup (10,101,010 samples, 0.03%)</title><rect x="662.7" y="757" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="665.69" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="1380.5" y="917" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1383.51" y="927.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="491.0" y="725" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="493.99" y="735.5" ></text>
+</g>
+<g >
+<title>ip_output (80,808,080 samples, 0.25%)</title><rect x="11.3" y="677" width="3.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="14.29" y="687.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="591.1" y="645" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="594.08" y="655.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.06%)</title><rect x="453.0" y="709" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="456.03" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="369.3" y="709" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="372.34" y="719.5" ></text>
+</g>
+<g >
+<title>d_lru_del (10,101,010 samples, 0.03%)</title><rect x="200.7" y="677" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="203.67" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.09%)</title><rect x="484.5" y="725" width="1.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="487.52" y="735.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="274.4" y="741" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="277.44" y="751.5" ></text>
+</g>
+<g >
+<title>ip_output (20,202,020 samples, 0.06%)</title><rect x="1024.2" y="661" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1027.19" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (60,606,060 samples, 0.19%)</title><rect x="1373.2" y="789" width="2.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1376.18" y="799.5" ></text>
+</g>
+<g >
+<title>__d_add (10,101,010 samples, 0.03%)</title><rect x="93.7" y="821" width="0.4" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="96.69" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="160.1" y="773" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="163.12" y="783.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_add_journal_head (10,101,010 samples, 0.03%)</title><rect x="582.9" y="629" width="0.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="585.88" y="639.5" ></text>
+</g>
+<g >
+<title>anon_pipe_buf_release (60,606,060 samples, 0.19%)</title><rect x="674.3" y="773" width="2.6" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="677.33" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="248.1" y="693" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="251.12" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.03%)</title><rect x="499.6" y="677" width="0.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="502.62" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="385.7" y="677" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="388.74" y="687.5" ></text>
+</g>
+<g >
+<title>filename_create (30,303,030 samples, 0.09%)</title><rect x="308.1" y="709" width="1.3" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="311.09" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="527.7" y="693" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="530.66" y="703.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (20,202,020 samples, 0.06%)</title><rect x="1318.0" y="869" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1320.96" y="879.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.03%)</title><rect x="245.5" y="629" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="248.54" y="639.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.06%)</title><rect x="394.4" y="709" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="397.36" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_rename (90,909,090 samples, 0.28%)</title><rect x="564.8" y="661" width="3.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="567.76" y="671.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="618.3" y="757" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="621.25" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="217.1" y="885" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="220.06" y="895.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="228.3" y="597" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="231.28" y="607.5" ></text>
+</g>
+<g >
+<title>d_move (10,101,010 samples, 0.03%)</title><rect x="427.6" y="693" width="0.4" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="430.58" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="281.3" y="533" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="284.34" y="543.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="565" width="0.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1027.19" y="575.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="536.7" y="629" width="0.5" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="539.72" y="639.5" ></text>
+</g>
+<g >
+<title>do_softirq (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="517" width="1.3" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1385.67" y="527.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="337.9" y="677" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="340.85" y="687.5" ></text>
+</g>
+<g >
+<title>sk_reset_timer (10,101,010 samples, 0.03%)</title><rect x="1023.3" y="677" width="0.5" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="1026.32" y="687.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="621.3" y="693" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="624.27" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="428.4" y="789" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="431.44" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.03%)</title><rect x="529.0" y="437" width="0.4" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="531.96" y="447.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="565" width="1.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1014.24" y="575.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="113.5" y="645" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="116.53" y="655.5" ></text>
+</g>
+<g >
+<title>security_current_getsecid_subj (10,101,010 samples, 0.03%)</title><rect x="602.7" y="597" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="605.72" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="419.8" y="709" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="422.82" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (161,616,160 samples, 0.50%)</title><rect x="161.8" y="741" width="6.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="164.85" y="751.5" ></text>
+</g>
+<g >
+<title>cgroup_rstat_updated (10,101,010 samples, 0.03%)</title><rect x="1323.1" y="741" width="0.5" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1326.14" y="751.5" ></text>
+</g>
+<g >
+<title>chmod (30,303,030 samples, 0.09%)</title><rect x="500.1" y="805" width="1.2" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="503.05" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="237.3" y="757" width="2.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="240.34" y="767.5" ></text>
+</g>
+<g >
+<title>git_refdb_backend_fs (50,505,050 samples, 0.16%)</title><rect x="607.5" y="821" width="2.1" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="610.47" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.03%)</title><rect x="308.9" y="629" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="311.95" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="208.0" y="741" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="211.01" y="751.5" ></text>
+</g>
+<g >
+<title>walk_component (30,303,030 samples, 0.09%)</title><rect x="323.6" y="661" width="1.3" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="326.62" y="671.5" ></text>
+</g>
+<g >
+<title>ip_output (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="629" width="1.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1385.67" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="411.6" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="414.62" y="767.5" ></text>
+</g>
+<g >
+<title>git_index_open (10,101,010 samples, 0.03%)</title><rect x="279.2" y="869" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="282.18" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (232,323,230 samples, 0.72%)</title><rect x="503.5" y="773" width="9.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="506.50" y="783.5" ></text>
+</g>
+<g >
+<title>git_signature_now (10,101,010 samples, 0.03%)</title><rect x="414.6" y="821" width="0.5" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="417.64" y="831.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.03%)</title><rect x="128.6" y="661" width="0.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="131.63" y="671.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_from_slab_obj (10,101,010 samples, 0.03%)</title><rect x="562.6" y="629" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="565.60" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="281.3" y="709" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="284.34" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="268.4" y="693" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="271.40" y="703.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.03%)</title><rect x="304.2" y="613" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="307.20" y="623.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="587.2" y="741" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="590.19" y="751.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="608.3" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="611.33" y="607.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.03%)</title><rect x="95.0" y="805" width="0.4" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="97.98" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_read (1,161,616,150 samples, 3.59%)</title><rect x="670.0" y="805" width="49.6" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="673.02" y="815.5" >vfs_r..</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="539.3" y="773" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="542.31" y="783.5" ></text>
+</g>
+<g >
+<title>access (131,313,130 samples, 0.41%)</title><rect x="89.8" y="1029" width="5.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="92.81" y="1039.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (50,505,050 samples, 0.16%)</title><rect x="257.2" y="741" width="2.1" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="260.18" y="751.5" ></text>
+</g>
+<g >
+<title>deadline_next_request (10,101,010 samples, 0.03%)</title><rect x="402.6" y="341" width="0.4" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="405.56" y="351.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="381.0" y="629" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="383.99" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="246.8" y="693" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="249.83" y="703.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="242.1" y="549" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="245.09" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.16%)</title><rect x="257.2" y="757" width="2.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="260.18" y="767.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="34.6" y="293" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="37.59" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (10,101,010 samples, 0.03%)</title><rect x="412.5" y="693" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="415.48" y="703.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="547.5" y="437" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="550.51" y="447.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="103.2" y="661" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="106.18" y="671.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (20,202,020 samples, 0.06%)</title><rect x="511.7" y="517" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="514.70" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (20,202,020 samples, 0.06%)</title><rect x="426.3" y="533" width="0.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="429.29" y="543.5" ></text>
+</g>
+<g >
+<title>may_open (10,101,010 samples, 0.03%)</title><rect x="607.0" y="645" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="610.04" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="591.5" y="773" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="594.51" y="783.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="385.7" y="613" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="388.74" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.06%)</title><rect x="489.7" y="645" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="492.70" y="655.5" ></text>
+</g>
+<g >
+<title>path_openat (50,505,050 samples, 0.16%)</title><rect x="261.1" y="645" width="2.1" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="264.07" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.16%)</title><rect x="530.3" y="789" width="2.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="533.25" y="799.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.06%)</title><rect x="337.4" y="693" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="340.42" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (60,606,060 samples, 0.19%)</title><rect x="51.8" y="837" width="2.6" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="54.84" y="847.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (80,808,080 samples, 0.25%)</title><rect x="1006.5" y="533" width="3.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1009.50" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="601.9" y="725" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="604.86" y="735.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (40,404,040 samples, 0.13%)</title><rect x="1034.1" y="677" width="1.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1037.11" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="471.2" y="453" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="474.15" y="463.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (10,101,010 samples, 0.03%)</title><rect x="276.6" y="757" width="0.4" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="279.60" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="615.2" y="869" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="618.23" y="879.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.09%)</title><rect x="471.6" y="693" width="1.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="474.58" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (10,101,010 samples, 0.03%)</title><rect x="193.3" y="709" width="0.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="196.34" y="719.5" ></text>
+</g>
+<g >
+<title>unlink (20,202,020 samples, 0.06%)</title><rect x="103.6" y="677" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="106.61" y="687.5" ></text>
+</g>
+<g >
+<title>put_task_stack (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="773" width="0.4" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="1373.59" y="783.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="362.4" y="597" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="365.44" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (10,101,010 samples, 0.03%)</title><rect x="1022.5" y="309" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="1025.46" y="319.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.03%)</title><rect x="472.4" y="501" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="475.44" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="596.3" y="725" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="599.25" y="735.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (50,505,050 samples, 0.16%)</title><rect x="60.9" y="869" width="2.2" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="63.90" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="620.8" y="789" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="623.84" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="449.1" y="629" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="452.15" y="639.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.03%)</title><rect x="554.0" y="501" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="556.98" y="511.5" ></text>
+</g>
+<g >
+<title>free_unref_page_list (40,404,040 samples, 0.13%)</title><rect x="736.9" y="645" width="1.7" height="15.0" fill="rgb(0,206,71)" rx="2" ry="2" />
+<text x="739.88" y="655.5" ></text>
+</g>
+<g >
+<title>mutex_lock (10,101,010 samples, 0.03%)</title><rect x="692.9" y="773" width="0.4" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="695.88" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (30,303,030 samples, 0.09%)</title><rect x="92.4" y="837" width="1.3" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="95.39" y="847.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.06%)</title><rect x="359.0" y="645" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="361.99" y="655.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="1317.5" y="773" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1320.53" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="544.5" y="533" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="547.49" y="543.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="379.7" y="549" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="382.70" y="559.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="510.8" y="485" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="513.84" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="359.0" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="361.99" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="610.9" y="677" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="613.92" y="687.5" ></text>
+</g>
+<g >
+<title>rmqueue (10,101,010 samples, 0.03%)</title><rect x="1000.5" y="629" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1003.46" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="576.0" y="693" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="578.98" y="703.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="522.5" y="533" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="525.49" y="543.5" ></text>
+</g>
+<g >
+<title>slab_pre_alloc_hook.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="51.4" y="805" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="54.41" y="815.5" ></text>
+</g>
+<g >
+<title>ksys_write (40,404,040 samples, 0.13%)</title><rect x="420.2" y="693" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="423.25" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="189.5" y="661" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="192.46" y="671.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="226.1" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="229.12" y="703.5" ></text>
+</g>
+<g >
+<title>get_unused_fd_flags (10,101,010 samples, 0.03%)</title><rect x="41.5" y="821" width="0.4" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="44.49" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="610.9" y="693" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="613.92" y="703.5" ></text>
+</g>
+<g >
+<title>new_inode (10,101,010 samples, 0.03%)</title><rect x="393.9" y="533" width="0.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="396.93" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="79.5" y="789" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="82.45" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (121,212,120 samples, 0.38%)</title><rect x="17.3" y="1029" width="5.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="20.33" y="1039.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (50,505,050 samples, 0.16%)</title><rect x="528.1" y="741" width="2.2" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="531.09" y="751.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="378.0" y="629" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="380.97" y="639.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="409.5" y="533" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="412.46" y="543.5" ></text>
+</g>
+<g >
+<title>tlb_batch_pages_flush (121,212,120 samples, 0.38%)</title><rect x="733.4" y="693" width="5.2" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="736.43" y="703.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="373.7" y="693" width="0.4" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="376.66" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="611.8" y="709" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="614.78" y="719.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="605.3" y="597" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="608.31" y="607.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="55.3" y="901" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="58.30" y="911.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="489.3" y="629" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="492.27" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="381.9" y="725" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="384.85" y="735.5" ></text>
+</g>
+<g >
+<title>iterate_dir (30,303,030 samples, 0.09%)</title><rect x="112.7" y="677" width="1.3" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="115.67" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (30,303,030 samples, 0.09%)</title><rect x="364.2" y="693" width="1.3" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="367.17" y="703.5" ></text>
+</g>
+<g >
+<title>kfree (20,202,020 samples, 0.06%)</title><rect x="313.7" y="629" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="316.69" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_init_acl (10,101,010 samples, 0.03%)</title><rect x="520.3" y="645" width="0.5" height="15.0" fill="rgb(0,227,159)" rx="2" ry="2" />
+<text x="523.33" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="563.0" y="581" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="566.04" y="591.5" ></text>
+</g>
+<g >
+<title>dput (30,303,030 samples, 0.09%)</title><rect x="400.4" y="677" width="1.3" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="403.40" y="687.5" ></text>
+</g>
+<g >
+<title>apparmor_file_open (10,101,010 samples, 0.03%)</title><rect x="518.2" y="645" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="521.17" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="528.5" y="645" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="531.52" y="655.5" ></text>
+</g>
+<g >
+<title>rmdir (90,909,090 samples, 0.28%)</title><rect x="208.9" y="853" width="3.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="211.87" y="863.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="383.1" y="709" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="386.15" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.03%)</title><rect x="255.5" y="693" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="258.46" y="703.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (30,303,030 samples, 0.09%)</title><rect x="164.9" y="629" width="1.3" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="167.87" y="639.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="158.8" y="677" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="161.83" y="687.5" ></text>
+</g>
+<g >
+<title>__snprintf_chk (10,101,010 samples, 0.03%)</title><rect x="353.8" y="757" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="356.81" y="767.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (20,202,020 samples, 0.06%)</title><rect x="730.4" y="869" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="733.41" y="879.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.09%)</title><rect x="440.1" y="725" width="1.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="443.09" y="735.5" ></text>
+</g>
+<g >
+<title>read (1,363,636,350 samples, 4.22%)</title><rect x="666.6" y="885" width="58.2" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="669.57" y="895.5" >read</text>
+</g>
+<g >
+<title>blk_mq_free_request (10,101,010 samples, 0.03%)</title><rect x="587.2" y="565" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="590.19" y="575.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="158.4" y="501" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="161.40" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.28%)</title><rect x="513.4" y="805" width="3.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="516.43" y="815.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="16.9" y="917" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="19.90" y="927.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (30,303,030 samples, 0.09%)</title><rect x="164.9" y="645" width="1.3" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="167.87" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (111,111,110 samples, 0.34%)</title><rect x="534.6" y="725" width="4.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="537.56" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.22%)</title><rect x="400.4" y="725" width="3.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="403.40" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (30,303,030 samples, 0.09%)</title><rect x="131.2" y="629" width="1.3" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="134.22" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="420.2" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="423.25" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (131,313,130 samples, 0.41%)</title><rect x="49.3" y="949" width="5.6" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="52.26" y="959.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.03%)</title><rect x="399.5" y="709" width="0.5" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="402.54" y="719.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (30,303,030 samples, 0.09%)</title><rect x="334.4" y="613" width="1.3" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="337.40" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="575.1" y="613" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="578.11" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (353,535,350 samples, 1.09%)</title><rect x="286.9" y="757" width="15.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="289.95" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="525.5" y="677" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="528.50" y="687.5" ></text>
+</g>
+<g >
+<title>wp_page_reuse (20,202,020 samples, 0.06%)</title><rect x="690.7" y="613" width="0.9" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="693.73" y="623.5" ></text>
+</g>
+<g >
+<title>xas_start (10,101,010 samples, 0.03%)</title><rect x="186.9" y="581" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="189.87" y="591.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="461.2" y="629" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="464.23" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (50,505,050 samples, 0.16%)</title><rect x="545.3" y="549" width="2.2" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="548.35" y="559.5" ></text>
+</g>
+<g >
+<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="1317.5" y="853" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1320.53" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="569.9" y="693" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="572.94" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="459.5" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="462.50" y="799.5" ></text>
+</g>
+<g >
+<title>new_inode (90,909,090 samples, 0.28%)</title><rect x="75.1" y="837" width="3.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="78.14" y="847.5" ></text>
+</g>
+<g >
+<title>syscall_trace_enter.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="196.4" y="757" width="0.4" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="199.36" y="767.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="632.5" y="725" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="635.49" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_v6_conn_request (20,202,020 samples, 0.06%)</title><rect x="1387.4" y="389" width="0.9" height="15.0" fill="rgb(0,236,197)" rx="2" ry="2" />
+<text x="1390.41" y="399.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="243.8" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="246.81" y="751.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="727.8" y="853" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="730.82" y="863.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="390.1" y="613" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="393.05" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="373.2" y="677" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="376.23" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.16%)</title><rect x="171.3" y="789" width="2.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="174.34" y="799.5" ></text>
+</g>
+<g >
+<title>generic_fillattr (10,101,010 samples, 0.03%)</title><rect x="252.0" y="677" width="0.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="255.01" y="687.5" ></text>
+</g>
+<g >
+<title>d_splice_alias (10,101,010 samples, 0.03%)</title><rect x="727.8" y="709" width="0.5" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="730.82" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_init_dot_dotdot (10,101,010 samples, 0.03%)</title><rect x="580.3" y="725" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="583.29" y="735.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.06%)</title><rect x="30.3" y="661" width="0.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="33.28" y="671.5" ></text>
+</g>
+<g >
+<title>_raw_read_lock (10,101,010 samples, 0.03%)</title><rect x="528.5" y="629" width="0.5" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="531.52" y="639.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="1047.5" y="741" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1050.48" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.22%)</title><rect x="267.1" y="853" width="3.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="270.11" y="863.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.06%)</title><rect x="242.5" y="693" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="245.52" y="703.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="507.4" y="693" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="510.39" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (777,777,770 samples, 2.41%)</title><rect x="632.9" y="869" width="33.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="635.92" y="879.5" >en..</text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="336.1" y="709" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="339.13" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (20,202,020 samples, 0.06%)</title><rect x="516.4" y="693" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="519.45" y="703.5" ></text>
+</g>
+<g >
+<title>lockref_put_return (10,101,010 samples, 0.03%)</title><rect x="129.1" y="645" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="132.06" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="233.9" y="613" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="236.89" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.03%)</title><rect x="1035.0" y="405" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1037.97" y="415.5" ></text>
+</g>
+<g >
+<title>delete_from_page_cache_batch (10,101,010 samples, 0.03%)</title><rect x="192.9" y="645" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="195.91" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="255.9" y="773" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="258.89" y="783.5" ></text>
+</g>
+<g >
+<title>__napi_poll (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="501" width="1.3" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1014.24" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="362.9" y="677" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="365.87" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="206.7" y="853" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="209.71" y="863.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="489.3" y="597" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="492.27" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.06%)</title><rect x="387.0" y="693" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="390.03" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_create (30,303,030 samples, 0.09%)</title><rect x="481.9" y="565" width="1.3" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="484.93" y="575.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (242,424,240 samples, 0.75%)</title><rect x="682.5" y="725" width="10.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="685.53" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,808,080 samples, 0.25%)</title><rect x="198.5" y="789" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="201.52" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (393,939,390 samples, 1.22%)</title><rect x="569.9" y="757" width="16.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="572.94" y="767.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="481.1" y="549" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="484.07" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.22%)</title><rect x="1377.1" y="917" width="3.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1380.06" y="927.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="1371.0" y="837" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1374.02" y="847.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="709" width="1.3" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1014.24" y="719.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="618.7" y="597" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="621.68" y="607.5" ></text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.03%)</title><rect x="181.7" y="565" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="184.69" y="575.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.03%)</title><rect x="604.9" y="645" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="607.88" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (30,303,030 samples, 0.09%)</title><rect x="370.6" y="741" width="1.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="373.64" y="751.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="101.5" y="837" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="104.45" y="847.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="220.5" y="645" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="223.52" y="655.5" ></text>
+</g>
+<g >
+<title>____fput (20,202,020 samples, 0.06%)</title><rect x="1026.8" y="821" width="0.8" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1029.77" y="831.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (292,929,290 samples, 0.91%)</title><rect x="988.8" y="741" width="12.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="991.81" y="751.5" ></text>
+</g>
+<g >
+<title>_raw_read_lock (10,101,010 samples, 0.03%)</title><rect x="487.5" y="453" width="0.5" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="490.54" y="463.5" ></text>
+</g>
+<g >
+<title>walk_component (50,505,050 samples, 0.16%)</title><rect x="324.9" y="677" width="2.2" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="327.91" y="687.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="587.2" y="757" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="590.19" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="468.1" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="471.13" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="103.2" y="693" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="106.18" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.03%)</title><rect x="509.1" y="485" width="0.4" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="512.11" y="495.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="560.4" y="597" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="563.45" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.41%)</title><rect x="220.1" y="805" width="5.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="223.08" y="815.5" ></text>
+</g>
+<g >
+<title>__vfs_getxattr (10,101,010 samples, 0.03%)</title><rect x="224.0" y="581" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="226.97" y="591.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.06%)</title><rect x="387.0" y="661" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="390.03" y="671.5" ></text>
+</g>
+<g >
+<title>native_apic_wait_icr_idle (10,101,010 samples, 0.03%)</title><rect x="1385.3" y="645" width="0.4" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="1388.25" y="655.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="343.9" y="517" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="346.89" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="217.1" y="709" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="220.06" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="460.8" y="757" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="463.80" y="767.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.03%)</title><rect x="625.2" y="805" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="628.15" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="105.3" y="565" width="0.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="108.34" y="575.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="405.6" y="757" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="408.58" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="245.1" y="757" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="248.10" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_release_folio (10,101,010 samples, 0.03%)</title><rect x="547.9" y="453" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="550.94" y="463.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.09%)</title><rect x="429.7" y="709" width="1.3" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="432.74" y="719.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="488.4" y="677" width="0.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="491.41" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_wait4 (20,202,020 samples, 0.06%)</title><rect x="727.0" y="837" width="0.8" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="729.96" y="847.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="547.9" y="277" width="0.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="550.94" y="287.5" ></text>
+</g>
+<g >
+<title>crc_pcl (20,202,020 samples, 0.06%)</title><rect x="516.4" y="661" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="519.45" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="390.1" y="581" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="393.05" y="591.5" ></text>
+</g>
+<g >
+<title>alloc_pages (10,101,010 samples, 0.03%)</title><rect x="409.5" y="549" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="412.46" y="559.5" ></text>
+</g>
+<g >
+<title>unlink (30,303,030 samples, 0.09%)</title><rect x="276.2" y="837" width="1.3" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="279.16" y="847.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="624.3" y="629" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="627.29" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="196.8" y="741" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="199.79" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="459.9" y="629" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="462.93" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.03%)</title><rect x="537.6" y="613" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="540.58" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (111,111,110 samples, 0.34%)</title><rect x="322.8" y="725" width="4.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="325.75" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="378.8" y="629" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="381.83" y="639.5" ></text>
+</g>
+<g >
+<title>submit_bio (10,101,010 samples, 0.03%)</title><rect x="345.6" y="517" width="0.4" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="348.62" y="527.5" ></text>
+</g>
+<g >
+<title>process_backlog (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="453" width="1.3" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1385.67" y="463.5" ></text>
+</g>
+<g >
+<title>lh_table_lookup_entry_w_hash (10,101,010 samples, 0.03%)</title><rect x="1370.2" y="869" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1373.16" y="879.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited (10,101,010 samples, 0.03%)</title><rect x="553.5" y="597" width="0.5" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="556.54" y="607.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.03%)</title><rect x="104.9" y="629" width="0.4" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="107.90" y="639.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (111,111,110 samples, 0.34%)</title><rect x="31.6" y="469" width="4.7" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="34.57" y="479.5" ></text>
+</g>
+<g >
+<title>__send (60,606,060 samples, 0.19%)</title><rect x="1373.2" y="885" width="2.6" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1376.18" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (111,111,110 samples, 0.34%)</title><rect x="295.1" y="565" width="4.8" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="298.15" y="575.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.06%)</title><rect x="619.1" y="821" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="622.12" y="831.5" ></text>
+</g>
+<g >
+<title>readdir64 (30,303,030 samples, 0.09%)</title><rect x="197.2" y="853" width="1.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="200.22" y="863.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="201.1" y="645" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="204.10" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.03%)</title><rect x="142.0" y="629" width="0.4" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="145.00" y="639.5" ></text>
+</g>
+<g >
+<title>sk_alloc (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="821" width="0.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1030.64" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.06%)</title><rect x="180.0" y="629" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="182.97" y="639.5" ></text>
+</g>
+<g >
+<title>evict (101,010,100 samples, 0.31%)</title><rect x="161.8" y="677" width="4.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="164.85" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="1375.8" y="837" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1378.76" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="473.3" y="693" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="476.31" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="384.0" y="741" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="387.01" y="751.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="463.4" y="533" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="466.39" y="543.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="104.9" y="613" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="107.90" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="513.4" y="709" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="516.43" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (414,141,410 samples, 1.28%)</title><rect x="354.2" y="821" width="17.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="357.25" y="831.5" ></text>
+</g>
+<g >
+<title>copy_process (747,474,740 samples, 2.31%)</title><rect x="632.9" y="789" width="31.9" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="635.92" y="799.5" >co..</text>
+</g>
+<g >
+<title>discard_slab (10,101,010 samples, 0.03%)</title><rect x="1363.3" y="549" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1366.25" y="559.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="472.0" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="475.01" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="607.5" y="789" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="610.47" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.09%)</title><rect x="176.1" y="645" width="1.3" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="179.08" y="655.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="610.9" y="565" width="0.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="613.92" y="575.5" ></text>
+</g>
+<g >
+<title>filemap_get_read_batch (10,101,010 samples, 0.03%)</title><rect x="504.4" y="565" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="507.37" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mb_collect_stats (10,101,010 samples, 0.03%)</title><rect x="480.2" y="469" width="0.4" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="483.21" y="479.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="189.9" y="645" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="192.89" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.03%)</title><rect x="463.4" y="661" width="0.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="466.39" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="231.7" y="485" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="234.73" y="495.5" ></text>
+</g>
+<g >
+<title>net_connect (191,919,190 samples, 0.59%)</title><rect x="1027.6" y="965" width="8.2" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1030.64" y="975.5" ></text>
+</g>
+<g >
+<title>git_attr_cache_flush (50,505,050 samples, 0.16%)</title><rect x="99.3" y="885" width="2.2" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="102.30" y="895.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="249.4" y="613" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="252.42" y="623.5" ></text>
+</g>
+<g >
+<title>__snprintf_chk (10,101,010 samples, 0.03%)</title><rect x="965.9" y="837" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="968.95" y="847.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="584.2" y="469" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="587.17" y="479.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (60,606,060 samples, 0.19%)</title><rect x="253.3" y="725" width="2.6" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="256.30" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="1047.0" y="821" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1050.05" y="831.5" ></text>
+</g>
+<g >
+<title>perf_iterate_ctx (10,101,010 samples, 0.03%)</title><rect x="21.6" y="917" width="0.5" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="24.65" y="927.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="475.5" y="565" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="478.46" y="575.5" ></text>
+</g>
+<g >
+<title>lock_vma_under_rcu (30,303,030 samples, 0.09%)</title><rect x="1364.5" y="821" width="1.3" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1367.55" y="831.5" ></text>
+</g>
+<g >
+<title>__dquot_alloc_space (10,101,010 samples, 0.03%)</title><rect x="394.4" y="485" width="0.4" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="397.36" y="495.5" ></text>
+</g>
+<g >
+<title>[unknown] (1,131,313,120 samples, 3.50%)</title><rect x="47.1" y="1061" width="48.3" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="50.10" y="1071.5" >[unk..</text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="121.3" y="709" width="1.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="124.30" y="719.5" ></text>
+</g>
+<g >
+<title>__do_softirq (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="501" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1031.50" y="511.5" ></text>
+</g>
+<g >
+<title>crc_pcl (20,202,020 samples, 0.06%)</title><rect x="478.9" y="437" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="481.92" y="447.5" ></text>
+</g>
+<g >
+<title>write (40,404,040 samples, 0.13%)</title><rect x="420.2" y="757" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="423.25" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="729.5" y="885" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="732.55" y="895.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="506.5" y="709" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="509.52" y="719.5" ></text>
+</g>
+<g >
+<title>tzset (10,101,010 samples, 0.03%)</title><rect x="414.6" y="789" width="0.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="417.64" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (10,101,010 samples, 0.03%)</title><rect x="611.8" y="677" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="614.78" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="476.3" y="549" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="479.33" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="136.0" y="597" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="138.96" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="436.2" y="645" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="439.21" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_write (40,404,040 samples, 0.13%)</title><rect x="271.0" y="725" width="1.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="273.99" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (494,949,490 samples, 1.53%)</title><rect x="328.4" y="789" width="21.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="331.36" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_synsent_state_process (30,303,030 samples, 0.09%)</title><rect x="1028.1" y="741" width="1.3" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1031.07" y="751.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="71.7" y="725" width="0.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="74.69" y="735.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.03%)</title><rect x="1366.3" y="789" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1369.27" y="799.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.03%)</title><rect x="563.0" y="549" width="0.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="566.04" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.03%)</title><rect x="187.7" y="741" width="0.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="190.73" y="751.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="71.7" y="741" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="74.69" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="285.7" y="741" width="1.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="288.65" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.03%)</title><rect x="349.9" y="741" width="0.5" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="352.93" y="751.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.06%)</title><rect x="473.7" y="565" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="476.74" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (30,303,030 samples, 0.09%)</title><rect x="92.4" y="821" width="1.3" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="95.39" y="831.5" ></text>
+</g>
+<g >
+<title>mas_preallocate (10,101,010 samples, 0.03%)</title><rect x="127.3" y="581" width="0.5" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="130.34" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_time_wait (30,303,030 samples, 0.09%)</title><rect x="32.9" y="165" width="1.3" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="35.86" y="175.5" ></text>
+</g>
+<g >
+<title>iterate_dir (10,101,010 samples, 0.03%)</title><rect x="611.8" y="661" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="614.78" y="671.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (20,202,020 samples, 0.06%)</title><rect x="94.1" y="869" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="97.12" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.06%)</title><rect x="574.7" y="645" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="577.68" y="655.5" ></text>
+</g>
+<g >
+<title>mutex_unlock (10,101,010 samples, 0.03%)</title><rect x="22.1" y="933" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="25.08" y="943.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="321.5" y="693" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="324.46" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="189.0" y="677" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="192.02" y="687.5" ></text>
+</g>
+<g >
+<title>ip_output (80,808,080 samples, 0.25%)</title><rect x="1006.5" y="597" width="3.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1009.50" y="607.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="263.7" y="693" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="266.65" y="703.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="547.9" y="261" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="550.94" y="271.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="73.0" y="805" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="75.98" y="815.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="188.6" y="693" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="191.59" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="499.6" y="773" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="502.62" y="783.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="1327.4" y="773" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1330.45" y="783.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="266.7" y="693" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="269.67" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="519.5" y="645" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="522.47" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.03%)</title><rect x="566.9" y="645" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="569.92" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="198.5" y="629" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="201.52" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.03%)</title><rect x="166.6" y="629" width="0.4" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="169.59" y="639.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.06%)</title><rect x="359.0" y="629" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="361.99" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="368.9" y="773" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="371.91" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (30,303,030 samples, 0.09%)</title><rect x="182.1" y="517" width="1.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="185.12" y="527.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="709" width="1.3" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1385.67" y="719.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.03%)</title><rect x="369.8" y="629" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="372.77" y="639.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (10,101,010 samples, 0.03%)</title><rect x="1048.3" y="773" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1051.34" y="783.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="333.5" y="725" width="0.5" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="336.54" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="595.4" y="789" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="598.39" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_rename (40,404,040 samples, 0.13%)</title><rect x="401.7" y="645" width="1.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="404.70" y="655.5" ></text>
+</g>
+<g >
+<title>write (30,303,030 samples, 0.09%)</title><rect x="485.8" y="725" width="1.3" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="488.82" y="735.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="557.9" y="645" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="560.86" y="655.5" ></text>
+</g>
+<g >
+<title>ci_run (2,303,030,280 samples, 7.13%)</title><rect x="632.9" y="949" width="98.4" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="635.92" y="959.5" >ci_run</text>
+</g>
+<g >
+<title>generic_perform_write (50,505,050 samples, 0.16%)</title><rect x="257.2" y="661" width="2.1" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="260.18" y="671.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="97.6" y="837" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="100.57" y="847.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="276.2" y="741" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="279.16" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (101,010,100 samples, 0.31%)</title><rect x="102.3" y="741" width="4.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="105.32" y="751.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="277.9" y="709" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="280.89" y="719.5" ></text>
+</g>
+<g >
+<title>net_send_buf (535,353,530 samples, 1.66%)</title><rect x="1003.9" y="933" width="22.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1006.91" y="943.5" >n..</text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.09%)</title><rect x="370.6" y="725" width="1.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="373.64" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (30,303,030 samples, 0.09%)</title><rect x="346.0" y="517" width="1.3" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="349.05" y="527.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.09%)</title><rect x="613.1" y="677" width="1.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="616.08" y="687.5" ></text>
+</g>
+<g >
+<title>filp_close (10,101,010 samples, 0.03%)</title><rect x="110.9" y="677" width="0.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="113.94" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="600.1" y="677" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="603.13" y="687.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="471.2" y="613" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="474.15" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (30,303,030 samples, 0.09%)</title><rect x="360.3" y="597" width="1.3" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="363.28" y="607.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="469" width="1.3" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1014.24" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="569.9" y="709" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="572.94" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_fc_init_inode (10,101,010 samples, 0.03%)</title><rect x="498.3" y="565" width="0.5" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="501.33" y="575.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="1328.3" y="885" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1331.31" y="895.5" ></text>
+</g>
+<g >
+<title>path_lookupat (121,212,120 samples, 0.38%)</title><rect x="90.2" y="917" width="5.2" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="93.24" y="927.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (40,404,040 samples, 0.13%)</title><rect x="1374.0" y="773" width="1.8" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="1377.04" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (20,202,020 samples, 0.06%)</title><rect x="508.7" y="565" width="0.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="511.68" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.03%)</title><rect x="526.4" y="661" width="0.4" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="529.37" y="671.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (50,505,050 samples, 0.16%)</title><rect x="1033.7" y="757" width="2.1" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1036.68" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="516.0" y="533" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="519.01" y="543.5" ></text>
+</g>
+<g >
+<title>d_splice_alias (10,101,010 samples, 0.03%)</title><rect x="93.7" y="837" width="0.4" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="96.69" y="847.5" ></text>
+</g>
+<g >
+<title>scsi_dispatch_cmd (10,101,010 samples, 0.03%)</title><rect x="402.1" y="341" width="0.5" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="405.13" y="351.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (30,303,030 samples, 0.09%)</title><rect x="588.9" y="741" width="1.3" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="591.92" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_io_submit (10,101,010 samples, 0.03%)</title><rect x="231.3" y="581" width="0.4" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="234.30" y="591.5" ></text>
+</g>
+<g >
+<title>filemap_flush (111,111,110 samples, 0.34%)</title><rect x="343.9" y="629" width="4.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="346.89" y="639.5" ></text>
+</g>
+<g >
+<title>_IO_default_xsputn (10,101,010 samples, 0.03%)</title><rect x="283.9" y="805" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="286.93" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="393.5" y="661" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="396.50" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="487.1" y="357" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="490.11" y="367.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (141,414,140 samples, 0.44%)</title><rect x="518.6" y="693" width="6.0" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="521.60" y="703.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (80,808,080 samples, 0.25%)</title><rect x="997.4" y="661" width="3.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1000.44" y="671.5" ></text>
+</g>
+<g >
+<title>__sys_socket (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="885" width="0.5" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="1030.64" y="895.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (20,202,020 samples, 0.06%)</title><rect x="91.5" y="821" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="94.53" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (10,101,010 samples, 0.03%)</title><rect x="479.8" y="485" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="482.78" y="495.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (10,101,010 samples, 0.03%)</title><rect x="1323.1" y="789" width="0.5" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="1326.14" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="209.7" y="709" width="0.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="212.73" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.03%)</title><rect x="198.9" y="677" width="0.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="201.95" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="615.2" y="821" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="618.23" y="831.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="453.0" y="677" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="456.03" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="440.1" y="693" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="443.09" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="331.0" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="333.95" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (60,606,060 samples, 0.19%)</title><rect x="553.1" y="645" width="2.6" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="556.11" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="245.5" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="248.54" y="751.5" ></text>
+</g>
+<g >
+<title>alloc_inode (90,909,090 samples, 0.28%)</title><rect x="75.1" y="821" width="3.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="78.14" y="831.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="547.5" y="421" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="550.51" y="431.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="160.1" y="757" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="163.12" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="49.7" y="885" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="52.69" y="895.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (575,757,570 samples, 1.78%)</title><rect x="22.5" y="1029" width="24.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="25.51" y="1039.5" >[..</text>
+</g>
+<g >
+<title>security_d_instantiate (10,101,010 samples, 0.03%)</title><rect x="514.7" y="693" width="0.5" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="517.72" y="703.5" ></text>
+</g>
+<g >
+<title>new_inode (40,404,040 samples, 0.13%)</title><rect x="520.8" y="645" width="1.7" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="523.76" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="374.1" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="377.09" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="120.0" y="773" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="123.00" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="263.2" y="725" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="266.22" y="735.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="389.6" y="661" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="392.62" y="671.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="239.1" y="613" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="242.07" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (20,202,020 samples, 0.06%)</title><rect x="300.3" y="597" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="303.32" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="244.2" y="533" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="247.24" y="543.5" ></text>
+</g>
+<g >
+<title>rseq_ip_fixup (10,101,010 samples, 0.03%)</title><rect x="462.1" y="613" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="465.09" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="377.5" y="725" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="380.54" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_match.part.0 (10,101,010 samples, 0.03%)</title><rect x="512.6" y="581" width="0.4" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="515.56" y="591.5" ></text>
+</g>
+<g >
+<title>malloc (20,202,020 samples, 0.06%)</title><rect x="127.3" y="757" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="130.34" y="767.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (50,505,050 samples, 0.16%)</title><rect x="346.0" y="533" width="2.2" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="349.05" y="543.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.06%)</title><rect x="391.8" y="645" width="0.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="394.78" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="268.0" y="773" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="270.97" y="783.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="544.1" y="533" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="547.05" y="543.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="187.7" y="645" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="190.73" y="655.5" ></text>
+</g>
+<g >
+<title>list_lru_del (10,101,010 samples, 0.03%)</title><rect x="400.8" y="613" width="0.5" height="15.0" fill="rgb(0,216,113)" rx="2" ry="2" />
+<text x="403.83" y="623.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="529.0" y="629" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="531.96" y="639.5" ></text>
+</g>
+<g >
+<title>mb_clear_bits (10,101,010 samples, 0.03%)</title><rect x="192.0" y="565" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="195.04" y="575.5" ></text>
+</g>
+<g >
+<title>__pmd_alloc (10,101,010 samples, 0.03%)</title><rect x="639.8" y="709" width="0.5" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="642.82" y="719.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.03%)</title><rect x="210.2" y="645" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="213.16" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.41%)</title><rect x="601.9" y="821" width="5.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="604.86" y="831.5" ></text>
+</g>
+<g >
+<title>__wait_on_bit (10,101,010 samples, 0.03%)</title><rect x="224.8" y="485" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="227.83" y="495.5" ></text>
+</g>
+<g >
+<title>d_lru_add (10,101,010 samples, 0.03%)</title><rect x="95.0" y="853" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="97.98" y="863.5" ></text>
+</g>
+<g >
+<title>kfree_skbmem (10,101,010 samples, 0.03%)</title><rect x="1010.4" y="661" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1013.38" y="671.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.03%)</title><rect x="1376.6" y="885" width="0.5" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="1379.63" y="895.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="55.3" y="917" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="58.30" y="927.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (40,404,040 samples, 0.13%)</title><rect x="1007.8" y="277" width="1.7" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1010.79" y="287.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="322.3" y="725" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="325.32" y="735.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="487.1" y="389" width="0.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="490.11" y="399.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="597" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1373.59" y="607.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.03%)</title><rect x="258.0" y="565" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="261.05" y="575.5" ></text>
+</g>
+<g >
+<title>__folio_throttle_swaprate (20,202,020 samples, 0.06%)</title><rect x="1351.6" y="757" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1354.61" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="452.6" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="455.60" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="287.8" y="613" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="290.81" y="623.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="277.9" y="581" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="280.89" y="591.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="360.3" y="517" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="363.28" y="527.5" ></text>
+</g>
+<g >
+<title>security_inode_alloc (10,101,010 samples, 0.03%)</title><rect x="514.3" y="645" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="517.29" y="655.5" ></text>
+</g>
+<g >
+<title>do_faccessat (30,303,030 samples, 0.09%)</title><rect x="263.7" y="725" width="1.2" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="266.65" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (20,202,020 samples, 0.06%)</title><rect x="1374.5" y="325" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1377.47" y="335.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="370.6" y="693" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="373.64" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="190.3" y="613" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="193.32" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.03%)</title><rect x="540.6" y="581" width="0.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="543.60" y="591.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="184.7" y="373" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="187.71" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="235.6" y="581" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="238.61" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="504.4" y="645" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="507.37" y="655.5" ></text>
+</g>
+<g >
+<title>readdir64 (10,101,010 samples, 0.03%)</title><rect x="349.9" y="837" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="352.93" y="847.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="223.1" y="725" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="226.10" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="268.0" y="805" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="270.97" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="162.7" y="645" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="165.71" y="655.5" ></text>
+</g>
+<g >
+<title>git_reference_create (414,141,410 samples, 1.28%)</title><rect x="354.2" y="853" width="17.7" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="357.25" y="863.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct (10,101,010 samples, 0.03%)</title><rect x="345.6" y="501" width="0.4" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="348.62" y="511.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.03%)</title><rect x="156.2" y="693" width="0.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="159.24" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="220.5" y="693" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="223.52" y="703.5" ></text>
+</g>
+<g >
+<title>realpath (20,202,020 samples, 0.06%)</title><rect x="382.3" y="757" width="0.8" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="385.29" y="767.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="555.7" y="565" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="558.70" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="618.3" y="741" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="621.25" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_synack_rtt_meas (10,101,010 samples, 0.03%)</title><rect x="1382.7" y="309" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1385.67" y="319.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="590.6" y="677" width="0.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="593.64" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.22%)</title><rect x="598.4" y="757" width="3.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="601.41" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="181.3" y="613" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="184.26" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="602.3" y="693" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="605.29" y="703.5" ></text>
+</g>
+<g >
+<title>loopback_xmit (10,101,010 samples, 0.03%)</title><rect x="1379.6" y="485" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1382.65" y="495.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="525.5" y="693" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="528.50" y="703.5" ></text>
+</g>
+<g >
+<title>do_anonymous_page (10,101,010 samples, 0.03%)</title><rect x="127.8" y="613" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="130.77" y="623.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (10,101,010 samples, 0.03%)</title><rect x="405.6" y="725" width="0.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="408.58" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="238.6" y="613" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="241.63" y="623.5" ></text>
+</g>
+<g >
+<title>release_pages (10,101,010 samples, 0.03%)</title><rect x="509.5" y="517" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="512.54" y="527.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="222.2" y="549" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="225.24" y="559.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.03%)</title><rect x="399.5" y="677" width="0.5" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="402.54" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (20,202,020 samples, 0.06%)</title><rect x="515.6" y="661" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="518.58" y="671.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (10,101,010 samples, 0.03%)</title><rect x="359.4" y="597" width="0.5" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="362.42" y="607.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="281.3" y="629" width="0.5" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="284.34" y="639.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.03%)</title><rect x="318.9" y="565" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="321.87" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_rename (40,404,040 samples, 0.13%)</title><rect x="466.0" y="725" width="1.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="468.97" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="557.9" y="725" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="560.86" y="735.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (60,606,060 samples, 0.19%)</title><rect x="616.5" y="869" width="2.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="619.53" y="879.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="289.5" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="292.54" y="639.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="235.6" y="757" width="0.4" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="238.61" y="767.5" ></text>
+</g>
+<g >
+<title>write (70,707,070 samples, 0.22%)</title><rect x="553.1" y="741" width="3.0" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="556.11" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="513.4" y="677" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="516.43" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_bread (50,505,050 samples, 0.16%)</title><rect x="630.3" y="741" width="2.2" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="633.33" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="196.8" y="725" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="199.79" y="735.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="232.6" y="533" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="235.59" y="543.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="585.5" y="645" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="588.47" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="422.4" y="757" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="425.40" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="206.7" y="837" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="209.71" y="847.5" ></text>
+</g>
+<g >
+<title>__ctype_b_loc (10,101,010 samples, 0.03%)</title><rect x="541.5" y="741" width="0.4" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="544.47" y="751.5" ></text>
+</g>
+<g >
+<title>git_index_write (161,616,160 samples, 0.50%)</title><rect x="270.6" y="885" width="6.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="273.56" y="895.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="336.1" y="773" width="0.5" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="339.13" y="783.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="625.2" y="693" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="628.15" y="703.5" ></text>
+</g>
+<g >
+<title>alloc_pages (20,202,020 samples, 0.06%)</title><rect x="271.0" y="597" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="273.99" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.03%)</title><rect x="629.9" y="709" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="632.90" y="719.5" ></text>
+</g>
+<g >
+<title>__remove_inode_hash (10,101,010 samples, 0.03%)</title><rect x="103.6" y="565" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="106.61" y="575.5" ></text>
+</g>
+<g >
+<title>ip_output (40,404,040 samples, 0.13%)</title><rect x="1034.1" y="725" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1037.11" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="618.7" y="693" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="621.68" y="703.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="504.4" y="613" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="507.37" y="623.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.03%)</title><rect x="318.9" y="597" width="0.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="321.87" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (20,202,020 samples, 0.06%)</title><rect x="464.7" y="597" width="0.8" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="467.68" y="607.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="154.1" y="453" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="157.08" y="463.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="490.6" y="629" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="493.56" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="243.8" y="693" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="246.81" y="703.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.03%)</title><rect x="42.4" y="933" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="45.35" y="943.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="151.9" y="437" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="154.93" y="447.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="54.4" y="837" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="57.43" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (40,404,040 samples, 0.13%)</title><rect x="52.7" y="789" width="1.7" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="55.71" y="799.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="532.8" y="693" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="535.84" y="703.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="789" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1373.59" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="381.0" y="693" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="383.99" y="703.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.06%)</title><rect x="463.0" y="773" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="465.95" y="783.5" ></text>
+</g>
+<g >
+<title>open64 (30,303,030 samples, 0.09%)</title><rect x="442.2" y="725" width="1.3" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="445.25" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="276.6" y="709" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="279.60" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (50,505,050 samples, 0.16%)</title><rect x="166.2" y="677" width="2.1" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="169.16" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_write (30,303,030 samples, 0.09%)</title><rect x="215.8" y="741" width="1.3" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="218.77" y="751.5" ></text>
+</g>
+<g >
+<title>journal_end_buffer_io_sync (10,101,010 samples, 0.03%)</title><rect x="584.2" y="309" width="0.4" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="587.17" y="319.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (121,212,120 samples, 0.38%)</title><rect x="90.2" y="949" width="5.2" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="93.24" y="959.5" ></text>
+</g>
+<g >
+<title>post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="1017.7" y="677" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1020.71" y="687.5" ></text>
+</g>
+<g >
+<title>__d_add (10,101,010 samples, 0.03%)</title><rect x="523.8" y="629" width="0.4" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="526.78" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (20,202,020 samples, 0.06%)</title><rect x="199.8" y="661" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="202.81" y="671.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.03%)</title><rect x="603.6" y="517" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="606.59" y="527.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (424,242,420 samples, 1.31%)</title><rect x="568.6" y="773" width="18.2" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="571.64" y="783.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (40,404,040 samples, 0.13%)</title><rect x="318.4" y="661" width="1.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="321.44" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="612.6" y="709" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="615.64" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="617.0" y="821" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="619.96" y="831.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="1366.3" y="853" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1369.27" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (161,616,160 samples, 0.50%)</title><rect x="475.0" y="677" width="6.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="478.03" y="687.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="358.1" y="485" width="0.5" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="361.13" y="495.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="126.9" y="725" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="129.91" y="735.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (20,202,020 samples, 0.06%)</title><rect x="282.6" y="901" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="285.64" y="911.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="339.1" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="342.15" y="559.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (20,202,020 samples, 0.06%)</title><rect x="68.7" y="821" width="0.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="71.67" y="831.5" ></text>
+</g>
+<g >
+<title>_IO_default_xsputn (10,101,010 samples, 0.03%)</title><rect x="353.8" y="709" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="356.81" y="719.5" ></text>
+</g>
+<g >
+<title>iput (30,303,030 samples, 0.09%)</title><rect x="209.7" y="757" width="1.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="212.73" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="501.3" y="789" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="504.35" y="799.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.03%)</title><rect x="86.4" y="757" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="89.36" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="542.8" y="741" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="545.76" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.09%)</title><rect x="613.1" y="693" width="1.3" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="616.08" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="230.0" y="549" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="233.01" y="559.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (30,303,030 samples, 0.09%)</title><rect x="403.4" y="757" width="1.3" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="406.42" y="767.5" ></text>
+</g>
+<g >
+<title>libjson_has (10,101,010 samples, 0.03%)</title><rect x="1328.7" y="917" width="0.5" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1331.74" y="927.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="168.7" y="805" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="171.75" y="815.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (10,101,010 samples, 0.03%)</title><rect x="1323.1" y="757" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1326.14" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (20,202,020 samples, 0.06%)</title><rect x="508.7" y="533" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="511.68" y="543.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="108.8" y="533" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="111.79" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="311.5" y="661" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="314.54" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="731.7" y="853" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="734.71" y="863.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.03%)</title><rect x="412.5" y="789" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="415.48" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (30,303,030 samples, 0.09%)</title><rect x="340.0" y="533" width="1.3" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="343.01" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_put_io_end (10,101,010 samples, 0.03%)</title><rect x="348.2" y="549" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="351.21" y="559.5" ></text>
+</g>
+<g >
+<title>crc_pcl (20,202,020 samples, 0.06%)</title><rect x="585.9" y="677" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="588.90" y="687.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="487.1" y="485" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="490.11" y="495.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="426.3" y="437" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="429.29" y="447.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="396.1" y="661" width="0.4" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="399.09" y="671.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="259.3" y="661" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="262.34" y="671.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="531.1" y="581" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="534.11" y="591.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.03%)</title><rect x="315.0" y="645" width="0.4" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="317.99" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="329.2" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="332.22" y="767.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="440.5" y="597" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="443.52" y="607.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="29.0" y="725" width="0.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="31.98" y="735.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (30,303,030 samples, 0.09%)</title><rect x="664.8" y="821" width="1.3" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="667.84" y="831.5" ></text>
+</g>
+<g >
+<title>fstatat64 (151,515,150 samples, 0.47%)</title><rect x="321.5" y="821" width="6.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="324.46" y="831.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (30,303,030 samples, 0.09%)</title><rect x="344.3" y="485" width="1.3" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="347.32" y="495.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.03%)</title><rect x="633.4" y="725" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="636.35" y="735.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="462.1" y="661" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="465.09" y="671.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (20,202,020 samples, 0.06%)</title><rect x="483.7" y="581" width="0.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="486.66" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="227.4" y="581" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="230.42" y="591.5" ></text>
+</g>
+<g >
+<title>json_tokener_new_ex (10,101,010 samples, 0.03%)</title><rect x="1371.0" y="853" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1374.02" y="863.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (90,909,090 samples, 0.28%)</title><rect x="513.4" y="757" width="3.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="516.43" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="223.5" y="741" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="226.54" y="751.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.03%)</title><rect x="221.8" y="629" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="224.81" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="42.8" y="917" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="45.79" y="927.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="732.1" y="853" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="735.14" y="863.5" ></text>
+</g>
+<g >
+<title>iput (30,303,030 samples, 0.09%)</title><rect x="105.3" y="597" width="1.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="108.34" y="607.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="387.5" y="581" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="390.46" y="591.5" ></text>
+</g>
+<g >
+<title>net_close (161,616,160 samples, 0.50%)</title><rect x="29.8" y="917" width="6.9" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="32.84" y="927.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (151,515,150 samples, 0.47%)</title><rect x="626.4" y="837" width="6.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="629.45" y="847.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="613" width="1.3" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1377.47" y="623.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="336.1" y="645" width="0.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="339.13" y="655.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="123.9" y="597" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="126.89" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="185.1" y="485" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="188.14" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="89.4" y="1013" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="92.37" y="1023.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="106.2" y="533" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="109.20" y="543.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (10,101,010 samples, 0.03%)</title><rect x="995.3" y="677" width="0.4" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="998.28" y="687.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (20,202,020 samples, 0.06%)</title><rect x="434.5" y="533" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="437.48" y="543.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="999.6" y="549" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1002.60" y="559.5" ></text>
+</g>
+<g >
+<title>git_repository_index (50,505,050 samples, 0.16%)</title><rect x="279.2" y="901" width="2.1" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="282.18" y="911.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="460.8" y="693" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="463.80" y="703.5" ></text>
+</g>
+<g >
+<title>filp_close (10,101,010 samples, 0.03%)</title><rect x="374.5" y="645" width="0.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="377.52" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.28%)</title><rect x="259.8" y="773" width="3.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="262.77" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="1037.1" y="901" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1040.13" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="188.2" y="805" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="191.16" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="356.0" y="693" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="358.97" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.09%)</title><rect x="592.4" y="821" width="1.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="595.37" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (60,606,060 samples, 0.19%)</title><rect x="44.5" y="821" width="2.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="47.51" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="181.3" y="549" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="184.26" y="559.5" ></text>
+</g>
+<g >
+<title>kthread_blkcg (10,101,010 samples, 0.03%)</title><rect x="1352.0" y="725" width="0.5" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="1355.04" y="735.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (40,404,040 samples, 0.13%)</title><rect x="439.7" y="837" width="1.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="442.66" y="847.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="286.9" y="661" width="0.5" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="289.95" y="671.5" ></text>
+</g>
+<g >
+<title>__ctype_b_loc@plt (10,101,010 samples, 0.03%)</title><rect x="559.6" y="773" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="562.58" y="783.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.03%)</title><rect x="146.3" y="597" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="149.32" y="607.5" ></text>
+</g>
+<g >
+<title>dentry_kill (50,505,050 samples, 0.16%)</title><rect x="562.6" y="677" width="2.2" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="565.60" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="379.7" y="581" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="382.70" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (414,141,410 samples, 1.28%)</title><rect x="551.0" y="821" width="17.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="553.96" y="831.5" ></text>
+</g>
+<g >
+<title>git_config_set_int64 (242,424,240 samples, 0.75%)</title><rect x="540.6" y="837" width="10.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="543.60" y="847.5" ></text>
+</g>
+<g >
+<title>slab_pre_alloc_hook.constprop.0 (20,202,020 samples, 0.06%)</title><rect x="76.4" y="773" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="79.43" y="783.5" ></text>
+</g>
+<g >
+<title>lookup_dcache (10,101,010 samples, 0.03%)</title><rect x="475.0" y="597" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="478.03" y="607.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="255.9" y="725" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="258.89" y="735.5" ></text>
+</g>
+<g >
+<title>net_send_part (131,313,130 samples, 0.41%)</title><rect x="10.0" y="933" width="5.6" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="13.00" y="943.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.06%)</title><rect x="489.7" y="693" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="492.70" y="703.5" ></text>
+</g>
+<g >
+<title>new_inode (10,101,010 samples, 0.03%)</title><rect x="576.8" y="709" width="0.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="579.84" y="719.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (20,202,020 samples, 0.06%)</title><rect x="725.7" y="805" width="0.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="728.67" y="815.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="579.4" y="661" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="582.43" y="671.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="223.1" y="741" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="226.10" y="751.5" ></text>
+</g>
+<g >
+<title>nd_jump_root (10,101,010 samples, 0.03%)</title><rect x="245.5" y="613" width="0.5" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="248.54" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.03%)</title><rect x="224.4" y="629" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="227.40" y="639.5" ></text>
+</g>
+<g >
+<title>from_kgid (10,101,010 samples, 0.03%)</title><rect x="731.7" y="709" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="734.71" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="104.9" y="597" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="107.90" y="607.5" ></text>
+</g>
+<g >
+<title>hv_apic_read (50,505,050 samples, 0.16%)</title><rect x="1030.7" y="629" width="2.1" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1033.66" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (60,606,060 samples, 0.19%)</title><rect x="510.0" y="629" width="2.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="512.97" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="631.2" y="629" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="634.19" y="639.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="195.5" y="581" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="198.50" y="591.5" ></text>
+</g>
+<g >
+<title>ima_file_check (10,101,010 samples, 0.03%)</title><rect x="356.4" y="581" width="0.4" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="359.40" y="591.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.03%)</title><rect x="614.8" y="565" width="0.4" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="617.80" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="575.1" y="629" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="578.11" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="443.5" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="446.54" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="411.2" y="709" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="414.19" y="719.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="821" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1373.59" y="831.5" ></text>
+</g>
+<g >
+<title>trace_call_bpf (40,404,040 samples, 0.13%)</title><rect x="1384.0" y="741" width="1.7" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1386.96" y="751.5" ></text>
+</g>
+<g >
+<title>loopback_xmit (10,101,010 samples, 0.03%)</title><rect x="1021.6" y="85" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1024.60" y="95.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_info (10,101,010 samples, 0.03%)</title><rect x="576.4" y="693" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="579.41" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="290.0" y="581" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="292.97" y="591.5" ></text>
+</g>
+<g >
+<title>inet_wait_for_connect (30,303,030 samples, 0.09%)</title><rect x="1028.1" y="821" width="1.3" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1031.07" y="831.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.03%)</title><rect x="309.8" y="629" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="312.81" y="639.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (10,101,010 samples, 0.03%)</title><rect x="12.2" y="309" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="15.16" y="319.5" ></text>
+</g>
+<g >
+<title>vma_alloc_folio (10,101,010 samples, 0.03%)</title><rect x="1048.8" y="773" width="0.4" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1051.77" y="783.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="362.9" y="565" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="365.87" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="488.0" y="741" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="490.97" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="596.3" y="677" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="599.25" y="687.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="423.7" y="645" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="426.70" y="655.5" ></text>
+</g>
+<g >
+<title>rename (90,909,090 samples, 0.28%)</title><rect x="464.2" y="805" width="3.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="467.25" y="815.5" ></text>
+</g>
+<g >
+<title>new_inode (10,101,010 samples, 0.03%)</title><rect x="514.3" y="693" width="0.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="517.29" y="703.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="603.6" y="565" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="606.59" y="575.5" ></text>
+</g>
+<g >
+<title>trace_call_bpf (80,808,080 samples, 0.25%)</title><rect x="1029.4" y="741" width="3.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1032.36" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (202,020,200 samples, 0.63%)</title><rect x="102.3" y="757" width="8.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="105.32" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (1,565,656,550 samples, 4.85%)</title><rect x="101.9" y="821" width="66.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="104.88" y="831.5" >[libc.s..</text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="732.1" y="869" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="735.14" y="879.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (10,101,010 samples, 0.03%)</title><rect x="393.9" y="581" width="0.5" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="396.93" y="591.5" ></text>
+</g>
+<g >
+<title>__rseq_handle_notify_resume (10,101,010 samples, 0.03%)</title><rect x="457.3" y="613" width="0.5" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="460.35" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (484,848,480 samples, 1.50%)</title><rect x="219.7" y="869" width="20.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="222.65" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="489.7" y="773" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="492.70" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="615.7" y="773" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="618.66" y="783.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="337.0" y="693" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="339.99" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="432.8" y="517" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="435.76" y="527.5" ></text>
+</g>
+<g >
+<title>blk_mq_free_request (10,101,010 samples, 0.03%)</title><rect x="613.1" y="405" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="616.08" y="415.5" ></text>
+</g>
+<g >
+<title>new_inode (10,101,010 samples, 0.03%)</title><rect x="498.3" y="613" width="0.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="501.33" y="623.5" ></text>
+</g>
+<g >
+<title>do_open (20,202,020 samples, 0.06%)</title><rect x="606.6" y="661" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="609.61" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="597.5" y="773" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="600.55" y="783.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_ipv4 (10,101,010 samples, 0.03%)</title><rect x="1008.2" y="117" width="0.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1011.22" y="127.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="387.0" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="390.03" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="550.5" y="597" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="553.53" y="607.5" ></text>
+</g>
+<g >
+<title>__sock_create (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="869" width="0.5" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1030.64" y="879.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.03%)</title><rect x="579.0" y="645" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="582.00" y="655.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="316.7" y="693" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="319.71" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="263.7" y="773" width="1.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="266.65" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="164.4" y="629" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="167.44" y="639.5" ></text>
+</g>
+<g >
+<title>copy_page_range (222,222,220 samples, 0.69%)</title><rect x="639.8" y="741" width="9.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="642.82" y="751.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.03%)</title><rect x="83.8" y="677" width="0.4" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="86.77" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="439.2" y="757" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="442.23" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.03%)</title><rect x="338.7" y="581" width="0.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="341.72" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.03%)</title><rect x="482.8" y="533" width="0.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="485.80" y="543.5" ></text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.03%)</title><rect x="401.7" y="581" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="404.70" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="113.5" y="629" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="116.53" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="610.9" y="645" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="613.92" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (70,707,070 samples, 0.22%)</title><rect x="496.6" y="805" width="3.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="499.60" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="499.6" y="741" width="0.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="502.62" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="406.9" y="613" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="409.87" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="104.9" y="581" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="107.90" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (10,101,010 samples, 0.03%)</title><rect x="1026.8" y="645" width="0.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1029.77" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="359.9" y="709" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="362.85" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="468.1" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="471.13" y="687.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="373.7" y="629" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="376.66" y="639.5" ></text>
+</g>
+<g >
+<title>vma_interval_tree_insert_after (10,101,010 samples, 0.03%)</title><rect x="661.8" y="741" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="664.82" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (20,202,020 samples, 0.06%)</title><rect x="554.8" y="565" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="557.84" y="575.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="458.6" y="837" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="461.64" y="847.5" ></text>
+</g>
+<g >
+<title>realloc (50,505,050 samples, 0.16%)</title><rect x="724.8" y="885" width="2.2" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="727.80" y="895.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (727,272,720 samples, 2.25%)</title><rect x="57.9" y="949" width="31.0" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="60.88" y="959.5" >do..</text>
+</g>
+<g >
+<title>ext4_ext_remove_space (40,404,040 samples, 0.13%)</title><rect x="545.8" y="533" width="1.7" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="548.78" y="543.5" ></text>
+</g>
+<g >
+<title>iput (50,505,050 samples, 0.16%)</title><rect x="198.5" y="725" width="2.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="201.52" y="735.5" ></text>
+</g>
+<g >
+<title>worker_do_run (29,858,585,560 samples, 92.40%)</title><rect x="95.4" y="981" width="1275.2" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="98.41" y="991.5" >worker_do_run</text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="271.9" y="629" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="274.85" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="233.0" y="645" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="236.03" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (1,313,131,300 samples, 4.06%)</title><rect x="668.7" y="869" width="56.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="671.72" y="879.5" >entry..</text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="741" width="1.3" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1377.47" y="751.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="411.6" y="709" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="414.62" y="719.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="314.1" y="549" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="317.13" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.03%)</title><rect x="349.9" y="709" width="0.5" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="352.93" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="384.9" y="613" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="387.87" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (90,909,090 samples, 0.28%)</title><rect x="106.6" y="597" width="3.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="109.63" y="607.5" ></text>
+</g>
+<g >
+<title>wake_up_bit (10,101,010 samples, 0.03%)</title><rect x="71.7" y="581" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="74.69" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (60,606,060 samples, 0.19%)</title><rect x="51.8" y="805" width="2.6" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="54.84" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="233.9" y="661" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="236.89" y="671.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.03%)</title><rect x="459.9" y="549" width="0.5" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="462.93" y="559.5" ></text>
+</g>
+<g >
+<title>__sbrk (10,101,010 samples, 0.03%)</title><rect x="127.3" y="693" width="0.5" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="130.34" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_info (10,101,010 samples, 0.03%)</title><rect x="198.9" y="645" width="0.5" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="201.95" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="1036.3" y="837" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1039.26" y="847.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (40,404,040 samples, 0.13%)</title><rect x="734.3" y="661" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="737.30" y="671.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="403.9" y="645" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="406.85" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="244.7" y="757" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="247.67" y="767.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="362.4" y="645" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="365.44" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="104.5" y="693" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="107.47" y="703.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.03%)</title><rect x="544.9" y="517" width="0.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="547.92" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (353,535,350 samples, 1.09%)</title><rect x="240.8" y="853" width="15.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="243.79" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,808,080 samples, 0.25%)</title><rect x="122.6" y="709" width="3.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="125.59" y="719.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="612.2" y="741" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="615.21" y="751.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="134.7" y="629" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="137.67" y="639.5" ></text>
+</g>
+<g >
+<title>git_refdb_backend_fs (30,303,030 samples, 0.09%)</title><rect x="448.3" y="757" width="1.3" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="451.29" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.25%)</title><rect x="598.4" y="773" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="601.41" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (40,404,040 samples, 0.13%)</title><rect x="504.8" y="581" width="1.7" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="507.80" y="591.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="613.1" y="581" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="616.08" y="591.5" ></text>
+</g>
+<g >
+<title>sd_setup_read_write_cmnd (10,101,010 samples, 0.03%)</title><rect x="511.3" y="309" width="0.4" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="514.27" y="319.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="332.2" y="709" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="335.24" y="719.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="1367.1" y="677" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1370.14" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="118.3" y="693" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="121.28" y="703.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (242,424,240 samples, 0.75%)</title><rect x="682.5" y="693" width="10.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="685.53" y="703.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (10,101,010 samples, 0.03%)</title><rect x="1021.6" y="149" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1024.60" y="159.5" ></text>
+</g>
+<g >
+<title>uprobe_start_dup_mmap (20,202,020 samples, 0.06%)</title><rect x="656.6" y="741" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="659.65" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="288.2" y="645" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="291.24" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="727.8" y="885" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="730.82" y="895.5" ></text>
+</g>
+<g >
+<title>__pte_alloc (10,101,010 samples, 0.03%)</title><rect x="1367.1" y="725" width="0.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1370.14" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="217.9" y="677" width="0.5" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="220.93" y="687.5" ></text>
+</g>
+<g >
+<title>arch_irq_work_raise (80,808,080 samples, 0.25%)</title><rect x="1029.4" y="661" width="3.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1032.36" y="671.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="221.8" y="677" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="224.81" y="687.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="259.3" y="757" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="262.34" y="767.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="365.0" y="533" width="0.5" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="368.03" y="543.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (20,202,020 samples, 0.06%)</title><rect x="12.6" y="341" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="15.59" y="351.5" ></text>
+</g>
+<g >
+<title>git_reference_iterator_new (101,010,100 samples, 0.31%)</title><rect x="445.3" y="805" width="4.3" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="448.27" y="815.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="728.7" y="773" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="731.69" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="590.6" y="725" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="593.64" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_desc (10,101,010 samples, 0.03%)</title><rect x="172.6" y="613" width="0.5" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="175.63" y="623.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="253.7" y="533" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="256.73" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (111,111,110 samples, 0.34%)</title><rect x="230.0" y="773" width="4.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="233.01" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="258.5" y="549" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="261.48" y="559.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.03%)</title><rect x="283.1" y="821" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="286.07" y="831.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="555.3" y="501" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="558.27" y="511.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.06%)</title><rect x="459.5" y="757" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="462.50" y="767.5" ></text>
+</g>
+<g >
+<title>__tcp_ack_snd_check (20,202,020 samples, 0.06%)</title><rect x="1374.5" y="309" width="0.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1377.47" y="319.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="417.2" y="853" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="420.23" y="863.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.03%)</title><rect x="201.1" y="661" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="204.10" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.03%)</title><rect x="508.2" y="565" width="0.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="511.25" y="575.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.06%)</title><rect x="321.5" y="725" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="324.46" y="735.5" ></text>
+</g>
+<g >
+<title>rmdir (30,303,030 samples, 0.09%)</title><rect x="105.3" y="693" width="1.3" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="108.34" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="565.2" y="549" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="568.19" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.09%)</title><rect x="407.3" y="677" width="1.3" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="410.31" y="687.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.03%)</title><rect x="489.3" y="677" width="0.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="492.27" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="539.3" y="709" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="542.31" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="224.8" y="565" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="227.83" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="283.1" y="805" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="286.07" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="471.2" y="437" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="474.15" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="381.0" y="677" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="383.99" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (40,404,040 samples, 0.13%)</title><rect x="190.8" y="597" width="1.7" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="193.75" y="607.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="1363.3" y="661" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1366.25" y="671.5" ></text>
+</g>
+<g >
+<title>perf_event_fork (10,101,010 samples, 0.03%)</title><rect x="21.6" y="949" width="0.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="24.65" y="959.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="407.7" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="410.74" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="445.3" y="709" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="448.27" y="719.5" ></text>
+</g>
+<g >
+<title>lru_add_drain_cpu (10,101,010 samples, 0.03%)</title><rect x="232.6" y="549" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="235.59" y="559.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.03%)</title><rect x="474.2" y="501" width="0.4" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="477.17" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="627.7" y="757" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="630.74" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (40,404,040 samples, 0.13%)</title><rect x="194.2" y="661" width="1.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="197.20" y="671.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (10,101,010 samples, 0.03%)</title><rect x="272.3" y="597" width="0.4" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="275.28" y="607.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (101,010,100 samples, 0.31%)</title><rect x="453.9" y="773" width="4.3" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="456.89" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.03%)</title><rect x="412.1" y="645" width="0.4" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="415.05" y="655.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (10,101,010 samples, 0.03%)</title><rect x="1022.5" y="277" width="0.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1025.46" y="287.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (60,606,060 samples, 0.19%)</title><rect x="433.2" y="613" width="2.6" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="436.19" y="623.5" ></text>
+</g>
+<g >
+<title>ip_route_output_key_hash (10,101,010 samples, 0.03%)</title><rect x="1033.2" y="805" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1036.24" y="815.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (20,202,020 samples, 0.06%)</title><rect x="402.1" y="501" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="405.13" y="511.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (50,505,050 samples, 0.16%)</title><rect x="11.3" y="389" width="2.2" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="14.29" y="399.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="340.0" y="517" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="343.01" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (10,101,010 samples, 0.03%)</title><rect x="498.3" y="581" width="0.5" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="501.33" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (121,212,120 samples, 0.38%)</title><rect x="1006.1" y="725" width="5.1" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1009.07" y="735.5" ></text>
+</g>
+<g >
+<title>fsnotify_perm.part.0 (10,101,010 samples, 0.03%)</title><rect x="315.0" y="613" width="0.4" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="317.99" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.06%)</title><rect x="533.7" y="741" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="536.70" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="391.8" y="677" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="394.78" y="687.5" ></text>
+</g>
+<g >
+<title>copyout (373,737,370 samples, 1.16%)</title><rect x="676.9" y="741" width="16.0" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="679.92" y="751.5" ></text>
+</g>
+<g >
+<title>vfsgid_in_group_p (10,101,010 samples, 0.03%)</title><rect x="387.5" y="565" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="390.46" y="575.5" ></text>
+</g>
+<g >
+<title>git_repository_config_snapshot (141,414,140 samples, 0.44%)</title><rect x="386.6" y="789" width="6.0" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="389.60" y="799.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="444.8" y="629" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="447.84" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="327.9" y="821" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="330.93" y="831.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.06%)</title><rect x="487.1" y="581" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="490.11" y="591.5" ></text>
+</g>
+<g >
+<title>evict (30,303,030 samples, 0.09%)</title><rect x="105.3" y="581" width="1.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="108.34" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_v6_syn_recv_sock (10,101,010 samples, 0.03%)</title><rect x="1028.9" y="309" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1031.93" y="319.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (30,303,030 samples, 0.09%)</title><rect x="993.1" y="661" width="1.3" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="996.13" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="265.8" y="837" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="268.81" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_link (30,303,030 samples, 0.09%)</title><rect x="311.1" y="677" width="1.3" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="314.11" y="687.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.06%)</title><rect x="285.7" y="661" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="288.65" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="494.0" y="821" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="497.01" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="484.5" y="677" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="487.52" y="687.5" ></text>
+</g>
+<g >
+<title>select_collect (10,101,010 samples, 0.03%)</title><rect x="155.8" y="629" width="0.4" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="158.81" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="630.8" y="677" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="633.76" y="687.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (30,303,030 samples, 0.09%)</title><rect x="1047.9" y="853" width="1.3" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1050.91" y="863.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="539.3" y="661" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="542.31" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="473.3" y="661" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="476.31" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (20,202,020 samples, 0.06%)</title><rect x="1011.2" y="373" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1014.24" y="383.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="220.9" y="693" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="223.95" y="703.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="620.4" y="677" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="623.41" y="687.5" ></text>
+</g>
+<g >
+<title>__check_heap_object (10,101,010 samples, 0.03%)</title><rect x="281.8" y="581" width="0.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="284.77" y="591.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="116.6" y="453" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="119.55" y="463.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="300.8" y="469" width="0.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="303.75" y="479.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="590.6" y="741" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="593.64" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="459.5" y="837" width="2.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="462.50" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="437.5" y="789" width="2.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="440.50" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (30,303,030 samples, 0.09%)</title><rect x="588.9" y="773" width="1.3" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="591.92" y="783.5" ></text>
+</g>
+<g >
+<title>xas_start (10,101,010 samples, 0.03%)</title><rect x="421.1" y="549" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="424.11" y="559.5" ></text>
+</g>
+<g >
+<title>sk_page_frag_refill (151,515,150 samples, 0.47%)</title><rect x="1012.5" y="757" width="6.5" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="1015.54" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.03%)</title><rect x="167.9" y="645" width="0.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="170.89" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="48.8" y="901" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="51.82" y="911.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="359.9" y="645" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="362.85" y="655.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (202,020,200 samples, 0.63%)</title><rect x="1318.8" y="901" width="8.6" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1321.82" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (20,202,020 samples, 0.06%)</title><rect x="208.9" y="757" width="0.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="211.87" y="767.5" ></text>
+</g>
+<g >
+<title>filemap_flush (30,303,030 samples, 0.09%)</title><rect x="466.0" y="661" width="1.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="468.97" y="671.5" ></text>
+</g>
+<g >
+<title>__release_sock (10,101,010 samples, 0.03%)</title><rect x="1026.8" y="709" width="0.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1029.77" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="55.7" y="869" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="58.73" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="378.8" y="693" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="381.83" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (40,404,040 samples, 0.13%)</title><rect x="203.3" y="725" width="1.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="206.26" y="735.5" ></text>
+</g>
+<g >
+<title>brk (191,919,190 samples, 0.59%)</title><rect x="733.0" y="821" width="8.2" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="736.00" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="276.2" y="821" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="279.16" y="831.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="447.4" y="677" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="450.42" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.03%)</title><rect x="1026.8" y="693" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1029.77" y="703.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="27.3" y="837" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="30.26" y="847.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="132.9" y="469" width="0.5" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="135.94" y="479.5" ></text>
+</g>
+<g >
+<title>getdents64 (202,020,200 samples, 0.63%)</title><rect x="129.9" y="773" width="8.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="132.92" y="783.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (20,202,020 samples, 0.06%)</title><rect x="637.7" y="693" width="0.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="640.66" y="703.5" ></text>
+</g>
+<g >
+<title>out_of_line_wait_on_bit (10,101,010 samples, 0.03%)</title><rect x="572.1" y="661" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="575.09" y="671.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.09%)</title><rect x="120.0" y="725" width="1.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="123.00" y="735.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (20,202,020 samples, 0.06%)</title><rect x="504.8" y="565" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="507.80" y="575.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="223.5" y="725" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="226.54" y="735.5" ></text>
+</g>
+<g >
+<title>git_object_peel (40,404,040 samples, 0.13%)</title><rect x="277.5" y="901" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="280.46" y="911.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (50,505,050 samples, 0.16%)</title><rect x="193.8" y="677" width="2.1" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="196.77" y="687.5" ></text>
+</g>
+<g >
+<title>create_empty_buffers (10,101,010 samples, 0.03%)</title><rect x="463.4" y="597" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="466.39" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (20,202,020 samples, 0.06%)</title><rect x="503.9" y="677" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="506.94" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="414.2" y="693" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="417.21" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="515.6" y="549" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="518.58" y="559.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="1375.8" y="917" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1378.76" y="927.5" ></text>
+</g>
+<g >
+<title>evict (212,121,210 samples, 0.66%)</title><rect x="177.4" y="677" width="9.0" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="180.38" y="687.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.03%)</title><rect x="623.4" y="677" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="626.43" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="564.3" y="389" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="567.33" y="399.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="557.9" y="613" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="560.86" y="623.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.03%)</title><rect x="523.3" y="629" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="526.35" y="639.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.03%)</title><rect x="459.9" y="501" width="0.5" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="462.93" y="511.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="228.3" y="549" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="231.28" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.22%)</title><rect x="23.8" y="933" width="3.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="26.80" y="943.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (20,202,020 samples, 0.06%)</title><rect x="186.4" y="693" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="189.44" y="703.5" ></text>
+</g>
+<g >
+<title>hv_send_ipi_self (30,303,030 samples, 0.09%)</title><rect x="1384.0" y="645" width="1.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1386.96" y="655.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="353.0" y="741" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="355.95" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="588.5" y="709" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="591.49" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="212.8" y="821" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="215.75" y="831.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.03%)</title><rect x="466.0" y="517" width="0.4" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="468.97" y="527.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="307.2" y="613" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="310.22" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="1037.1" y="805" width="0.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1040.13" y="815.5" ></text>
+</g>
+<g >
+<title>mpage_submit_folio (20,202,020 samples, 0.06%)</title><rect x="347.3" y="501" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="350.34" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_read_block_bitmap_nowait (10,101,010 samples, 0.03%)</title><rect x="232.2" y="485" width="0.4" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="235.16" y="495.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="250.3" y="629" width="0.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="253.28" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (424,242,420 samples, 1.31%)</title><rect x="139.0" y="725" width="18.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="141.98" y="735.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.03%)</title><rect x="472.9" y="693" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="475.88" y="703.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="547.9" y="309" width="0.5" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="550.94" y="319.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.03%)</title><rect x="547.9" y="229" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="550.94" y="239.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="573.8" y="693" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="576.82" y="703.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.06%)</title><rect x="16.0" y="901" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="19.04" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="500.1" y="789" width="1.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="503.05" y="799.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="315.0" y="709" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="317.99" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="104.9" y="549" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="107.90" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="462.1" y="741" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="465.09" y="751.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="529.0" y="581" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="531.96" y="591.5" ></text>
+</g>
+<g >
+<title>wake_up_bit (10,101,010 samples, 0.03%)</title><rect x="487.1" y="245" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="490.11" y="255.5" ></text>
+</g>
+<g >
+<title>inet_wait_for_connect (40,404,040 samples, 0.13%)</title><rect x="1382.2" y="821" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1385.24" y="831.5" ></text>
+</g>
+<g >
+<title>shrink_dentry_list (10,101,010 samples, 0.03%)</title><rect x="201.1" y="709" width="0.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="204.10" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="532.8" y="805" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="535.84" y="815.5" ></text>
+</g>
+<g >
+<title>rename (90,909,090 samples, 0.28%)</title><rect x="424.1" y="789" width="3.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="427.13" y="799.5" ></text>
+</g>
+<g >
+<title>inet_release (20,202,020 samples, 0.06%)</title><rect x="1026.8" y="757" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1029.77" y="767.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (20,202,020 samples, 0.06%)</title><rect x="1036.7" y="933" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1039.70" y="943.5" ></text>
+</g>
+<g >
+<title>irq_work_queue (40,404,040 samples, 0.13%)</title><rect x="1384.0" y="693" width="1.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1386.96" y="703.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (10,101,010 samples, 0.03%)</title><rect x="335.3" y="533" width="0.4" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="338.26" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (20,202,020 samples, 0.06%)</title><rect x="432.3" y="613" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="435.33" y="623.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="462.5" y="661" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="465.52" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.06%)</title><rect x="370.6" y="629" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="373.64" y="639.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="255.5" y="613" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="258.46" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (111,111,110 samples, 0.34%)</title><rect x="343.9" y="677" width="4.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="346.89" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="443.5" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="446.54" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="423.3" y="757" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="426.27" y="767.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="353.4" y="693" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="356.38" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="373.2" y="645" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="376.23" y="655.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="314.1" y="421" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="317.13" y="431.5" ></text>
+</g>
+<g >
+<title>ip_local_out (60,606,060 samples, 0.19%)</title><rect x="1020.7" y="661" width="2.6" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1023.73" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.13%)</title><rect x="272.7" y="837" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="275.71" y="847.5" ></text>
+</g>
+<g >
+<title>git_reference_symbolic_create (303,030,300 samples, 0.94%)</title><rect x="392.6" y="837" width="13.0" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="395.64" y="847.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="28.1" y="757" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="31.12" y="767.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.03%)</title><rect x="134.7" y="613" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="137.67" y="623.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="605.3" y="629" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="608.31" y="639.5" ></text>
+</g>
+<g >
+<title>path_openat (30,303,030 samples, 0.09%)</title><rect x="120.0" y="693" width="1.3" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="123.00" y="703.5" ></text>
+</g>
+<g >
+<title>mas_store_prealloc (20,202,020 samples, 0.06%)</title><rect x="1047.0" y="757" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1050.05" y="767.5" ></text>
+</g>
+<g >
+<title>folio_alloc_buffers (10,101,010 samples, 0.03%)</title><rect x="463.4" y="565" width="0.4" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="466.39" y="575.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.06%)</title><rect x="415.9" y="741" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="418.93" y="751.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="27.3" y="821" width="0.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="30.26" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (131,313,130 samples, 0.41%)</title><rect x="533.7" y="757" width="5.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="536.70" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="206.7" y="821" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="209.71" y="831.5" ></text>
+</g>
+<g >
+<title>filp_close (10,101,010 samples, 0.03%)</title><rect x="422.8" y="709" width="0.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="425.84" y="719.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="177.4" y="629" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="180.38" y="639.5" ></text>
+</g>
+<g >
+<title>__folio_alloc (60,606,060 samples, 0.19%)</title><rect x="1324.0" y="789" width="2.6" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1327.00" y="799.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (30,303,030 samples, 0.09%)</title><rect x="344.3" y="421" width="1.3" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="347.32" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.03%)</title><rect x="483.7" y="565" width="0.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="486.66" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (40,404,040 samples, 0.13%)</title><rect x="515.6" y="709" width="1.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="518.58" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.06%)</title><rect x="540.6" y="629" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="543.60" y="639.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="999.6" y="501" width="0.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1002.60" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="396.1" y="693" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="399.09" y="703.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (30,303,030 samples, 0.09%)</title><rect x="1315.8" y="869" width="1.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1318.80" y="879.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="221.4" y="725" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="224.38" y="735.5" ></text>
+</g>
+<g >
+<title>inflate (10,101,010 samples, 0.03%)</title><rect x="351.7" y="741" width="0.4" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="354.66" y="751.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="95.4" y="901" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="98.41" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="116.6" y="517" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="119.55" y="527.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (70,707,070 samples, 0.22%)</title><rect x="1041.9" y="837" width="3.0" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1044.87" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="406.0" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="409.01" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.25%)</title><rect x="95.8" y="885" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="98.85" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (1,131,313,120 samples, 3.50%)</title><rect x="47.1" y="1045" width="48.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="50.10" y="1055.5" >[lib..</text>
+</g>
+<g >
+<title>ext4_file_write_iter (40,404,040 samples, 0.13%)</title><rect x="271.0" y="709" width="1.7" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="273.99" y="719.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (10,101,010 samples, 0.03%)</title><rect x="620.0" y="741" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="622.98" y="751.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.03%)</title><rect x="486.7" y="485" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="489.68" y="495.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="620.0" y="789" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="622.98" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="473.7" y="453" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="476.74" y="463.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="368.9" y="709" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="371.91" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="235.6" y="485" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="238.61" y="495.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="837" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1373.59" y="847.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="725" width="1.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1014.24" y="735.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="243.8" y="645" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="246.81" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_wfree (10,101,010 samples, 0.03%)</title><rect x="1024.6" y="533" width="0.4" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1027.62" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (10,101,010 samples, 0.03%)</title><rect x="503.1" y="549" width="0.4" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="506.07" y="559.5" ></text>
+</g>
+<g >
+<title>__close (70,707,070 samples, 0.22%)</title><rect x="1377.1" y="933" width="3.0" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1380.06" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="467.3" y="613" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="470.27" y="623.5" ></text>
+</g>
+<g >
+<title>security_file_permission (20,202,020 samples, 0.06%)</title><rect x="1375.8" y="757" width="0.8" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" />
+<text x="1378.76" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="478.1" y="517" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="481.05" y="527.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (121,212,120 samples, 0.38%)</title><rect x="31.1" y="517" width="5.2" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="34.14" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.03%)</title><rect x="114.8" y="613" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="117.83" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="281.8" y="661" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="284.77" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="407.7" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="410.74" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="501.3" y="709" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="504.35" y="719.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (20,202,020 samples, 0.06%)</title><rect x="590.2" y="821" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="593.21" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="491.0" y="741" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="493.99" y="751.5" ></text>
+</g>
+<g >
+<title>remove (80,808,080 samples, 0.25%)</title><rect x="122.6" y="757" width="3.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="125.59" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (50,505,050 samples, 0.16%)</title><rect x="530.3" y="709" width="2.1" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="533.25" y="719.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.03%)</title><rect x="364.6" y="613" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="367.60" y="623.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="487.1" y="405" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="490.11" y="415.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.06%)</title><rect x="280.5" y="613" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="283.48" y="623.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="728.7" y="805" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="731.69" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="428.4" y="773" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="431.44" y="783.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="453.0" y="661" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="456.03" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (30,303,030 samples, 0.09%)</title><rect x="180.0" y="645" width="1.3" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="182.97" y="655.5" ></text>
+</g>
+<g >
+<title>__inet_lookup_established (10,101,010 samples, 0.03%)</title><rect x="32.0" y="229" width="0.4" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="35.00" y="239.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.25%)</title><rect x="453.9" y="709" width="3.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="456.89" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.03%)</title><rect x="396.1" y="629" width="0.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="399.09" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.06%)</title><rect x="321.5" y="709" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="324.46" y="719.5" ></text>
+</g>
+<g >
+<title>generic_write_end (20,202,020 samples, 0.06%)</title><rect x="224.8" y="629" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="227.83" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (20,202,020 samples, 0.06%)</title><rect x="139.8" y="645" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="142.85" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="403.4" y="677" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="406.42" y="687.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.03%)</title><rect x="498.3" y="597" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="501.33" y="607.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (20,202,020 samples, 0.06%)</title><rect x="1374.5" y="261" width="0.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1377.47" y="271.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (40,404,040 samples, 0.13%)</title><rect x="1377.9" y="389" width="1.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1380.92" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="550.5" y="613" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="553.53" y="623.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (10,101,010 samples, 0.03%)</title><rect x="427.1" y="581" width="0.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="430.15" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.06%)</title><rect x="623.9" y="693" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="626.86" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.03%)</title><rect x="200.2" y="597" width="0.5" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="203.24" y="607.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="57.5" y="949" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="60.45" y="959.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="53.1" y="757" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="56.14" y="767.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="525.5" y="645" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="528.50" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.22%)</title><rect x="441.8" y="821" width="3.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="444.82" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="245.1" y="709" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="248.10" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="170.0" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="173.04" y="799.5" ></text>
+</g>
+<g >
+<title>rcu_core (20,202,020 samples, 0.06%)</title><rect x="963.4" y="725" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="966.36" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="245.1" y="741" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="248.10" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="230.0" y="629" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="233.01" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.03%)</title><rect x="466.8" y="469" width="0.5" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="469.84" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="334.0" y="565" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="336.97" y="575.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.03%)</title><rect x="360.3" y="549" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="363.28" y="559.5" ></text>
+</g>
+<g >
+<title>ip_rcv (10,101,010 samples, 0.03%)</title><rect x="35.0" y="325" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="38.02" y="335.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (50,505,050 samples, 0.16%)</title><rect x="562.6" y="661" width="2.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="565.60" y="671.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="392.2" y="581" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="395.21" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="595.8" y="773" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="598.82" y="783.5" ></text>
+</g>
+<g >
+<title>fsnotify (10,101,010 samples, 0.03%)</title><rect x="543.6" y="613" width="0.5" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="546.62" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (30,303,030 samples, 0.09%)</title><rect x="525.5" y="709" width="1.3" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="528.50" y="719.5" ></text>
+</g>
+<g >
+<title>access (30,303,030 samples, 0.09%)</title><rect x="588.9" y="821" width="1.3" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="591.92" y="831.5" ></text>
+</g>
+<g >
+<title>readdir64 (10,101,010 samples, 0.03%)</title><rect x="460.4" y="773" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="463.37" y="783.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="309.4" y="661" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="312.38" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_schedule_loss_probe.part.0 (10,101,010 samples, 0.03%)</title><rect x="14.7" y="741" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="17.75" y="751.5" ></text>
+</g>
+<g >
+<title>d_walk (10,101,010 samples, 0.03%)</title><rect x="139.4" y="661" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="142.42" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="218.8" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="221.79" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="395.7" y="677" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="398.66" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (20,202,020 samples, 0.06%)</title><rect x="271.9" y="661" width="0.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="274.85" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="314.1" y="469" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="317.13" y="479.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="1366.7" y="853" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1369.71" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="383.6" y="709" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="386.58" y="719.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.03%)</title><rect x="518.2" y="677" width="0.4" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="521.17" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (60,606,060 samples, 0.19%)</title><rect x="237.3" y="837" width="2.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="240.34" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="482.4" y="501" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="485.37" y="511.5" ></text>
+</g>
+<g >
+<title>security_inode_need_killpriv (10,101,010 samples, 0.03%)</title><rect x="224.0" y="613" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="226.97" y="623.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="283.1" y="693" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="286.07" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (60,606,060 samples, 0.19%)</title><rect x="157.1" y="709" width="2.6" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="160.10" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (20,202,020 samples, 0.06%)</title><rect x="85.9" y="805" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="88.92" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="220.9" y="741" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="223.95" y="751.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="389" width="1.3" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1385.67" y="399.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="610.5" y="709" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="613.49" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (30,303,030 samples, 0.09%)</title><rect x="176.1" y="613" width="1.3" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="179.08" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="394.4" y="629" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="397.36" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (252,525,250 samples, 0.78%)</title><rect x="417.7" y="853" width="10.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="420.66" y="863.5" ></text>
+</g>
+<g >
+<title>fd_install (10,101,010 samples, 0.03%)</title><rect x="558.3" y="677" width="0.4" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="561.29" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.03%)</title><rect x="346.9" y="437" width="0.4" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="349.91" y="447.5" ></text>
+</g>
+<g >
+<title>vma_alloc_folio (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="805" width="0.5" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1047.03" y="815.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (131,313,130 samples, 0.41%)</title><rect x="49.3" y="933" width="5.6" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="52.26" y="943.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.03%)</title><rect x="80.7" y="773" width="0.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="83.75" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="489.7" y="709" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="492.70" y="719.5" ></text>
+</g>
+<g >
+<title>queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="1356.8" y="757" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1359.78" y="767.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.03%)</title><rect x="1316.7" y="709" width="0.4" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1319.66" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (90,909,090 samples, 0.28%)</title><rect x="43.2" y="917" width="3.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="46.22" y="927.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.03%)</title><rect x="132.9" y="597" width="0.5" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="135.94" y="607.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="157.1" y="677" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="160.10" y="687.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="527.2" y="725" width="0.5" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="530.23" y="735.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (50,505,050 samples, 0.16%)</title><rect x="1377.5" y="501" width="2.1" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1380.49" y="511.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="500.9" y="549" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="503.92" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="202.4" y="837" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="205.40" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_chdir (10,101,010 samples, 0.03%)</title><rect x="731.3" y="885" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="734.28" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.06%)</title><rect x="195.1" y="629" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="198.06" y="639.5" ></text>
+</g>
+<g >
+<title>json_tokener_parse_ex (20,202,020 samples, 0.06%)</title><rect x="1371.5" y="853" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1374.45" y="863.5" ></text>
+</g>
+<g >
+<title>libjson_from_string (30,303,030 samples, 0.09%)</title><rect x="1371.0" y="885" width="1.3" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1374.02" y="895.5" ></text>
+</g>
+<g >
+<title>printbuf_free (202,020,200 samples, 0.63%)</title><rect x="732.6" y="917" width="8.6" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="735.57" y="927.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (20,202,020 samples, 0.06%)</title><rect x="1374.5" y="293" width="0.8" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1377.47" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.06%)</title><rect x="79.5" y="821" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="82.45" y="831.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="221.8" y="709" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="224.81" y="719.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.03%)</title><rect x="409.5" y="517" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="412.46" y="527.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="139.0" y="677" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="141.98" y="687.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="122.6" y="645" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="125.59" y="655.5" ></text>
+</g>
+<g >
+<title>inet_sendmsg (60,606,060 samples, 0.19%)</title><rect x="1373.2" y="805" width="2.6" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1376.18" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.03%)</title><rect x="412.1" y="629" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="415.05" y="639.5" ></text>
+</g>
+<g >
+<title>inet_stream_connect (181,818,180 samples, 0.56%)</title><rect x="1028.1" y="853" width="7.7" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1031.07" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (40,404,040 samples, 0.13%)</title><rect x="554.0" y="597" width="1.7" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="556.98" y="607.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="441.8" y="581" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="444.82" y="591.5" ></text>
+</g>
+<g >
+<title>unlink_cb (161,616,160 samples, 0.50%)</title><rect x="161.8" y="805" width="6.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="164.85" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="309" width="0.4" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1027.19" y="319.5" ></text>
+</g>
+<g >
+<title>__block_commit_write.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="335.3" y="549" width="0.4" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="338.26" y="559.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="569.1" y="741" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="572.07" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="227.0" y="773" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="229.99" y="783.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.03%)</title><rect x="554.0" y="565" width="0.4" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="556.98" y="575.5" ></text>
+</g>
+<g >
+<title>atime_needs_update (10,101,010 samples, 0.03%)</title><rect x="137.7" y="677" width="0.4" height="15.0" fill="rgb(0,202,51)" rx="2" ry="2" />
+<text x="140.69" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.03%)</title><rect x="358.6" y="501" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="361.56" y="511.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="274.0" y="789" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="277.01" y="799.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (10,101,010 samples, 0.03%)</title><rect x="433.2" y="517" width="0.4" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="436.19" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="605.3" y="757" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="608.31" y="767.5" ></text>
+</g>
+<g >
+<title>__libc_fork (777,777,770 samples, 2.41%)</title><rect x="632.9" y="901" width="33.2" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="635.92" y="911.5" >__..</text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="487.1" y="501" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="490.11" y="511.5" ></text>
+</g>
+<g >
+<title>scsi_dma_map (10,101,010 samples, 0.03%)</title><rect x="344.3" y="325" width="0.5" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="347.32" y="335.5" ></text>
+</g>
+<g >
+<title>try_charge_memcg (10,101,010 samples, 0.03%)</title><rect x="1043.2" y="773" width="0.4" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1046.17" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="265.4" y="789" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="268.38" y="799.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="538.9" y="661" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="541.88" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="300.8" y="453" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="303.75" y="463.5" ></text>
+</g>
+<g >
+<title>____fput (151,515,150 samples, 0.47%)</title><rect x="30.3" y="773" width="6.4" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="33.28" y="783.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.03%)</title><rect x="518.6" y="677" width="0.4" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="521.60" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (30,303,030 samples, 0.09%)</title><rect x="334.4" y="693" width="1.3" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="337.40" y="703.5" ></text>
+</g>
+<g >
+<title>anon_vma_interval_tree_insert (20,202,020 samples, 0.06%)</title><rect x="636.8" y="709" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="639.80" y="719.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.03%)</title><rect x="507.4" y="613" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="510.39" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="522.5" y="597" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="525.49" y="607.5" ></text>
+</g>
+<g >
+<title>my_chdir (20,202,020 samples, 0.06%)</title><rect x="731.3" y="949" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="734.28" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (10,101,010 samples, 0.03%)</title><rect x="564.3" y="549" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="567.33" y="559.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (70,707,070 samples, 0.22%)</title><rect x="11.3" y="485" width="3.0" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="14.29" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (30,303,030 samples, 0.09%)</title><rect x="402.1" y="533" width="1.3" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="405.13" y="543.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="757" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1373.59" y="767.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="605.7" y="661" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="608.74" y="671.5" ></text>
+</g>
+<g >
+<title>dput (111,111,110 samples, 0.34%)</title><rect x="543.6" y="677" width="4.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="546.62" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (20,202,020 samples, 0.06%)</title><rect x="584.2" y="613" width="0.8" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="587.17" y="623.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (10,101,010 samples, 0.03%)</title><rect x="214.0" y="901" width="0.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="217.05" y="911.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="594.1" y="821" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="597.10" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="287.8" y="629" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="290.81" y="639.5" ></text>
+</g>
+<g >
+<title>generic_write_end (10,101,010 samples, 0.03%)</title><rect x="484.1" y="549" width="0.4" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="487.09" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="352.1" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="355.09" y="687.5" ></text>
+</g>
+<g >
+<title>getdents64 (40,404,040 samples, 0.13%)</title><rect x="207.1" y="869" width="1.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="210.14" y="879.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="1371.9" y="805" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1374.88" y="815.5" ></text>
+</g>
+<g >
+<title>fprintf (20,202,020 samples, 0.06%)</title><rect x="625.6" y="869" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="628.59" y="879.5" ></text>
+</g>
+<g >
+<title>filp_close (10,101,010 samples, 0.03%)</title><rect x="168.7" y="741" width="0.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="171.75" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="482.8" y="501" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="485.80" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="48.8" y="965" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="51.82" y="975.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="461.2" y="805" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="464.23" y="815.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="506.5" y="693" width="0.5" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="509.52" y="703.5" ></text>
+</g>
+<g >
+<title>do_writepages (30,303,030 samples, 0.09%)</title><rect x="402.1" y="565" width="1.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="405.13" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.03%)</title><rect x="628.6" y="757" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="631.61" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="334.4" y="709" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="337.40" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (171,717,170 samples, 0.53%)</title><rect x="10.0" y="1045" width="7.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="13.00" y="1055.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="357" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1031.50" y="367.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (80,808,080 samples, 0.25%)</title><rect x="1006.5" y="517" width="3.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1009.50" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (60,606,060 samples, 0.19%)</title><rect x="123.0" y="629" width="2.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="126.02" y="639.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.06%)</title><rect x="494.9" y="773" width="0.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="497.88" y="783.5" ></text>
+</g>
+<g >
+<title>file_modified_flags (10,101,010 samples, 0.03%)</title><rect x="222.2" y="629" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="225.24" y="639.5" ></text>
+</g>
+<g >
+<title>mas_wr_walk (10,101,010 samples, 0.03%)</title><rect x="655.8" y="709" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="658.78" y="719.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="422.4" y="677" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="425.40" y="687.5" ></text>
+</g>
+<g >
+<title>__file_remove_privs (10,101,010 samples, 0.03%)</title><rect x="224.0" y="629" width="0.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="226.97" y="639.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="188.6" y="725" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="191.59" y="735.5" ></text>
+</g>
+<g >
+<title>realloc (20,202,020 samples, 0.06%)</title><rect x="384.4" y="629" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="387.44" y="639.5" ></text>
+</g>
+<g >
+<title>kprobe_perf_func (80,808,080 samples, 0.25%)</title><rect x="1029.4" y="757" width="3.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1032.36" y="767.5" ></text>
+</g>
+<g >
+<title>folio_add_lru_vma (40,404,040 samples, 0.13%)</title><rect x="1354.2" y="757" width="1.7" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1357.20" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="221.8" y="741" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="224.81" y="751.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (20,202,020 samples, 0.06%)</title><rect x="1007.8" y="213" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1010.79" y="223.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="281.3" y="565" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="284.34" y="575.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.03%)</title><rect x="10.9" y="677" width="0.4" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="13.86" y="687.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="383.6" y="693" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="386.58" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_invalidate_folio (10,101,010 samples, 0.03%)</title><rect x="343.5" y="533" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="346.46" y="543.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="547.9" y="245" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="550.94" y="255.5" ></text>
+</g>
+<g >
+<title>base64_encode (6,808,080,740 samples, 21.07%)</title><rect x="1037.6" y="949" width="290.7" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1040.56" y="959.5" >base64_encode</text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="172.2" y="645" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="175.20" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="550.1" y="437" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="553.09" y="447.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (60,606,060 samples, 0.19%)</title><rect x="1020.7" y="565" width="2.6" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1023.73" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.09%)</title><rect x="285.7" y="693" width="1.2" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="288.65" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (141,414,140 samples, 0.44%)</title><rect x="372.4" y="773" width="6.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="375.36" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (50,505,050 samples, 0.16%)</title><rect x="356.8" y="677" width="2.2" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="359.83" y="687.5" ></text>
+</g>
+<g >
+<title>mkdir (90,909,090 samples, 0.28%)</title><rect x="513.4" y="821" width="3.9" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="516.43" y="831.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="242.5" y="661" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="245.52" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="234.8" y="789" width="1.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="237.75" y="799.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (20,202,020 samples, 0.06%)</title><rect x="963.4" y="773" width="0.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="966.36" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (20,202,020 samples, 0.06%)</title><rect x="525.9" y="693" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="528.94" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="144.2" y="549" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="147.16" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.28%)</title><rect x="259.8" y="789" width="3.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="262.77" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,020,202,000 samples, 6.25%)</title><rect x="101.9" y="837" width="86.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="104.88" y="847.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="441.8" y="597" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="444.82" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_getattr (10,101,010 samples, 0.03%)</title><rect x="170.5" y="677" width="0.4" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="173.48" y="687.5" ></text>
+</g>
+<g >
+<title>symlink (50,505,050 samples, 0.16%)</title><rect x="524.6" y="821" width="2.2" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="527.64" y="831.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="416.8" y="773" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="419.80" y="783.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="398.7" y="597" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="401.68" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_da_reserve_space (10,101,010 samples, 0.03%)</title><rect x="486.7" y="517" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="489.68" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (101,010,100 samples, 0.31%)</title><rect x="130.4" y="693" width="4.3" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="133.36" y="703.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="88.9" y="949" width="0.5" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="91.94" y="959.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (10,101,010 samples, 0.03%)</title><rect x="529.0" y="405" width="0.4" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="531.96" y="415.5" ></text>
+</g>
+<g >
+<title>dput (20,202,020 samples, 0.06%)</title><rect x="157.5" y="677" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="160.53" y="687.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="71.7" y="789" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="74.69" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="444.8" y="789" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="447.84" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="1376.6" y="789" width="0.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1379.63" y="799.5" ></text>
+</g>
+<g >
+<title>bio_to_wbt_flags (10,101,010 samples, 0.03%)</title><rect x="231.3" y="469" width="0.4" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="234.30" y="479.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="532.0" y="645" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="534.98" y="655.5" ></text>
+</g>
+<g >
+<title>dup_fd (10,101,010 samples, 0.03%)</title><rect x="633.8" y="773" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="636.78" y="783.5" ></text>
+</g>
+<g >
+<title>dentry_kill (20,202,020 samples, 0.06%)</title><rect x="230.0" y="725" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="233.01" y="735.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="214.5" y="805" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="217.48" y="815.5" ></text>
+</g>
+<g >
+<title>git_reference_iterator_new (131,313,130 samples, 0.41%)</title><rect x="609.6" y="853" width="5.6" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="612.62" y="863.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (50,505,050 samples, 0.16%)</title><rect x="1324.4" y="757" width="2.2" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1327.43" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="461.2" y="709" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="464.23" y="719.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (80,808,080 samples, 0.25%)</title><rect x="1041.4" y="869" width="3.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1044.44" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="389.6" y="629" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="392.62" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="730.0" y="885" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="732.98" y="895.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="443.5" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="446.54" y="639.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="71.7" y="757" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="74.69" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="151.9" y="453" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="154.93" y="463.5" ></text>
+</g>
+<g >
+<title>free_unref_page (10,101,010 samples, 0.03%)</title><rect x="676.1" y="741" width="0.4" height="15.0" fill="rgb(0,238,205)" rx="2" ry="2" />
+<text x="679.06" y="751.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="369.3" y="629" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="372.34" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="391.8" y="693" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="394.78" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="602.7" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="605.72" y="719.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (60,606,060 samples, 0.19%)</title><rect x="253.3" y="709" width="2.6" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="256.30" y="719.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="132.9" y="437" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="135.94" y="447.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.09%)</title><rect x="160.6" y="725" width="1.2" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="163.55" y="735.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="999.6" y="517" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1002.60" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="494.4" y="789" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="497.45" y="799.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="613" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1031.50" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="497.9" y="581" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="500.90" y="591.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="542.3" y="709" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="545.33" y="719.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="465.5" y="661" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="468.54" y="671.5" ></text>
+</g>
+<g >
+<title>security_inode_create (10,101,010 samples, 0.03%)</title><rect x="524.2" y="677" width="0.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="527.21" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (90,909,090 samples, 0.28%)</title><rect x="202.8" y="789" width="3.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="205.83" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="265.4" y="741" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="268.38" y="751.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="122.6" y="661" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="125.59" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="158.4" y="533" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="161.40" y="543.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (80,808,080 samples, 0.25%)</title><rect x="1006.5" y="549" width="3.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1009.50" y="559.5" ></text>
+</g>
+<g >
+<title>folio_add_lru_vma (30,303,030 samples, 0.09%)</title><rect x="1321.8" y="805" width="1.3" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1324.84" y="815.5" ></text>
+</g>
+<g >
+<title>ksys_write (40,404,040 samples, 0.13%)</title><rect x="504.8" y="661" width="1.7" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="507.80" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="1376.6" y="837" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1379.63" y="847.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (10,101,010 samples, 0.03%)</title><rect x="466.0" y="501" width="0.4" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="468.97" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (40,404,040 samples, 0.13%)</title><rect x="92.4" y="853" width="1.7" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="95.39" y="863.5" ></text>
+</g>
+<g >
+<title>__wake_up (10,101,010 samples, 0.03%)</title><rect x="208.0" y="709" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="211.01" y="719.5" ></text>
+</g>
+<g >
+<title>mpage_submit_folio (20,202,020 samples, 0.06%)</title><rect x="434.5" y="517" width="0.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="437.48" y="527.5" ></text>
+</g>
+<g >
+<title>client_create_thread (30,303,030 samples, 0.09%)</title><rect x="37.2" y="901" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="40.18" y="911.5" ></text>
+</g>
+<g >
+<title>libjson_send (60,606,060 samples, 0.19%)</title><rect x="1373.2" y="949" width="2.6" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1376.18" y="959.5" ></text>
+</g>
+<g >
+<title>d_lru_del (10,101,010 samples, 0.03%)</title><rect x="186.9" y="645" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="189.87" y="655.5" ></text>
+</g>
+<g >
+<title>__tcp_close (70,707,070 samples, 0.22%)</title><rect x="1377.1" y="725" width="3.0" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1380.06" y="735.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="1363.3" y="725" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1366.25" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (20,202,020 samples, 0.06%)</title><rect x="227.0" y="629" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="229.99" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.03%)</title><rect x="171.8" y="693" width="0.4" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="174.77" y="703.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="332.2" y="613" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="335.24" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (303,030,300 samples, 0.94%)</title><rect x="392.6" y="805" width="13.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="395.64" y="815.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.03%)</title><rect x="1386.1" y="789" width="0.4" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1389.12" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="617.0" y="805" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="619.96" y="815.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (20,202,020 samples, 0.06%)</title><rect x="730.4" y="757" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="733.41" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="237.8" y="725" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="240.77" y="735.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.03%)</title><rect x="226.1" y="661" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="229.12" y="671.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="382.7" y="597" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="385.72" y="607.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (80,808,080 samples, 0.25%)</title><rect x="11.3" y="597" width="3.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="14.29" y="607.5" ></text>
+</g>
+<g >
+<title>dup_userfaultfd (10,101,010 samples, 0.03%)</title><rect x="650.6" y="741" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="653.61" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="621.7" y="629" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="624.70" y="639.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (40,404,040 samples, 0.13%)</title><rect x="1387.0" y="789" width="1.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1389.98" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.03%)</title><rect x="531.5" y="645" width="0.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="534.54" y="655.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="224.8" y="405" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="227.83" y="415.5" ></text>
+</g>
+<g >
+<title>do_filp_open (30,303,030 samples, 0.09%)</title><rect x="120.0" y="709" width="1.3" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="123.00" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (60,606,060 samples, 0.19%)</title><rect x="123.0" y="661" width="2.6" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="126.02" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="328.4" y="773" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="331.36" y="783.5" ></text>
+</g>
+<g >
+<title>git_repository_free (10,101,010 samples, 0.03%)</title><rect x="459.1" y="837" width="0.4" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="462.07" y="847.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_create_internal (10,101,010 samples, 0.03%)</title><rect x="1328.3" y="933" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1331.31" y="943.5" ></text>
+</g>
+<g >
+<title>set_cpus_allowed_ptr (10,101,010 samples, 0.03%)</title><rect x="20.4" y="917" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="23.35" y="927.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="259.3" y="741" width="0.5" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="262.34" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (131,313,130 samples, 0.41%)</title><rect x="533.7" y="805" width="5.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="536.70" y="815.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (40,404,040 samples, 0.13%)</title><rect x="302.9" y="677" width="1.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="305.91" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.38%)</title><rect x="259.8" y="805" width="5.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="262.77" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_setent (10,101,010 samples, 0.03%)</title><rect x="233.9" y="693" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="236.89" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.03%)</title><rect x="632.1" y="661" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="635.06" y="671.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="466.8" y="437" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="469.84" y="447.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.03%)</title><rect x="123.0" y="549" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="126.02" y="559.5" ></text>
+</g>
+<g >
+<title>net_close (20,202,020 samples, 0.06%)</title><rect x="1026.8" y="965" width="0.8" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1029.77" y="975.5" ></text>
+</g>
+<g >
+<title>tlb_finish_mmu (121,212,120 samples, 0.38%)</title><rect x="733.4" y="709" width="5.2" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="736.43" y="719.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (20,202,020 samples, 0.06%)</title><rect x="1327.4" y="917" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1330.45" y="927.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.09%)</title><rect x="225.7" y="725" width="1.3" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="228.69" y="735.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.03%)</title><rect x="392.2" y="629" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="395.21" y="639.5" ></text>
+</g>
+<g >
+<title>free_pages (10,101,010 samples, 0.03%)</title><rect x="603.6" y="469" width="0.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="606.59" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.09%)</title><rect x="573.0" y="709" width="1.3" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="575.96" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (383,838,380 samples, 1.19%)</title><rect x="441.8" y="853" width="16.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="444.82" y="863.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.03%)</title><rect x="244.7" y="629" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="247.67" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.25%)</title><rect x="388.3" y="709" width="3.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="391.32" y="719.5" ></text>
+</g>
+<g >
+<title>rw_verify_area (20,202,020 samples, 0.06%)</title><rect x="1375.8" y="773" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1378.76" y="783.5" ></text>
+</g>
+<g >
+<title>__socket (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="949" width="0.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1030.64" y="959.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.06%)</title><rect x="103.6" y="581" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="106.61" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="388.3" y="661" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="391.32" y="671.5" ></text>
+</g>
+<g >
+<title>path_openat (707,070,700 samples, 2.19%)</title><rect x="58.3" y="917" width="30.2" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="61.32" y="927.5" >pa..</text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.03%)</title><rect x="477.2" y="581" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="480.19" y="591.5" ></text>
+</g>
+<g >
+<title>_dl_allocate_tls_init (10,101,010 samples, 0.03%)</title><rect x="37.6" y="869" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="40.61" y="879.5" ></text>
+</g>
+<g >
+<title>destroy_inode (10,101,010 samples, 0.03%)</title><rect x="145.5" y="629" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="148.45" y="639.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (111,111,110 samples, 0.34%)</title><rect x="343.9" y="597" width="4.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="346.89" y="607.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (20,202,020 samples, 0.06%)</title><rect x="271.0" y="645" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="273.99" y="655.5" ></text>
+</g>
+<g >
+<title>__d_alloc (30,303,030 samples, 0.09%)</title><rect x="535.4" y="629" width="1.3" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="538.43" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="457.3" y="677" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="460.35" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="455.6" y="661" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="458.62" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="281.3" y="549" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="284.34" y="559.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.03%)</title><rect x="433.2" y="501" width="0.4" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="436.19" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (20,202,020 samples, 0.06%)</title><rect x="139.8" y="629" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="142.85" y="639.5" ></text>
+</g>
+<g >
+<title>connect (181,818,180 samples, 0.56%)</title><rect x="1028.1" y="949" width="7.7" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1031.07" y="959.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="337.4" y="677" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="340.42" y="687.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (70,707,070 samples, 0.22%)</title><rect x="11.3" y="581" width="3.0" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="14.29" y="591.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (20,202,020 samples, 0.06%)</title><rect x="1024.2" y="613" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1027.19" y="623.5" ></text>
+</g>
+<g >
+<title>ip_route_output_key_hash (10,101,010 samples, 0.03%)</title><rect x="1386.5" y="805" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1389.55" y="815.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.06%)</title><rect x="218.8" y="821" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="221.79" y="831.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.03%)</title><rect x="641.5" y="629" width="0.5" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="644.55" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="70.8" y="773" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="73.83" y="783.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="614.8" y="645" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="617.80" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="247.3" y="773" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="250.26" y="783.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="316.3" y="725" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="319.28" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.03%)</title><rect x="376.7" y="629" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="379.68" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.09%)</title><rect x="577.3" y="693" width="1.3" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="580.27" y="703.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="507.4" y="597" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="510.39" y="607.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="992.7" y="629" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="995.69" y="639.5" ></text>
+</g>
+<g >
+<title>__mod_node_page_state (10,101,010 samples, 0.03%)</title><rect x="995.3" y="645" width="0.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="998.28" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="223.5" y="645" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="226.54" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (30,303,030 samples, 0.09%)</title><rect x="546.2" y="517" width="1.3" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="549.21" y="527.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (131,313,130 samples, 0.41%)</title><rect x="1039.3" y="885" width="5.6" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1042.28" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.06%)</title><rect x="515.6" y="629" width="0.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="518.58" y="639.5" ></text>
+</g>
+<g >
+<title>__init_rwsem (10,101,010 samples, 0.03%)</title><rect x="635.1" y="741" width="0.4" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="638.08" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (40,404,040 samples, 0.13%)</title><rect x="583.3" y="661" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="586.31" y="671.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="277" width="0.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1027.19" y="287.5" ></text>
+</g>
+<g >
+<title>ip_send_unicast_reply (10,101,010 samples, 0.03%)</title><rect x="34.2" y="213" width="0.4" height="15.0" fill="rgb(0,209,79)" rx="2" ry="2" />
+<text x="37.16" y="223.5" ></text>
+</g>
+<g >
+<title>tcp_connect (50,505,050 samples, 0.16%)</title><rect x="1033.7" y="805" width="2.1" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1036.68" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.38%)</title><rect x="609.6" y="773" width="5.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="612.62" y="783.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.03%)</title><rect x="1037.1" y="885" width="0.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1040.13" y="895.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="620.8" y="709" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="623.84" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="311.5" y="629" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="314.54" y="639.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="120.4" y="661" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="123.43" y="671.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (60,606,060 samples, 0.19%)</title><rect x="491.4" y="757" width="2.6" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="494.43" y="767.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="316.3" y="661" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="319.28" y="671.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="127.8" y="709" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="130.77" y="719.5" ></text>
+</g>
+<g >
+<title>task_work_run (20,202,020 samples, 0.06%)</title><rect x="1026.8" y="837" width="0.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1029.77" y="847.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="457.8" y="613" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="460.78" y="623.5" ></text>
+</g>
+<g >
+<title>[[vdso]] (10,101,010 samples, 0.03%)</title><rect x="497.0" y="773" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="500.03" y="783.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="622.1" y="645" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="625.14" y="655.5" ></text>
+</g>
+<g >
+<title>sock_read_iter (10,101,010 samples, 0.03%)</title><rect x="1372.3" y="757" width="0.4" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1375.31" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="531.5" y="629" width="0.5" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="534.54" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="271.0" y="821" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="273.99" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (151,515,150 samples, 0.47%)</title><rect x="475.5" y="629" width="6.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="478.46" y="639.5" ></text>
+</g>
+<g >
+<title>folio_memcg_lock (10,101,010 samples, 0.03%)</title><rect x="300.8" y="309" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="303.75" y="319.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (141,414,140 samples, 0.44%)</title><rect x="294.3" y="597" width="6.0" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="297.28" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="189.5" y="677" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="192.46" y="687.5" ></text>
+</g>
+<g >
+<title>d_walk (10,101,010 samples, 0.03%)</title><rect x="155.8" y="645" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="158.81" y="655.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="547.9" y="293" width="0.5" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="550.94" y="303.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (20,202,020 samples, 0.06%)</title><rect x="637.7" y="709" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="640.66" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="568.2" y="613" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="571.21" y="623.5" ></text>
+</g>
+<g >
+<title>[libz.so.1.2.11] (10,101,010 samples, 0.03%)</title><rect x="234.8" y="741" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="237.75" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="316.3" y="709" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="319.28" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_clone (747,474,740 samples, 2.31%)</title><rect x="632.9" y="821" width="31.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="635.92" y="831.5" >__..</text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (20,202,020 samples, 0.06%)</title><rect x="70.0" y="789" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="72.96" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.03%)</title><rect x="727.8" y="741" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="730.82" y="751.5" ></text>
+</g>
+<g >
+<title>unlink_cb (101,010,100 samples, 0.31%)</title><rect x="106.6" y="741" width="4.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="109.63" y="751.5" ></text>
+</g>
+<g >
+<title>do_anonymous_page (50,505,050 samples, 0.16%)</title><rect x="1042.3" y="821" width="2.2" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1045.30" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.03%)</title><rect x="515.2" y="709" width="0.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="518.15" y="719.5" ></text>
+</g>
+<g >
+<title>do_writepages (111,111,110 samples, 0.34%)</title><rect x="343.9" y="581" width="4.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="346.89" y="591.5" ></text>
+</g>
+<g >
+<title>sock_alloc_file (20,202,020 samples, 0.06%)</title><rect x="1381.4" y="869" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1384.37" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="281.3" y="853" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="284.34" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_append (171,717,170 samples, 0.53%)</title><rect x="293.9" y="645" width="7.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="296.85" y="655.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="365.0" y="565" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="368.03" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="238.6" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="241.63" y="703.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="385.7" y="533" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="388.74" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="144.2" y="565" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="147.16" y="575.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="378.0" y="645" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="380.97" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.31%)</title><rect x="453.9" y="741" width="4.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="456.89" y="751.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.03%)</title><rect x="259.3" y="725" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="262.34" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="277.5" y="837" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="280.46" y="847.5" ></text>
+</g>
+<g >
+<title>server_wait (10,101,010 samples, 0.03%)</title><rect x="16.9" y="997" width="0.4" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="19.90" y="1007.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="352.1" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="355.09" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="596.7" y="693" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="599.68" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="560.4" y="757" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="563.45" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="603.6" y="661" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="606.59" y="671.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="48.8" y="837" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="51.82" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="175.2" y="629" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="178.22" y="639.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.03%)</title><rect x="357.7" y="501" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="360.70" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="227.0" y="789" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="229.99" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="172.6" y="645" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="175.63" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.03%)</title><rect x="300.8" y="357" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="303.75" y="367.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.03%)</title><rect x="482.8" y="517" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="485.80" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="241.7" y="757" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="244.65" y="767.5" ></text>
+</g>
+<g >
+<title>filldir64 (10,101,010 samples, 0.03%)</title><rect x="197.2" y="709" width="0.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="200.22" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.06%)</title><rect x="378.8" y="581" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="381.83" y="591.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (20,202,020 samples, 0.06%)</title><rect x="1316.2" y="741" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1319.23" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="414.6" y="773" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="417.64" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.03%)</title><rect x="154.1" y="485" width="0.4" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="157.08" y="495.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (141,414,140 samples, 0.44%)</title><rect x="518.6" y="709" width="6.0" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="521.60" y="719.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.03%)</title><rect x="353.4" y="709" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="356.38" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (262,626,260 samples, 0.81%)</title><rect x="338.3" y="741" width="11.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="341.28" y="751.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (60,606,060 samples, 0.19%)</title><rect x="689.0" y="645" width="2.6" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="692.00" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="352.1" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="355.09" y="735.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (10,101,010 samples, 0.03%)</title><rect x="1379.6" y="501" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1382.65" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (20,202,020 samples, 0.06%)</title><rect x="585.9" y="709" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="588.90" y="719.5" ></text>
+</g>
+<g >
+<title>__dquot_alloc_space (10,101,010 samples, 0.03%)</title><rect x="630.3" y="677" width="0.5" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="633.33" y="687.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="625.2" y="741" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="628.15" y="751.5" ></text>
+</g>
+<g >
+<title>git_remote_fetch (1,262,626,250 samples, 3.91%)</title><rect x="441.8" y="885" width="53.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="444.82" y="895.5" >git_r..</text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="581.2" y="613" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="584.15" y="623.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="242.1" y="597" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="245.09" y="607.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="220.5" y="613" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="223.52" y="623.5" ></text>
+</g>
+<g >
+<title>folio_alloc (20,202,020 samples, 0.06%)</title><rect x="271.0" y="613" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="273.99" y="623.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="612.6" y="693" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="615.64" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (141,414,140 samples, 0.44%)</title><rect x="321.5" y="773" width="6.0" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="324.46" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (40,404,040 samples, 0.13%)</title><rect x="274.4" y="789" width="1.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="277.44" y="799.5" ></text>
+</g>
+<g >
+<title>__remove_inode_hash (10,101,010 samples, 0.03%)</title><rect x="145.0" y="629" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="148.02" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="591.1" y="837" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="594.08" y="847.5" ></text>
+</g>
+<g >
+<title>remove (494,949,490 samples, 1.53%)</title><rect x="138.6" y="773" width="21.1" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="141.55" y="783.5" ></text>
+</g>
+<g >
+<title>dput (20,202,020 samples, 0.06%)</title><rect x="432.3" y="709" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="435.33" y="719.5" ></text>
+</g>
+<g >
+<title>__schedule (20,202,020 samples, 0.06%)</title><rect x="730.4" y="725" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="733.41" y="735.5" ></text>
+</g>
+<g >
+<title>unlink_cb (191,919,190 samples, 0.59%)</title><rect x="188.6" y="837" width="8.2" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="191.59" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.03%)</title><rect x="547.1" y="453" width="0.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="550.07" y="463.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="173.9" y="661" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="176.93" y="671.5" ></text>
+</g>
+<g >
+<title>ip_local_out (10,101,010 samples, 0.03%)</title><rect x="1008.2" y="165" width="0.5" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1011.22" y="175.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="327.9" y="789" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="330.93" y="799.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="98.9" y="789" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="101.87" y="799.5" ></text>
+</g>
+<g >
+<title>task_work_run (70,707,070 samples, 0.22%)</title><rect x="1377.1" y="837" width="3.0" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1380.06" y="847.5" ></text>
+</g>
+<g >
+<title>__dd_dispatch_request (10,101,010 samples, 0.03%)</title><rect x="402.6" y="357" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="405.56" y="367.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="227.0" y="709" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="229.99" y="719.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (20,202,020 samples, 0.06%)</title><rect x="30.3" y="709" width="0.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="33.28" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="591.5" y="693" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="594.51" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (10,101,010 samples, 0.03%)</title><rect x="432.8" y="597" width="0.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="435.76" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="397.8" y="581" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="400.81" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_read_inode_bitmap (10,101,010 samples, 0.03%)</title><rect x="254.2" y="661" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="257.16" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="362.0" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="365.01" y="735.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="233.0" y="597" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="236.03" y="607.5" ></text>
+</g>
+<g >
+<title>link (111,111,110 samples, 0.34%)</title><rect x="308.1" y="789" width="4.7" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="311.09" y="799.5" ></text>
+</g>
+<g >
+<title>remove (101,010,100 samples, 0.31%)</title><rect x="208.9" y="869" width="4.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="211.87" y="879.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (20,202,020 samples, 0.06%)</title><rect x="481.9" y="549" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="484.93" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_write (40,404,040 samples, 0.13%)</title><rect x="360.3" y="661" width="1.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="363.28" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_rename (40,404,040 samples, 0.13%)</title><rect x="401.7" y="677" width="1.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="404.70" y="687.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="166.6" y="581" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="169.59" y="591.5" ></text>
+</g>
+<g >
+<title>dd_has_work (10,101,010 samples, 0.03%)</title><rect x="549.2" y="373" width="0.5" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="552.23" y="383.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="28.5" y="741" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="31.55" y="751.5" ></text>
+</g>
+<g >
+<title>__strftime_l (10,101,010 samples, 0.03%)</title><rect x="282.6" y="885" width="0.5" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="285.64" y="895.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (40,404,040 samples, 0.13%)</title><rect x="215.3" y="869" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="218.34" y="879.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="518.2" y="693" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="521.17" y="703.5" ></text>
+</g>
+<g >
+<title>realpath (30,303,030 samples, 0.09%)</title><rect x="449.6" y="789" width="1.3" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="452.58" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="279.2" y="853" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="282.18" y="863.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (30,303,030 samples, 0.09%)</title><rect x="344.3" y="517" width="1.3" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="347.32" y="527.5" ></text>
+</g>
+<g >
+<title>unlink (60,606,060 samples, 0.19%)</title><rect x="157.1" y="757" width="2.6" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="160.10" y="767.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="527.7" y="597" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="530.66" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="359.9" y="693" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="362.85" y="703.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="729.1" y="805" width="0.4" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="732.12" y="815.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="578.1" y="613" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="581.13" y="623.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.03%)</title><rect x="312.8" y="789" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="315.83" y="799.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (40,404,040 samples, 0.13%)</title><rect x="535.4" y="661" width="1.8" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="538.43" y="671.5" ></text>
+</g>
+<g >
+<title>queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="1000.9" y="709" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1003.89" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="487.1" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="490.11" y="735.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.03%)</title><rect x="611.8" y="597" width="0.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="614.78" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="419.8" y="677" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="422.82" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="601.0" y="725" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="604.00" y="735.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (30,303,030 samples, 0.09%)</title><rect x="408.6" y="597" width="1.3" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="411.60" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="95.4" y="885" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="98.41" y="895.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="467.7" y="725" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="470.70" y="735.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.03%)</title><rect x="601.4" y="693" width="0.5" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="604.43" y="703.5" ></text>
+</g>
+<g >
+<title>git_reference_create (484,848,480 samples, 1.50%)</title><rect x="219.7" y="901" width="20.7" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="222.65" y="911.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (10,101,010 samples, 0.03%)</title><rect x="1009.1" y="229" width="0.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1012.09" y="239.5" ></text>
+</g>
+<g >
+<title>io_schedule (10,101,010 samples, 0.03%)</title><rect x="547.5" y="469" width="0.4" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="550.51" y="479.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="224.8" y="613" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="227.83" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="348.6" y="693" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="351.64" y="703.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (70,707,070 samples, 0.22%)</title><rect x="1041.9" y="853" width="3.0" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1044.87" y="863.5" ></text>
+</g>
+<g >
+<title>__fget_light (10,101,010 samples, 0.03%)</title><rect x="16.0" y="805" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="19.04" y="815.5" ></text>
+</g>
+<g >
+<title>folio_create_empty_buffers (10,101,010 samples, 0.03%)</title><rect x="486.2" y="533" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="489.25" y="543.5" ></text>
+</g>
+<g >
+<title>__sk_flush_backlog (121,212,120 samples, 0.38%)</title><rect x="1006.1" y="757" width="5.1" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1009.07" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_es_free_extent (10,101,010 samples, 0.03%)</title><rect x="117.0" y="517" width="0.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="119.98" y="527.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="589.3" y="693" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="592.35" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="105.3" y="661" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="108.34" y="671.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="104.5" y="629" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="107.47" y="639.5" ></text>
+</g>
+<g >
+<title>ip_rcv (60,606,060 samples, 0.19%)</title><rect x="1007.4" y="373" width="2.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1010.36" y="383.5" ></text>
+</g>
+<g >
+<title>vfs_symlink (50,505,050 samples, 0.16%)</title><rect x="524.6" y="741" width="2.2" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="527.64" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.06%)</title><rect x="533.7" y="725" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="536.70" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.06%)</title><rect x="115.3" y="533" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="118.26" y="543.5" ></text>
+</g>
+<g >
+<title>net_rx_action (30,303,030 samples, 0.09%)</title><rect x="1034.5" y="581" width="1.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1037.54" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (10,101,010 samples, 0.03%)</title><rect x="525.1" y="661" width="0.4" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="528.07" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="313.7" y="789" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="316.69" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (161,616,160 samples, 0.50%)</title><rect x="406.0" y="805" width="6.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="409.01" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (10,101,010 samples, 0.03%)</title><rect x="104.0" y="565" width="0.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="107.04" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="486.7" y="533" width="0.4" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="489.68" y="543.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="238.6" y="597" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="241.63" y="607.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.03%)</title><rect x="499.6" y="661" width="0.5" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="502.62" y="671.5" ></text>
+</g>
+<g >
+<title>inet_create (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="853" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1030.64" y="863.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="26.8" y="917" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="29.82" y="927.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (20,202,020 samples, 0.06%)</title><rect x="1387.4" y="485" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1390.41" y="495.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="390.9" y="629" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="393.91" y="639.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="565" width="1.3" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1385.67" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="302.5" y="757" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="305.48" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_bread (60,606,060 samples, 0.19%)</title><rect x="478.1" y="565" width="2.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="481.05" y="575.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (80,808,080 samples, 0.25%)</title><rect x="32.0" y="341" width="3.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="35.00" y="351.5" ></text>
+</g>
+<g >
+<title>access (30,303,030 samples, 0.09%)</title><rect x="236.0" y="789" width="1.3" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="239.05" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.06%)</title><rect x="231.7" y="549" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="234.73" y="559.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="132.9" y="485" width="0.5" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="135.94" y="495.5" ></text>
+</g>
+<g >
+<title>security_inode_init_security (10,101,010 samples, 0.03%)</title><rect x="477.6" y="565" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="480.62" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (30,303,030 samples, 0.09%)</title><rect x="105.3" y="613" width="1.3" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="108.34" y="623.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.03%)</title><rect x="661.4" y="693" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="664.39" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="68.7" y="805" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="71.67" y="815.5" ></text>
+</g>
+<g >
+<title>readdir64 (10,101,010 samples, 0.03%)</title><rect x="611.8" y="741" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="614.78" y="751.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.03%)</title><rect x="431.0" y="789" width="0.5" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="434.03" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="499.6" y="805" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="502.62" y="815.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="1023.3" y="645" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1026.32" y="655.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (20,202,020 samples, 0.06%)</title><rect x="1316.2" y="805" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1319.23" y="815.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="416.4" y="709" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="419.36" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (50,505,050 samples, 0.16%)</title><rect x="318.4" y="693" width="2.2" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="321.44" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.03%)</title><rect x="626.9" y="709" width="0.4" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="629.88" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="439.7" y="789" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="442.66" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="594.5" y="821" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="597.53" y="831.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (40,404,040 samples, 0.13%)</title><rect x="450.9" y="805" width="1.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="453.88" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="375.4" y="693" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="378.38" y="703.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.03%)</title><rect x="104.0" y="517" width="0.5" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="107.04" y="527.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (90,909,090 samples, 0.28%)</title><rect x="598.0" y="805" width="3.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="600.98" y="815.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="581" width="1.3" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1385.67" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="394.4" y="677" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="397.36" y="687.5" ></text>
+</g>
+<g >
+<title>__sk_mem_reduce_allocated (10,101,010 samples, 0.03%)</title><rect x="1009.9" y="645" width="0.5" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1012.95" y="655.5" ></text>
+</g>
+<g >
+<title>__check_heap_object (10,101,010 samples, 0.03%)</title><rect x="272.7" y="645" width="0.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="275.71" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.03%)</title><rect x="340.4" y="469" width="0.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="343.44" y="479.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="359.9" y="741" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="362.85" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.06%)</title><rect x="153.2" y="405" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="156.22" y="415.5" ></text>
+</g>
+<g >
+<title>closedir (10,101,010 samples, 0.03%)</title><rect x="612.2" y="757" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="615.21" y="767.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="304.6" y="677" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="307.64" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (50,505,050 samples, 0.16%)</title><rect x="548.8" y="661" width="2.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="551.80" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="315.9" y="693" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="318.85" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (40,404,040 samples, 0.13%)</title><rect x="336.6" y="725" width="1.7" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="339.56" y="735.5" ></text>
+</g>
+<g >
+<title>apparmor_d_instantiate (10,101,010 samples, 0.03%)</title><rect x="514.7" y="677" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="517.72" y="687.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="562.2" y="661" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="565.17" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (30,303,030 samples, 0.09%)</title><rect x="205.4" y="725" width="1.3" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="208.42" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_read_inode_bitmap (10,101,010 samples, 0.03%)</title><rect x="198.9" y="661" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="201.95" y="671.5" ></text>
+</g>
+<g >
+<title>__percpu_counter_sum (10,101,010 samples, 0.03%)</title><rect x="718.8" y="709" width="0.4" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="721.77" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.03%)</title><rect x="200.2" y="613" width="0.5" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="203.24" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (20,202,020 samples, 0.06%)</title><rect x="494.9" y="677" width="0.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="497.88" y="687.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="242.5" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="245.52" y="687.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (20,202,020 samples, 0.06%)</title><rect x="1317.1" y="885" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1320.10" y="895.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="301.6" y="693" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="304.62" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="414.6" y="645" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="417.64" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.19%)</title><rect x="157.1" y="725" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="160.10" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (10,101,010 samples, 0.03%)</title><rect x="276.6" y="725" width="0.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="279.60" y="735.5" ></text>
+</g>
+<g >
+<title>__do_softirq (20,202,020 samples, 0.06%)</title><rect x="963.4" y="757" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="966.36" y="767.5" ></text>
+</g>
+<g >
+<title>folio_add_lru (30,303,030 samples, 0.09%)</title><rect x="1321.8" y="789" width="1.3" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1324.84" y="799.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="437.9" y="677" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="440.93" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (90,909,090 samples, 0.28%)</title><rect x="620.8" y="821" width="3.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="623.84" y="831.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.03%)</title><rect x="336.1" y="661" width="0.5" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="339.13" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (404,040,400 samples, 1.25%)</title><rect x="551.4" y="789" width="17.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="554.39" y="799.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="278.3" y="677" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="281.32" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="620.4" y="725" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="623.41" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="607.9" y="677" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="610.90" y="687.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="965.5" y="725" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="968.52" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="610.5" y="677" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="613.49" y="687.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_state (10,101,010 samples, 0.03%)</title><rect x="1323.1" y="773" width="0.5" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1326.14" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="198.5" y="677" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="201.52" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (40,404,040 samples, 0.13%)</title><rect x="357.3" y="613" width="1.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="360.26" y="623.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (10,101,010 samples, 0.03%)</title><rect x="530.3" y="645" width="0.4" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="533.25" y="655.5" ></text>
+</g>
+<g >
+<title>flush_tlb_batched_pending (10,101,010 samples, 0.03%)</title><rect x="738.6" y="645" width="0.4" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="741.61" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="70.8" y="757" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="73.83" y="767.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="29.0" y="709" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="31.98" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (121,212,120 samples, 0.38%)</title><rect x="181.3" y="645" width="5.1" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="184.26" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="239.9" y="805" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="242.93" y="815.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="524.2" y="629" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="527.21" y="639.5" ></text>
+</g>
+<g >
+<title>strerror_l (10,101,010 samples, 0.03%)</title><rect x="370.2" y="645" width="0.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="373.21" y="655.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (131,313,130 samples, 0.41%)</title><rect x="1039.3" y="901" width="5.6" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1042.28" y="911.5" ></text>
+</g>
+<g >
+<title>mas_preallocate (10,101,010 samples, 0.03%)</title><rect x="1366.7" y="709" width="0.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1369.71" y="719.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.03%)</title><rect x="529.0" y="453" width="0.4" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="531.96" y="463.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="471.2" y="421" width="0.4" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="474.15" y="431.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="621.7" y="677" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="624.70" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="459.5" y="709" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="462.50" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_superblock_csum_set (10,101,010 samples, 0.03%)</title><rect x="203.7" y="693" width="0.4" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" />
+<text x="206.69" y="703.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="88.9" y="965" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="91.94" y="975.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_state (10,101,010 samples, 0.03%)</title><rect x="995.3" y="661" width="0.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="998.28" y="671.5" ></text>
+</g>
+<g >
+<title>do_filp_open (30,303,030 samples, 0.09%)</title><rect x="598.8" y="629" width="1.3" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="601.84" y="639.5" ></text>
+</g>
+<g >
+<title>write (80,808,080 samples, 0.25%)</title><rect x="43.6" y="869" width="3.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="46.65" y="879.5" ></text>
+</g>
+<g >
+<title>ip_rcv (70,707,070 samples, 0.22%)</title><rect x="32.0" y="309" width="3.0" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="35.00" y="319.5" ></text>
+</g>
+<g >
+<title>out_of_line_wait_on_bit (10,101,010 samples, 0.03%)</title><rect x="224.8" y="501" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="227.83" y="511.5" ></text>
+</g>
+<g >
+<title>memcg_account_kmem (10,101,010 samples, 0.03%)</title><rect x="639.8" y="645" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="642.82" y="655.5" ></text>
+</g>
+<g >
+<title>d_instantiate (10,101,010 samples, 0.03%)</title><rect x="1381.8" y="837" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1384.80" y="847.5" ></text>
+</g>
+<g >
+<title>do_rmdir (404,040,400 samples, 1.25%)</title><rect x="139.0" y="693" width="17.2" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="141.98" y="703.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.03%)</title><rect x="283.1" y="853" width="0.4" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="286.07" y="863.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (90,909,090 samples, 0.28%)</title><rect x="10.9" y="709" width="3.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="13.86" y="719.5" ></text>
+</g>
+<g >
+<title>getaddrinfo (10,101,010 samples, 0.03%)</title><rect x="1389.1" y="949" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1392.14" y="959.5" ></text>
+</g>
+<g >
+<title>kfree (10,101,010 samples, 0.03%)</title><rect x="412.5" y="645" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="415.48" y="655.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="527.2" y="677" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="530.23" y="687.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (121,212,120 samples, 0.38%)</title><rect x="31.1" y="581" width="5.2" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="34.14" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="473.7" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="476.74" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.03%)</title><rect x="167.5" y="645" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="170.46" y="655.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.03%)</title><rect x="511.3" y="405" width="0.4" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="514.27" y="415.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (10,101,010 samples, 0.03%)</title><rect x="1376.6" y="757" width="0.5" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1379.63" y="767.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="547.9" y="341" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="550.94" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (20,202,020 samples, 0.06%)</title><rect x="537.2" y="645" width="0.8" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="540.15" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.06%)</title><rect x="579.0" y="677" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="582.00" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (50,505,050 samples, 0.16%)</title><rect x="190.3" y="677" width="2.2" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="193.32" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (171,717,170 samples, 0.53%)</title><rect x="543.6" y="741" width="7.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="546.62" y="751.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="261.9" y="581" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="264.93" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="280.5" y="677" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="283.48" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="334.0" y="693" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="336.97" y="703.5" ></text>
+</g>
+<g >
+<title>do_softirq (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="549" width="0.4" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1027.19" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_create (20,202,020 samples, 0.06%)</title><rect x="494.9" y="693" width="0.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="497.88" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4fs_dirhash (10,101,010 samples, 0.03%)</title><rect x="349.9" y="661" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="352.93" y="671.5" ></text>
+</g>
+<g >
+<title>security_capable (10,101,010 samples, 0.03%)</title><rect x="310.2" y="645" width="0.5" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="313.24" y="655.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="488.4" y="693" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="491.41" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="158.4" y="437" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="161.40" y="447.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (70,707,070 samples, 0.22%)</title><rect x="11.3" y="469" width="3.0" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="14.29" y="479.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (1,353,535,340 samples, 4.19%)</title><rect x="101.9" y="805" width="57.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="104.88" y="815.5" >[libc...</text>
+</g>
+<g >
+<title>path_put (20,202,020 samples, 0.06%)</title><rect x="622.6" y="709" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="625.57" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (20,202,020 samples, 0.06%)</title><rect x="579.0" y="693" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="582.00" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="401.3" y="533" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="404.27" y="543.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="314.1" y="501" width="0.5" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="317.13" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="437.5" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="440.50" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="351.7" y="757" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="354.66" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="461.2" y="741" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="464.23" y="751.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="314.1" y="597" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="317.13" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="449.1" y="549" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="452.15" y="559.5" ></text>
+</g>
+<g >
+<title>do_softirq (50,505,050 samples, 0.16%)</title><rect x="1377.5" y="485" width="2.1" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1380.49" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,808,080 samples, 0.25%)</title><rect x="38.5" y="869" width="3.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="41.47" y="879.5" ></text>
+</g>
+<g >
+<title>inet_create.part.0.constprop.0 (20,202,020 samples, 0.06%)</title><rect x="1380.5" y="837" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1383.51" y="847.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="529.0" y="389" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="531.96" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="260.2" y="629" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="263.20" y="639.5" ></text>
+</g>
+<g >
+<title>xas_descend (10,101,010 samples, 0.03%)</title><rect x="495.3" y="533" width="0.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="498.31" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (20,202,020 samples, 0.06%)</title><rect x="426.3" y="501" width="0.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="429.29" y="511.5" ></text>
+</g>
+<g >
+<title>__blk_mq_end_request (10,101,010 samples, 0.03%)</title><rect x="587.2" y="581" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="590.19" y="591.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (20,202,020 samples, 0.06%)</title><rect x="540.6" y="597" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="543.60" y="607.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (40,404,040 samples, 0.13%)</title><rect x="1377.9" y="341" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1380.92" y="351.5" ></text>
+</g>
+<g >
+<title>security_file_free (10,101,010 samples, 0.03%)</title><rect x="259.3" y="677" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="262.34" y="687.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="334.0" y="613" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="336.97" y="623.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.03%)</title><rect x="186.9" y="597" width="0.4" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="189.87" y="607.5" ></text>
+</g>
+<g >
+<title>perf_event_init_task (20,202,020 samples, 0.06%)</title><rect x="664.0" y="773" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="666.98" y="783.5" ></text>
+</g>
+<g >
+<title>security_path_rename (10,101,010 samples, 0.03%)</title><rect x="548.4" y="677" width="0.4" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="551.37" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="588.5" y="677" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="591.49" y="687.5" ></text>
+</g>
+<g >
+<title>rmqueue (10,101,010 samples, 0.03%)</title><rect x="1362.0" y="693" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1364.96" y="703.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="487.1" y="613" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="490.11" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="481.9" y="677" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="484.93" y="687.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.06%)</title><rect x="539.7" y="693" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="542.74" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.09%)</title><rect x="445.7" y="645" width="1.3" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="448.70" y="655.5" ></text>
+</g>
+<g >
+<title>add_disk_randomness (10,101,010 samples, 0.03%)</title><rect x="314.1" y="437" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="317.13" y="447.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (535,353,530 samples, 1.66%)</title><rect x="1343.0" y="837" width="22.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1345.98" y="847.5" >d..</text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="48.8" y="997" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="51.82" y="1007.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="590.2" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="593.21" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="242.5" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="245.52" y="767.5" ></text>
+</g>
+<g >
+<title>__release_sock (30,303,030 samples, 0.09%)</title><rect x="1028.1" y="789" width="1.3" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1031.07" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (424,242,420 samples, 1.31%)</title><rect x="139.0" y="741" width="18.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="141.98" y="751.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.03%)</title><rect x="498.8" y="645" width="0.4" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="501.76" y="655.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="607.9" y="597" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="610.90" y="607.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.03%)</title><rect x="210.2" y="661" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="213.16" y="671.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.03%)</title><rect x="83.8" y="709" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="86.77" y="719.5" ></text>
+</g>
+<g >
+<title>nd_jump_root (10,101,010 samples, 0.03%)</title><rect x="457.8" y="565" width="0.4" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="460.78" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="419.8" y="741" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="422.82" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="601.4" y="725" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="604.43" y="735.5" ></text>
+</g>
+<g >
+<title>do_writepages (30,303,030 samples, 0.09%)</title><rect x="466.0" y="613" width="1.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="468.97" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="283.9" y="821" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="286.93" y="831.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="457.3" y="709" width="0.5" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="460.35" y="719.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="229.1" y="693" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="232.14" y="703.5" ></text>
+</g>
+<g >
+<title>iput (10,101,010 samples, 0.03%)</title><rect x="527.7" y="741" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="530.66" y="751.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="327.1" y="709" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="330.07" y="719.5" ></text>
+</g>
+<g >
+<title>__put_user_8 (20,202,020 samples, 0.06%)</title><rect x="665.3" y="773" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="668.27" y="783.5" ></text>
+</g>
+<g >
+<title>fprintf (20,202,020 samples, 0.06%)</title><rect x="1375.8" y="933" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1378.76" y="943.5" ></text>
+</g>
+<g >
+<title>get_unused_fd_flags (10,101,010 samples, 0.03%)</title><rect x="558.7" y="677" width="0.5" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="561.72" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="483.7" y="517" width="0.4" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="486.66" y="527.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.03%)</title><rect x="101.0" y="757" width="0.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="104.02" y="767.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (40,404,040 samples, 0.13%)</title><rect x="1021.2" y="373" width="1.7" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1024.17" y="383.5" ></text>
+</g>
+<g >
+<title>__napi_poll (70,707,070 samples, 0.22%)</title><rect x="1006.9" y="437" width="3.0" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1009.93" y="447.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="398.7" y="645" width="0.4" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="401.68" y="655.5" ></text>
+</g>
+<g >
+<title>page_counter_uncharge (20,202,020 samples, 0.06%)</title><rect x="675.2" y="709" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="678.20" y="719.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.03%)</title><rect x="221.8" y="661" width="0.4" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="224.81" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="272.7" y="821" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="275.71" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (40,404,040 samples, 0.13%)</title><rect x="271.0" y="757" width="1.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="273.99" y="767.5" ></text>
+</g>
+<g >
+<title>anon_vma_fork (101,010,100 samples, 0.31%)</title><rect x="635.5" y="741" width="4.3" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="638.51" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (141,414,140 samples, 0.44%)</title><rect x="562.6" y="757" width="6.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="565.60" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="523.3" y="613" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="526.35" y="623.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="506.5" y="741" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="509.52" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (30,303,030 samples, 0.09%)</title><rect x="485.8" y="613" width="1.3" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="488.82" y="623.5" ></text>
+</g>
+<g >
+<title>__tcp_ack_snd_check (20,202,020 samples, 0.06%)</title><rect x="1007.8" y="261" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1010.79" y="271.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (60,606,060 samples, 0.19%)</title><rect x="174.8" y="693" width="2.6" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="177.79" y="703.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="277.9" y="661" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="280.89" y="671.5" ></text>
+</g>
+<g >
+<title>lookup_fast (20,202,020 samples, 0.06%)</title><rect x="538.0" y="677" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="541.02" y="687.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (80,808,080 samples, 0.25%)</title><rect x="11.3" y="661" width="3.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="14.29" y="671.5" ></text>
+</g>
+<g >
+<title>_Fork (777,777,770 samples, 2.41%)</title><rect x="632.9" y="885" width="33.2" height="15.0" fill="rgb(0,237,201)" rx="2" ry="2" />
+<text x="635.92" y="895.5" >_F..</text>
+</g>
+<g >
+<title>do_writepages (30,303,030 samples, 0.09%)</title><rect x="565.6" y="581" width="1.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="568.62" y="591.5" ></text>
+</g>
+<g >
+<title>generic_permission (20,202,020 samples, 0.06%)</title><rect x="309.8" y="677" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="312.81" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="405.1" y="677" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="408.15" y="687.5" ></text>
+</g>
+<g >
+<title>remove (20,202,020 samples, 0.06%)</title><rect x="103.6" y="693" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="106.61" y="703.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="187.7" y="661" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="190.73" y="671.5" ></text>
+</g>
+<g >
+<title>sk_prot_alloc (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="805" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1030.64" y="815.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="489.7" y="597" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="492.70" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.03%)</title><rect x="200.2" y="581" width="0.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="203.24" y="591.5" ></text>
+</g>
+<g >
+<title>up_read (10,101,010 samples, 0.03%)</title><rect x="1003.0" y="773" width="0.5" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="1006.05" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="255.9" y="837" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="258.89" y="847.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="268.8" y="693" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="271.83" y="703.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="613.1" y="453" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="616.08" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (60,606,060 samples, 0.19%)</title><rect x="425.0" y="613" width="2.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="427.99" y="623.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="436.6" y="805" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="439.64" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="370.2" y="629" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="373.21" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="522.5" y="645" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="525.49" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.03%)</title><rect x="632.5" y="757" width="0.4" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="635.49" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="567.8" y="613" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="570.78" y="623.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="286.9" y="629" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="289.95" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_brk (191,919,190 samples, 0.59%)</title><rect x="733.0" y="773" width="8.2" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="736.00" y="783.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="1356.8" y="741" width="0.4" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="1359.78" y="751.5" ></text>
+</g>
+<g >
+<title>d_lru_del (10,101,010 samples, 0.03%)</title><rect x="155.8" y="613" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="158.81" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.06%)</title><rect x="519.5" y="629" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="522.47" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="339.6" y="485" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="342.58" y="495.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="292.6" y="581" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="295.56" y="591.5" ></text>
+</g>
+<g >
+<title>__memset (20,202,020 samples, 0.06%)</title><rect x="360.7" y="565" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="363.72" y="575.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.03%)</title><rect x="71.7" y="661" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="74.69" y="671.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="587.2" y="725" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="590.19" y="735.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="396.5" y="613" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="399.52" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="350.4" y="821" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="353.36" y="831.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="1327.9" y="789" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1330.88" y="799.5" ></text>
+</g>
+<g >
+<title>__wake_up (10,101,010 samples, 0.03%)</title><rect x="727.8" y="677" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="730.82" y="687.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="625.2" y="757" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="628.15" y="767.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="618.7" y="645" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="621.68" y="655.5" ></text>
+</g>
+<g >
+<title>find_vma (20,202,020 samples, 0.06%)</title><rect x="692.0" y="661" width="0.9" height="15.0" fill="rgb(0,198,33)" rx="2" ry="2" />
+<text x="695.02" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="281.3" y="837" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="284.34" y="847.5" ></text>
+</g>
+<g >
+<title>open64 (171,717,170 samples, 0.53%)</title><rect x="517.3" y="821" width="7.3" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="520.31" y="831.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="223.5" y="677" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="226.54" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.28%)</title><rect x="202.8" y="821" width="3.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="205.83" y="831.5" ></text>
+</g>
+<g >
+<title>__fsnotify_parent (10,101,010 samples, 0.03%)</title><rect x="603.2" y="549" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="606.15" y="559.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="440.1" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="443.09" y="671.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="487.1" y="421" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="490.11" y="431.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="616.1" y="677" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="619.10" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="458.6" y="741" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="461.64" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="395.7" y="709" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="398.66" y="719.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="965.5" y="693" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="968.52" y="703.5" ></text>
+</g>
+<g >
+<title>malloc (20,202,020 samples, 0.06%)</title><rect x="1366.7" y="885" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1369.71" y="895.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="249.4" y="581" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="252.42" y="591.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.03%)</title><rect x="1317.1" y="805" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1320.10" y="815.5" ></text>
+</g>
+<g >
+<title>kmalloc_trace (10,101,010 samples, 0.03%)</title><rect x="134.2" y="661" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="137.24" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="353.4" y="773" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="356.38" y="783.5" ></text>
+</g>
+<g >
+<title>ip_output (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="629" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1031.50" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (30,303,030 samples, 0.09%)</title><rect x="528.1" y="725" width="1.3" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="531.09" y="735.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (10,101,010 samples, 0.03%)</title><rect x="192.9" y="661" width="0.4" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="195.91" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.06%)</title><rect x="106.6" y="565" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="109.63" y="575.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="187.3" y="757" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="190.30" y="767.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.03%)</title><rect x="511.3" y="421" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="514.27" y="431.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="228.3" y="661" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="231.28" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.03%)</title><rect x="567.8" y="645" width="0.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="570.78" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (20,202,020 samples, 0.06%)</title><rect x="257.2" y="645" width="0.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="260.18" y="655.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="726.5" y="821" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="729.53" y="831.5" ></text>
+</g>
+<g >
+<title>__block_commit_write.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="272.3" y="613" width="0.4" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="275.28" y="623.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="286.9" y="645" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="289.95" y="655.5" ></text>
+</g>
+<g >
+<title>do_filp_open (50,505,050 samples, 0.16%)</title><rect x="261.1" y="661" width="2.1" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="264.07" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="373.7" y="677" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="376.66" y="687.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="352.1" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="355.09" y="655.5" ></text>
+</g>
+<g >
+<title>buf_create_from_string (50,505,050 samples, 0.16%)</title><rect x="741.2" y="933" width="2.2" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="744.20" y="943.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.03%)</title><rect x="396.1" y="549" width="0.4" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="399.09" y="559.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (30,303,030 samples, 0.09%)</title><rect x="565.6" y="613" width="1.3" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="568.62" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.03%)</title><rect x="171.8" y="725" width="0.4" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="174.77" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.25%)</title><rect x="122.6" y="725" width="3.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="125.59" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="570.4" y="709" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="573.37" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="625.2" y="789" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="628.15" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="89.4" y="997" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="92.37" y="1007.5" ></text>
+</g>
+<g >
+<title>read (20,202,020 samples, 0.06%)</title><rect x="259.8" y="725" width="0.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="262.77" y="735.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="269.7" y="709" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="272.69" y="719.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.03%)</title><rect x="1317.1" y="789" width="0.4" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="1320.10" y="799.5" ></text>
+</g>
+<g >
+<title>__tcp_select_window (10,101,010 samples, 0.03%)</title><rect x="1374.9" y="245" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1377.90" y="255.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="151.5" y="549" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="154.49" y="559.5" ></text>
+</g>
+<g >
+<title>worker_get_run (454,545,450 samples, 1.41%)</title><rect x="1370.6" y="981" width="19.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1373.59" y="991.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="243.8" y="661" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="246.81" y="671.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="1366.3" y="837" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1369.27" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="220.5" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="223.52" y="783.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="525.9" y="613" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="528.94" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_ack (10,101,010 samples, 0.03%)</title><rect x="1378.8" y="261" width="0.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1381.78" y="271.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (10,101,010 samples, 0.03%)</title><rect x="1021.6" y="293" width="0.4" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1024.60" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (20,202,020 samples, 0.06%)</title><rect x="210.2" y="693" width="0.8" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="213.16" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (20,202,020 samples, 0.06%)</title><rect x="524.6" y="709" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="527.64" y="719.5" ></text>
+</g>
+<g >
+<title>do_filp_open (171,717,170 samples, 0.53%)</title><rect x="517.3" y="741" width="7.3" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="520.31" y="751.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (40,404,040 samples, 0.13%)</title><rect x="211.0" y="757" width="1.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="214.03" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="246.4" y="789" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="249.40" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="224.8" y="597" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="227.83" y="607.5" ></text>
+</g>
+<g >
+<title>access (30,303,030 samples, 0.09%)</title><rect x="263.7" y="789" width="1.2" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="266.65" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_htree_store_dirent (10,101,010 samples, 0.03%)</title><rect x="132.9" y="629" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="135.94" y="639.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.06%)</title><rect x="387.0" y="677" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="390.03" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="462.1" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="465.09" y="783.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="88.9" y="1013" width="0.5" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="91.94" y="1023.5" ></text>
+</g>
+<g >
+<title>client_destroy (232,323,230 samples, 0.72%)</title><rect x="26.8" y="933" width="9.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="29.82" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (40,404,040 samples, 0.13%)</title><rect x="70.0" y="821" width="1.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="72.96" y="831.5" ></text>
+</g>
+<g >
+<title>lookup_dcache (10,101,010 samples, 0.03%)</title><rect x="118.7" y="629" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="121.71" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (50,505,050 samples, 0.16%)</title><rect x="166.2" y="693" width="2.1" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="169.16" y="703.5" ></text>
+</g>
+<g >
+<title>open64 (50,505,050 samples, 0.16%)</title><rect x="497.5" y="789" width="2.1" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="500.46" y="799.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="549" width="1.3" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1385.67" y="559.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="441.0" y="677" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="443.95" y="687.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (30,303,030 samples, 0.09%)</title><rect x="325.8" y="645" width="1.3" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="328.77" y="655.5" ></text>
+</g>
+<g >
+<title>mb_mark_used (10,101,010 samples, 0.03%)</title><rect x="584.2" y="565" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="587.17" y="575.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="544.9" y="533" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="547.92" y="543.5" ></text>
+</g>
+<g >
+<title>apparmor_file_alloc_security (10,101,010 samples, 0.03%)</title><rect x="1381.4" y="789" width="0.4" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="1384.37" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="270.6" y="837" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="273.56" y="847.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="107.9" y="549" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="110.92" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="250.7" y="693" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="253.71" y="703.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.03%)</title><rect x="1008.2" y="149" width="0.5" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1011.22" y="159.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.03%)</title><rect x="561.7" y="693" width="0.5" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="564.74" y="703.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.03%)</title><rect x="383.6" y="597" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="386.58" y="607.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="338.3" y="693" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="341.28" y="703.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.03%)</title><rect x="402.1" y="373" width="0.5" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="405.13" y="383.5" ></text>
+</g>
+<g >
+<title>read_tsc (10,101,010 samples, 0.03%)</title><rect x="1011.7" y="309" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1014.68" y="319.5" ></text>
+</g>
+<g >
+<title>do_linkat (20,202,020 samples, 0.06%)</title><rect x="488.8" y="693" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="491.84" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="239.9" y="677" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="242.93" y="687.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (30,303,030 samples, 0.09%)</title><rect x="1387.4" y="661" width="1.3" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1390.41" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="423.3" y="725" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="426.27" y="735.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="996.1" y="693" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="999.15" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.09%)</title><rect x="285.7" y="773" width="1.2" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="288.65" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (80,808,080 samples, 0.25%)</title><rect x="1006.5" y="677" width="3.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1009.50" y="687.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="300.3" y="581" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="303.32" y="591.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="527.2" y="741" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="530.23" y="751.5" ></text>
+</g>
+<g >
+<title>perf_iterate_sb (10,101,010 samples, 0.03%)</title><rect x="21.6" y="933" width="0.5" height="15.0" fill="rgb(0,229,163)" rx="2" ry="2" />
+<text x="24.65" y="943.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (10,101,010 samples, 0.03%)</title><rect x="466.8" y="565" width="0.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="469.84" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="293.9" y="629" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="296.85" y="639.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="436.2" y="629" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="439.21" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.03%)</title><rect x="353.4" y="741" width="0.4" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="356.38" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="272.7" y="741" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="275.71" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (70,707,070 samples, 0.22%)</title><rect x="318.0" y="741" width="3.0" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="321.01" y="751.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.03%)</title><rect x="257.6" y="533" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="260.61" y="543.5" ></text>
+</g>
+<g >
+<title>strerror_l (10,101,010 samples, 0.03%)</title><rect x="385.3" y="645" width="0.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="388.30" y="655.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (20,202,020 samples, 0.06%)</title><rect x="324.9" y="661" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="327.91" y="671.5" ></text>
+</g>
+<g >
+<title>inflate (10,101,010 samples, 0.03%)</title><rect x="277.5" y="773" width="0.4" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="280.46" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="220.5" y="725" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="223.52" y="735.5" ></text>
+</g>
+<g >
+<title>git_remote_update_tips (797,979,790 samples, 2.47%)</title><rect x="461.7" y="869" width="34.0" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="464.66" y="879.5" >gi..</text>
+</g>
+<g >
+<title>inflate (10,101,010 samples, 0.03%)</title><rect x="260.6" y="741" width="0.5" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="263.63" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="393.5" y="677" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="396.50" y="687.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="588.5" y="629" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="591.49" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="468.6" y="597" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="471.56" y="607.5" ></text>
+</g>
+<g >
+<title>do_flush_stats (10,101,010 samples, 0.03%)</title><rect x="553.5" y="533" width="0.5" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="556.54" y="543.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (30,303,030 samples, 0.09%)</title><rect x="723.5" y="805" width="1.3" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="726.51" y="815.5" ></text>
+</g>
+<g >
+<title>json_object_put (10,101,010 samples, 0.03%)</title><rect x="732.1" y="901" width="0.5" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="735.14" y="911.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="533.3" y="757" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="536.27" y="767.5" ></text>
+</g>
+<g >
+<title>vma_interval_tree_insert_after (10,101,010 samples, 0.03%)</title><rect x="663.1" y="757" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="666.12" y="767.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (10,101,010 samples, 0.03%)</title><rect x="1021.6" y="245" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1024.60" y="255.5" ></text>
+</g>
+<g >
+<title>fscrypt_file_open (10,101,010 samples, 0.03%)</title><rect x="217.9" y="629" width="0.5" height="15.0" fill="rgb(0,198,33)" rx="2" ry="2" />
+<text x="220.93" y="639.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="499.6" y="613" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="502.62" y="623.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="430.6" y="645" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="433.60" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.03%)</title><rect x="541.0" y="581" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="544.03" y="591.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="487.1" y="229" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="490.11" y="239.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="557.9" y="741" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="560.86" y="751.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.03%)</title><rect x="356.0" y="597" width="0.4" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="358.97" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (131,313,130 samples, 0.41%)</title><rect x="49.3" y="965" width="5.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="52.26" y="975.5" ></text>
+</g>
+<g >
+<title>__send_ipi_one (30,303,030 samples, 0.09%)</title><rect x="1384.0" y="629" width="1.3" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1386.96" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="397.0" y="661" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="399.95" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="617.8" y="741" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="620.82" y="751.5" ></text>
+</g>
+<g >
+<title>opendir (30,303,030 samples, 0.09%)</title><rect x="445.7" y="709" width="1.3" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="448.70" y="719.5" ></text>
+</g>
+<g >
+<title>ip_output (60,606,060 samples, 0.19%)</title><rect x="1020.7" y="645" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1023.73" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.06%)</title><rect x="82.5" y="773" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="85.47" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="362.9" y="629" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="365.87" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="459.1" y="853" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="462.07" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="551.4" y="725" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="554.39" y="735.5" ></text>
+</g>
+<g >
+<title>charge_memcg (20,202,020 samples, 0.06%)</title><rect x="991.0" y="677" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="993.97" y="687.5" ></text>
+</g>
+<g >
+<title>iterate_dir (181,818,180 samples, 0.56%)</title><rect x="130.4" y="709" width="7.7" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="133.36" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.03%)</title><rect x="191.6" y="565" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="194.61" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.03%)</title><rect x="340.9" y="469" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="343.87" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="426.7" y="453" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="429.72" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.03%)</title><rect x="140.3" y="549" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="143.28" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="121.3" y="741" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="124.30" y="751.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="501.3" y="661" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="504.35" y="671.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="235.6" y="597" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="238.61" y="607.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.03%)</title><rect x="1381.4" y="821" width="0.4" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="1384.37" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="251.6" y="741" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="254.58" y="751.5" ></text>
+</g>
+<g >
+<title>do_linkat (40,404,040 samples, 0.13%)</title><rect x="274.4" y="773" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="277.44" y="783.5" ></text>
+</g>
+<g >
+<title>storvsc_queuecommand (10,101,010 samples, 0.03%)</title><rect x="344.3" y="341" width="0.5" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="347.32" y="351.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.03%)</title><rect x="334.0" y="597" width="0.4" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="336.97" y="607.5" ></text>
+</g>
+<g >
+<title>syscall_trace_enter.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="394.8" y="661" width="0.4" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="397.80" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.34%)</title><rect x="230.0" y="805" width="4.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="233.01" y="815.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (10,101,010 samples, 0.03%)</title><rect x="283.1" y="709" width="0.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="286.07" y="719.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_try_merge (10,101,010 samples, 0.03%)</title><rect x="466.4" y="421" width="0.4" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="469.41" y="431.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="205.8" y="677" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="208.85" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="316.3" y="757" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="319.28" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (525,252,520 samples, 1.63%)</title><rect x="1004.3" y="853" width="22.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1007.34" y="863.5" >d..</text>
+</g>
+<g >
+<title>__open64_nocancel (10,101,010 samples, 0.03%)</title><rect x="610.5" y="725" width="0.4" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="613.49" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="293.9" y="581" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="296.85" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="631.2" y="661" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="634.19" y="671.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (10,101,010 samples, 0.03%)</title><rect x="282.2" y="901" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="285.20" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="482.4" y="485" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="485.37" y="495.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (10,101,010 samples, 0.03%)</title><rect x="475.0" y="613" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="478.03" y="623.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="542.3" y="757" width="0.5" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="545.33" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (121,212,120 samples, 0.38%)</title><rect x="508.2" y="725" width="5.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="511.25" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="539.7" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="542.74" y="751.5" ></text>
+</g>
+<g >
+<title>ksys_read (20,202,020 samples, 0.06%)</title><rect x="552.3" y="677" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="555.25" y="687.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="16.9" y="885" width="0.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="19.90" y="895.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_create_access (20,202,020 samples, 0.06%)</title><rect x="582.4" y="645" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="585.45" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.19%)</title><rect x="253.3" y="805" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="256.30" y="815.5" ></text>
+</g>
+<g >
+<title>_find_next_zero_bit (10,101,010 samples, 0.03%)</title><rect x="476.8" y="581" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="479.76" y="591.5" ></text>
+</g>
+<g >
+<title>write (50,505,050 samples, 0.16%)</title><rect x="530.3" y="821" width="2.1" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="533.25" y="831.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="139.0" y="661" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="141.98" y="671.5" ></text>
+</g>
+<g >
+<title>write (40,404,040 samples, 0.13%)</title><rect x="224.0" y="789" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="226.97" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="551.4" y="645" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="554.39" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="525.9" y="661" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="528.94" y="671.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="214.5" y="837" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="217.48" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="455.6" y="677" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="458.62" y="687.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (20,202,020 samples, 0.06%)</title><rect x="1035.8" y="933" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1038.83" y="943.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="285.2" y="613" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="288.22" y="623.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.03%)</title><rect x="466.0" y="437" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="468.97" y="447.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.03%)</title><rect x="236.5" y="709" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="239.48" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="362.0" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="365.01" y="687.5" ></text>
+</g>
+<g >
+<title>in_group_p (10,101,010 samples, 0.03%)</title><rect x="387.5" y="549" width="0.4" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="390.46" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="398.7" y="613" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="401.68" y="623.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="132.9" y="549" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="135.94" y="559.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="487.1" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="490.11" y="639.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.03%)</title><rect x="648.9" y="693" width="0.4" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="651.88" y="703.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="462.1" y="645" width="0.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="465.09" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_wait4 (20,202,020 samples, 0.06%)</title><rect x="727.0" y="821" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="729.96" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_create_access (10,101,010 samples, 0.03%)</title><rect x="357.3" y="549" width="0.4" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="360.26" y="559.5" ></text>
+</g>
+<g >
+<title>scsi_complete (20,202,020 samples, 0.06%)</title><rect x="1316.2" y="789" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1319.23" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="397.0" y="709" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="399.95" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="150.2" y="597" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="153.20" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.03%)</title><rect x="179.5" y="629" width="0.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="182.53" y="639.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.03%)</title><rect x="353.4" y="725" width="0.4" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="356.38" y="735.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="507.4" y="709" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="510.39" y="719.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (151,515,150 samples, 0.47%)</title><rect x="30.3" y="821" width="6.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="33.28" y="831.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.03%)</title><rect x="576.8" y="693" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="579.84" y="703.5" ></text>
+</g>
+<g >
+<title>git_config_free (30,303,030 samples, 0.09%)</title><rect x="98.0" y="869" width="1.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="101.00" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,808,080 samples, 0.25%)</title><rect x="318.0" y="757" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="321.01" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_write (40,404,040 samples, 0.13%)</title><rect x="420.2" y="677" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="423.25" y="687.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.06%)</title><rect x="494.9" y="741" width="0.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="497.88" y="751.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (50,505,050 samples, 0.16%)</title><rect x="595.4" y="821" width="2.1" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="598.39" y="831.5" ></text>
+</g>
+<g >
+<title>process_backlog (50,505,050 samples, 0.16%)</title><rect x="1377.5" y="421" width="2.1" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1380.49" y="431.5" ></text>
+</g>
+<g >
+<title>unlink_cb (101,010,100 samples, 0.31%)</title><rect x="208.9" y="885" width="4.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="211.87" y="895.5" ></text>
+</g>
+<g >
+<title>truncate_cleanup_folio (10,101,010 samples, 0.03%)</title><rect x="547.9" y="517" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="550.94" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="380.1" y="661" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="383.13" y="671.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.06%)</title><rect x="494.9" y="837" width="0.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="497.88" y="847.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (30,303,030 samples, 0.09%)</title><rect x="344.3" y="501" width="1.3" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="347.32" y="511.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="158.4" y="549" width="0.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="161.40" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.03%)</title><rect x="154.1" y="501" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="157.08" y="511.5" ></text>
+</g>
+<g >
+<title>sigprocmask (10,101,010 samples, 0.03%)</title><rect x="38.0" y="821" width="0.5" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="41.04" y="831.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="628.2" y="741" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="631.17" y="751.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="582.9" y="613" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="585.88" y="623.5" ></text>
+</g>
+<g >
+<title>printbuf_memappend (868,686,860 samples, 2.69%)</title><rect x="966.4" y="837" width="37.1" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="969.38" y="847.5" >pri..</text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (131,313,130 samples, 0.41%)</title><rect x="294.7" y="581" width="5.6" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="297.71" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (141,414,140 samples, 0.44%)</title><rect x="372.4" y="805" width="6.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="375.36" y="815.5" ></text>
+</g>
+<g >
+<title>log_entry_start (111,111,110 samples, 0.34%)</title><rect x="42.4" y="965" width="4.7" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="45.35" y="975.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.03%)</title><rect x="396.5" y="581" width="0.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="399.52" y="591.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="71.7" y="693" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="74.69" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="468.6" y="613" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="471.56" y="623.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="132.9" y="501" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="135.94" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="230.0" y="613" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="233.01" y="623.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="71.7" y="805" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="74.69" y="815.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="228.3" y="533" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="231.28" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="1372.3" y="821" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1375.31" y="831.5" ></text>
+</g>
+<g >
+<title>write (30,303,030 samples, 0.09%)</title><rect x="215.8" y="821" width="1.3" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="218.77" y="831.5" ></text>
+</g>
+<g >
+<title>current_time (10,101,010 samples, 0.03%)</title><rect x="260.2" y="549" width="0.4" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="263.20" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.41%)</title><rect x="406.0" y="789" width="5.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="409.01" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.03%)</title><rect x="481.1" y="581" width="0.4" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="484.07" y="591.5" ></text>
+</g>
+<g >
+<title>bit_wait_io (10,101,010 samples, 0.03%)</title><rect x="572.1" y="629" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="575.09" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="242.1" y="677" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="245.09" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="458.6" y="757" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="461.64" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (30,303,030 samples, 0.09%)</title><rect x="485.8" y="677" width="1.3" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="488.82" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (30,303,030 samples, 0.09%)</title><rect x="583.7" y="645" width="1.3" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="586.74" y="655.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="393.5" y="629" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="396.50" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (50,505,050 samples, 0.16%)</title><rect x="475.9" y="597" width="2.2" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="478.90" y="607.5" ></text>
+</g>
+<g >
+<title>net_close (70,707,070 samples, 0.22%)</title><rect x="1377.1" y="965" width="3.0" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1380.06" y="975.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="378.8" y="645" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="381.83" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="607.9" y="661" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="610.90" y="671.5" ></text>
+</g>
+<g >
+<title>find_get_pid (10,101,010 samples, 0.03%)</title><rect x="727.0" y="805" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="729.96" y="815.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (20,202,020 samples, 0.06%)</title><rect x="1026.8" y="869" width="0.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1029.77" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="233.5" y="661" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="236.46" y="671.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (545,454,540 samples, 1.69%)</title><rect x="980.2" y="805" width="23.3" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="983.18" y="815.5" >a..</text>
+</g>
+<g >
+<title>__tcp_close (121,212,120 samples, 0.38%)</title><rect x="31.1" y="661" width="5.2" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="34.14" y="671.5" ></text>
+</g>
+<g >
+<title>file_close (20,202,020 samples, 0.06%)</title><rect x="1026.8" y="949" width="0.8" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1029.77" y="959.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="261.9" y="597" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="264.93" y="607.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.03%)</title><rect x="587.2" y="773" width="0.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="590.19" y="783.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="228.7" y="661" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="231.71" y="671.5" ></text>
+</g>
+<g >
+<title>unlink (30,303,030 samples, 0.09%)</title><rect x="364.2" y="773" width="1.3" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="367.17" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_parse_md5sig_option (10,101,010 samples, 0.03%)</title><rect x="1378.4" y="293" width="0.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1381.35" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (40,404,040 samples, 0.13%)</title><rect x="563.0" y="597" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="566.04" y="607.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (60,606,060 samples, 0.19%)</title><rect x="384.0" y="773" width="2.6" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="387.01" y="783.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (30,303,030 samples, 0.09%)</title><rect x="1034.5" y="517" width="1.3" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1037.54" y="527.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.03%)</title><rect x="546.6" y="357" width="0.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="549.64" y="367.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.03%)</title><rect x="125.2" y="613" width="0.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="128.18" y="623.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.09%)</title><rect x="429.7" y="661" width="1.3" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="432.74" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="362.0" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="365.01" y="751.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (70,707,070 samples, 0.22%)</title><rect x="1377.1" y="869" width="3.0" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1380.06" y="879.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="572.5" y="693" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="575.53" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="116.6" y="485" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="119.55" y="495.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="557.4" y="741" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="560.43" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="209.3" y="709" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="212.30" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="160.6" y="693" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="163.55" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="284.4" y="773" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="287.36" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="452.6" y="773" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="455.60" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="429.7" y="773" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="432.74" y="783.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (151,515,150 samples, 0.47%)</title><rect x="626.4" y="821" width="6.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="629.45" y="831.5" ></text>
+</g>
+<g >
+<title>_copy_to_user (10,101,010 samples, 0.03%)</title><rect x="279.6" y="661" width="0.4" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="282.62" y="671.5" ></text>
+</g>
+<g >
+<title>security_file_free (10,101,010 samples, 0.03%)</title><rect x="367.6" y="581" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="370.62" y="591.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (202,020,200 samples, 0.63%)</title><rect x="1318.8" y="917" width="8.6" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1321.82" y="927.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="384.0" y="757" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="387.01" y="767.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (30,303,030 samples, 0.09%)</title><rect x="466.0" y="645" width="1.3" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="468.97" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (60,606,060 samples, 0.19%)</title><rect x="437.1" y="837" width="2.6" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="440.07" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="422.4" y="741" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="425.40" y="751.5" ></text>
+</g>
+<g >
+<title>iput (10,101,010 samples, 0.03%)</title><rect x="401.3" y="613" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="404.27" y="623.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="555.7" y="613" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="558.70" y="623.5" ></text>
+</g>
+<g >
+<title>zap_pte_range (50,505,050 samples, 0.16%)</title><rect x="739.0" y="645" width="2.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="742.04" y="655.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="277.9" y="597" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="280.89" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="473.7" y="581" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="476.74" y="591.5" ></text>
+</g>
+<g >
+<title>__libc_start_main (30,313,131,010 samples, 93.81%)</title><rect x="95.4" y="1045" width="1294.6" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="98.41" y="1055.5" >__libc_start_main</text>
+</g>
+<g >
+<title>remove (80,808,080 samples, 0.25%)</title><rect x="198.5" y="837" width="3.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="201.52" y="847.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="506.5" y="677" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="509.52" y="687.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="428.9" y="693" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="431.87" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (20,202,020 samples, 0.06%)</title><rect x="1011.2" y="357" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1014.24" y="367.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.03%)</title><rect x="509.1" y="469" width="0.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="512.11" y="479.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="239.9" y="773" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="242.93" y="783.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="389" width="0.4" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1027.19" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_bread (60,606,060 samples, 0.19%)</title><rect x="51.8" y="853" width="2.6" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="54.84" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="426.3" y="453" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="429.29" y="463.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.03%)</title><rect x="233.5" y="629" width="0.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="236.46" y="639.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="253.7" y="517" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="256.73" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.28%)</title><rect x="503.5" y="757" width="3.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="506.50" y="767.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.03%)</title><rect x="506.1" y="469" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="509.09" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="265.8" y="853" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="268.81" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (20,202,020 samples, 0.06%)</title><rect x="72.6" y="837" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="75.55" y="847.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (20,202,020 samples, 0.06%)</title><rect x="230.0" y="709" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="233.01" y="719.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.03%)</title><rect x="503.1" y="533" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="506.07" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (141,414,140 samples, 0.44%)</title><rect x="294.3" y="613" width="6.0" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="297.28" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="415.9" y="869" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="418.93" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="500.9" y="597" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="503.92" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.06%)</title><rect x="573.0" y="693" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="575.96" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="494.9" y="821" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="497.88" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (171,717,170 samples, 0.53%)</title><rect x="328.8" y="773" width="7.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="331.79" y="783.5" ></text>
+</g>
+<g >
+<title>net_recv (20,202,020 samples, 0.06%)</title><rect x="1372.3" y="869" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1375.31" y="879.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="584.2" y="389" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="587.17" y="399.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free_bulk (10,101,010 samples, 0.03%)</title><rect x="1047.0" y="741" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1050.05" y="751.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (10,101,010 samples, 0.03%)</title><rect x="549.2" y="453" width="0.5" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="552.23" y="463.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.03%)</title><rect x="503.1" y="661" width="0.4" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="506.07" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.09%)</title><rect x="121.3" y="773" width="1.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="124.30" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (30,303,030 samples, 0.09%)</title><rect x="364.2" y="661" width="1.3" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="367.17" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (393,939,390 samples, 1.22%)</title><rect x="569.9" y="741" width="16.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="572.94" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="471.2" y="469" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="474.15" y="479.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="231.7" y="405" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="234.73" y="415.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.03%)</title><rect x="336.6" y="613" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="339.56" y="623.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (40,404,040 samples, 0.13%)</title><rect x="342.2" y="581" width="1.7" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="345.17" y="591.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.03%)</title><rect x="79.5" y="757" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="82.45" y="767.5" ></text>
+</g>
+<g >
+<title>open64 (50,505,050 samples, 0.16%)</title><rect x="261.1" y="741" width="2.1" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="264.07" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="620.0" y="805" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="622.98" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.03%)</title><rect x="409.9" y="581" width="0.4" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="412.89" y="591.5" ></text>
+</g>
+<g >
+<title>__es_remove_extent (10,101,010 samples, 0.03%)</title><rect x="117.0" y="533" width="0.4" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="119.98" y="543.5" ></text>
+</g>
+<g >
+<title>end_bio_bh_io_sync (10,101,010 samples, 0.03%)</title><rect x="71.7" y="629" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="74.69" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (20,202,020 samples, 0.06%)</title><rect x="148.9" y="613" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="151.91" y="623.5" ></text>
+</g>
+<g >
+<title>opendir (40,404,040 samples, 0.13%)</title><rect x="613.1" y="757" width="1.7" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="616.08" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="116.1" y="549" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="119.12" y="559.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="362.0" y="661" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="365.01" y="671.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (40,404,040 samples, 0.13%)</title><rect x="439.7" y="821" width="1.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="442.66" y="831.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.03%)</title><rect x="567.8" y="581" width="0.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="570.78" y="591.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.03%)</title><rect x="511.3" y="373" width="0.4" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="514.27" y="383.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (20,202,020 samples, 0.06%)</title><rect x="1034.5" y="469" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1037.54" y="479.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="242.1" y="645" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="245.09" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="279.2" y="885" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="282.18" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.06%)</title><rect x="208.0" y="757" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="211.01" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="381.0" y="709" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="383.99" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.06%)</title><rect x="222.2" y="693" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="225.24" y="703.5" ></text>
+</g>
+<g >
+<title>fprintf (20,202,020 samples, 0.06%)</title><rect x="213.2" y="917" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="216.18" y="927.5" ></text>
+</g>
+<g >
+<title>bpf_prog_fd16de16241b0bed_kprobe_tcp_connect (80,808,080 samples, 0.25%)</title><rect x="1029.4" y="725" width="3.4" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="1032.36" y="735.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="1022.5" y="245" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1025.46" y="255.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (60,606,060 samples, 0.19%)</title><rect x="58.3" y="901" width="2.6" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="61.32" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="544.5" y="549" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="547.49" y="559.5" ></text>
+</g>
+<g >
+<title>process_backlog (70,707,070 samples, 0.22%)</title><rect x="1006.9" y="421" width="3.0" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1009.93" y="431.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (20,202,020 samples, 0.06%)</title><rect x="12.6" y="293" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="15.59" y="303.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.03%)</title><rect x="213.6" y="757" width="0.4" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="216.61" y="767.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="992.7" y="677" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="995.69" y="687.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="202.4" y="773" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="205.40" y="783.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="1376.6" y="741" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1379.63" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="411.2" y="725" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="414.19" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="470.3" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="473.29" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="271.0" y="789" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="273.99" y="799.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="273.1" y="725" width="0.5" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="276.14" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="202.4" y="789" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="205.40" y="799.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="377.1" y="677" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="380.11" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.03%)</title><rect x="459.5" y="613" width="0.4" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="462.50" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="188.2" y="789" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="191.16" y="799.5" ></text>
+</g>
+<g >
+<title>link (20,202,020 samples, 0.06%)</title><rect x="561.7" y="773" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="564.74" y="783.5" ></text>
+</g>
+<g >
+<title>cubictcp_acked (10,101,010 samples, 0.03%)</title><rect x="32.4" y="181" width="0.5" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="35.43" y="191.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.03%)</title><rect x="613.5" y="661" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="616.51" y="671.5" ></text>
+</g>
+<g >
+<title>do_wait (10,101,010 samples, 0.03%)</title><rect x="727.4" y="789" width="0.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="730.39" y="799.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.03%)</title><rect x="269.3" y="677" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="272.26" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (40,404,040 samples, 0.13%)</title><rect x="224.0" y="677" width="1.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="226.97" y="687.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (10,101,010 samples, 0.03%)</title><rect x="549.2" y="501" width="0.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="552.23" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.03%)</title><rect x="365.0" y="629" width="0.5" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="368.03" y="639.5" ></text>
+</g>
+<g >
+<title>sd_done (10,101,010 samples, 0.03%)</title><rect x="555.7" y="549" width="0.4" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="558.70" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (60,606,060 samples, 0.19%)</title><rect x="51.8" y="821" width="2.6" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="54.84" y="831.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.03%)</title><rect x="311.5" y="597" width="0.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="314.54" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (30,303,030 samples, 0.09%)</title><rect x="123.9" y="613" width="1.3" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="126.89" y="623.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.06%)</title><rect x="602.7" y="661" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="605.72" y="671.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="560.0" y="773" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="563.02" y="783.5" ></text>
+</g>
+<g >
+<title>netif_rx_internal (10,101,010 samples, 0.03%)</title><rect x="1021.6" y="53" width="0.4" height="15.0" fill="rgb(0,198,33)" rx="2" ry="2" />
+<text x="1024.60" y="63.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="250.7" y="709" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="253.71" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="627.3" y="757" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="630.31" y="767.5" ></text>
+</g>
+<g >
+<title>__napi_poll (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="501" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1027.19" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (10,101,010 samples, 0.03%)</title><rect x="629.0" y="677" width="0.5" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="632.04" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_fin (30,303,030 samples, 0.09%)</title><rect x="32.9" y="181" width="1.3" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="35.86" y="191.5" ></text>
+</g>
+<g >
+<title>inflateInit2_ (10,101,010 samples, 0.03%)</title><rect x="235.2" y="757" width="0.4" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="238.18" y="767.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (60,606,060 samples, 0.19%)</title><rect x="510.0" y="581" width="2.6" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="512.97" y="591.5" ></text>
+</g>
+<g >
+<title>alloc_buffer_head (10,101,010 samples, 0.03%)</title><rect x="531.1" y="597" width="0.4" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="534.11" y="607.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.03%)</title><rect x="625.2" y="837" width="0.4" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="628.15" y="847.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.03%)</title><rect x="1036.3" y="869" width="0.4" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="1039.26" y="879.5" ></text>
+</g>
+<g >
+<title>blk_mq_submit_bio (20,202,020 samples, 0.06%)</title><rect x="433.6" y="469" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="436.62" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="405.1" y="693" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="408.15" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.41%)</title><rect x="496.6" y="821" width="5.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="499.60" y="831.5" ></text>
+</g>
+<g >
+<title>__snprintf (10,101,010 samples, 0.03%)</title><rect x="214.5" y="885" width="0.4" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="217.48" y="895.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="598.4" y="693" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="601.41" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.22%)</title><rect x="445.3" y="741" width="3.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="448.27" y="751.5" ></text>
+</g>
+<g >
+<title>make_vfsuid (10,101,010 samples, 0.03%)</title><rect x="286.9" y="597" width="0.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="289.95" y="607.5" ></text>
+</g>
+<g >
+<title>kprobe_perf_func (40,404,040 samples, 0.13%)</title><rect x="1384.0" y="757" width="1.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1386.96" y="767.5" ></text>
+</g>
+<g >
+<title>post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="420.7" y="517" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="423.68" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="582.0" y="661" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="585.02" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="295.1" y="469" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="298.15" y="479.5" ></text>
+</g>
+<g >
+<title>__default_morecore (10,101,010 samples, 0.03%)</title><rect x="127.3" y="709" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="130.34" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (10,101,010 samples, 0.03%)</title><rect x="230.4" y="629" width="0.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="233.44" y="639.5" ></text>
+</g>
+<g >
+<title>git_config_get_string_buf (20,202,020 samples, 0.06%)</title><rect x="468.1" y="821" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="471.13" y="831.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.03%)</title><rect x="312.0" y="645" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="314.97" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (20,202,020 samples, 0.06%)</title><rect x="546.6" y="501" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="549.64" y="511.5" ></text>
+</g>
+<g >
+<title>__snprintf (10,101,010 samples, 0.03%)</title><rect x="1036.7" y="917" width="0.4" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="1039.70" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.06%)</title><rect x="153.2" y="437" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="156.22" y="447.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="490.6" y="693" width="0.4" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="493.56" y="703.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (20,202,020 samples, 0.06%)</title><rect x="173.5" y="709" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="176.49" y="719.5" ></text>
+</g>
+<g >
+<title>lh_table_free (10,101,010 samples, 0.03%)</title><rect x="732.1" y="885" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="735.14" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.06%)</title><rect x="463.0" y="725" width="0.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="465.95" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.03%)</title><rect x="210.6" y="629" width="0.4" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="213.59" y="639.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (20,202,020 samples, 0.06%)</title><rect x="532.8" y="789" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="535.84" y="799.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="230.0" y="533" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="233.01" y="543.5" ></text>
+</g>
+<g >
+<title>__remove_inode_hash (10,101,010 samples, 0.03%)</title><rect x="161.8" y="661" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="164.85" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="151.9" y="469" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="154.93" y="479.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.03%)</title><rect x="1035.0" y="309" width="0.4" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1037.97" y="319.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="209.3" y="693" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="212.30" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="238.6" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="241.63" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="199.8" y="629" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="202.81" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="541.0" y="517" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="544.03" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (252,525,250 samples, 0.78%)</title><rect x="392.6" y="789" width="10.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="395.64" y="799.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="242.1" y="613" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="245.09" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="539.3" y="741" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="542.31" y="751.5" ></text>
+</g>
+<g >
+<title>unlink_cb (494,949,490 samples, 1.53%)</title><rect x="138.6" y="789" width="21.1" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="141.55" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="377.5" y="693" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="380.54" y="703.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (20,202,020 samples, 0.06%)</title><rect x="556.1" y="757" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="559.13" y="767.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (20,202,020 samples, 0.06%)</title><rect x="96.7" y="821" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="99.71" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="181.3" y="629" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="184.26" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (50,505,050 samples, 0.16%)</title><rect x="530.3" y="773" width="2.1" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="533.25" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_brk (20,202,020 samples, 0.06%)</title><rect x="1047.0" y="805" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1050.05" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="460.4" y="805" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="463.37" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="242.1" y="741" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="245.09" y="751.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="363.3" y="549" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="366.30" y="559.5" ></text>
+</g>
+<g >
+<title>mas_wr_modify (80,808,080 samples, 0.25%)</title><rect x="652.3" y="709" width="3.5" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="655.33" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="221.8" y="757" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="224.81" y="767.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="440.5" y="613" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="443.52" y="623.5" ></text>
+</g>
+<g >
+<title>set_root (10,101,010 samples, 0.03%)</title><rect x="457.8" y="549" width="0.4" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="460.78" y="559.5" ></text>
+</g>
+<g >
+<title>opendir (70,707,070 samples, 0.22%)</title><rect x="315.0" y="805" width="3.0" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="317.99" y="815.5" ></text>
+</g>
+<g >
+<title>do_softirq (101,010,100 samples, 0.31%)</title><rect x="31.6" y="421" width="4.3" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="34.57" y="431.5" ></text>
+</g>
+<g >
+<title>git_revparse_ext (20,202,020 samples, 0.06%)</title><rect x="281.3" y="901" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="284.34" y="911.5" ></text>
+</g>
+<g >
+<title>ip_rcv (70,707,070 samples, 0.22%)</title><rect x="11.3" y="453" width="3.0" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="14.29" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="477.2" y="533" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="480.19" y="543.5" ></text>
+</g>
+<g >
+<title>close_fd (10,101,010 samples, 0.03%)</title><rect x="110.9" y="693" width="0.5" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="113.94" y="703.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (80,808,080 samples, 0.25%)</title><rect x="11.3" y="613" width="3.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="14.29" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="1376.6" y="821" width="0.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1379.63" y="831.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="282.6" y="853" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="285.64" y="863.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="587.2" y="709" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="590.19" y="719.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.03%)</title><rect x="244.2" y="517" width="0.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="247.24" y="527.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.03%)</title><rect x="125.2" y="469" width="0.4" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="128.18" y="479.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="613.5" y="613" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="616.51" y="623.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="625.2" y="677" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="628.15" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (2,858,585,830 samples, 8.85%)</title><rect x="283.9" y="869" width="122.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="286.93" y="879.5" >[libgit2.so.1.1..</text>
+</g>
+<g >
+<title>__dev_queue_xmit (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="581" width="1.3" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1014.24" y="591.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.03%)</title><rect x="590.6" y="581" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="593.64" y="591.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="597" width="1.3" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1377.47" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="448.3" y="693" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="451.29" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.09%)</title><rect x="473.3" y="709" width="1.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="476.31" y="719.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="188.6" y="709" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="191.59" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_init_io_end (10,101,010 samples, 0.03%)</title><rect x="435.3" y="565" width="0.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="438.35" y="575.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="243.8" y="709" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="246.81" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="235.2" y="709" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="238.18" y="719.5" ></text>
+</g>
+<g >
+<title>evict (50,505,050 samples, 0.16%)</title><rect x="198.5" y="709" width="2.2" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="201.52" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="99.7" y="853" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="102.73" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="440.1" y="709" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="443.09" y="719.5" ></text>
+</g>
+<g >
+<title>git_index_set_caps (40,404,040 samples, 0.13%)</title><rect x="279.6" y="869" width="1.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="282.62" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="107.5" y="565" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="110.49" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="72.6" y="821" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="75.55" y="831.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (70,707,070 samples, 0.22%)</title><rect x="122.6" y="677" width="3.0" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="125.59" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (60,606,060 samples, 0.19%)</title><rect x="296.4" y="549" width="2.6" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="299.44" y="559.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (60,606,060 samples, 0.19%)</title><rect x="24.2" y="837" width="2.6" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="27.24" y="847.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="336.6" y="677" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="339.56" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (70,707,070 samples, 0.22%)</title><rect x="51.8" y="885" width="3.1" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="54.84" y="895.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.06%)</title><rect x="494.9" y="757" width="0.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="497.88" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="503.5" y="725" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="506.50" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="251.6" y="805" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="254.58" y="815.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="561.7" y="645" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="564.74" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="128.2" y="661" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="131.20" y="671.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="220.5" y="661" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="223.52" y="671.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="587.2" y="693" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="590.19" y="703.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="219.2" y="693" width="0.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="222.22" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="583.3" y="645" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="586.31" y="655.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.03%)</title><rect x="447.4" y="725" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="450.42" y="735.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (10,101,010 samples, 0.03%)</title><rect x="334.8" y="565" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="337.83" y="575.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="383.1" y="629" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="386.15" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="217.1" y="821" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="220.06" y="831.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (40,404,040 samples, 0.13%)</title><rect x="1021.2" y="453" width="1.7" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1024.17" y="463.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.06%)</title><rect x="356.0" y="709" width="0.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="358.97" y="719.5" ></text>
+</g>
+<g >
+<title>git_buf_dispose (10,101,010 samples, 0.03%)</title><rect x="417.2" y="885" width="0.5" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="420.23" y="895.5" ></text>
+</g>
+<g >
+<title>readlink (20,202,020 samples, 0.06%)</title><rect x="450.0" y="757" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="453.01" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_file_getattr (10,101,010 samples, 0.03%)</title><rect x="561.3" y="645" width="0.4" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="564.31" y="655.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="370.6" y="597" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="373.64" y="607.5" ></text>
+</g>
+<g >
+<title>readlink (20,202,020 samples, 0.06%)</title><rect x="615.7" y="805" width="0.8" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="618.66" y="815.5" ></text>
+</g>
+<g >
+<title>do_filp_open (717,171,710 samples, 2.22%)</title><rect x="57.9" y="933" width="30.6" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="60.88" y="943.5" >do..</text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="190.8" y="533" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="193.75" y="543.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (30,303,030 samples, 0.09%)</title><rect x="1315.8" y="853" width="1.3" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1318.80" y="863.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="98.9" y="821" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="101.87" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="423.3" y="773" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="426.27" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="281.8" y="741" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="284.77" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.03%)</title><rect x="523.8" y="677" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="526.78" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="614.8" y="677" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="617.80" y="687.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (20,202,020 samples, 0.06%)</title><rect x="30.3" y="693" width="0.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="33.28" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.28%)</title><rect x="208.9" y="821" width="3.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="211.87" y="831.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (242,424,240 samples, 0.75%)</title><rect x="682.5" y="709" width="10.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="685.53" y="719.5" ></text>
+</g>
+<g >
+<title>opendir (10,101,010 samples, 0.03%)</title><rect x="206.7" y="885" width="0.4" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="209.71" y="895.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="664.0" y="757" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="666.98" y="767.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="1317.1" y="869" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1320.10" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_rename (50,505,050 samples, 0.16%)</title><rect x="548.8" y="645" width="2.2" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="551.80" y="655.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="1367.1" y="773" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1370.14" y="783.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="407.3" y="645" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="410.31" y="655.5" ></text>
+</g>
+<g >
+<title>git_object_lookup_prefix (70,707,070 samples, 0.22%)</title><rect x="351.2" y="853" width="3.0" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="354.23" y="863.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.03%)</title><rect x="91.5" y="789" width="0.5" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="94.53" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="497.9" y="533" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="500.90" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="54.9" y="997" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="57.86" y="1007.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.41%)</title><rect x="601.9" y="789" width="5.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="604.86" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="247.7" y="709" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="250.69" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="428.9" y="757" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="431.87" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="266.2" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="269.24" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="350.4" y="837" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="353.36" y="847.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="502.6" y="821" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="505.64" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="16.9" y="949" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="19.90" y="959.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="246.8" y="789" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="249.83" y="799.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.03%)</title><rect x="396.1" y="533" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="399.09" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="423.3" y="741" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="426.27" y="751.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (10,101,010 samples, 0.03%)</title><rect x="549.2" y="517" width="0.5" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="552.23" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.22%)</title><rect x="44.1" y="853" width="3.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="47.08" y="863.5" ></text>
+</g>
+<g >
+<title>__napi_poll (20,202,020 samples, 0.06%)</title><rect x="1387.4" y="565" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1390.41" y="575.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.09%)</title><rect x="54.9" y="1013" width="1.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="57.86" y="1023.5" ></text>
+</g>
+<g >
+<title>hook_file_open (10,101,010 samples, 0.03%)</title><rect x="590.6" y="565" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="593.64" y="575.5" ></text>
+</g>
+<g >
+<title>__d_alloc (20,202,020 samples, 0.06%)</title><rect x="91.5" y="837" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="94.53" y="847.5" ></text>
+</g>
+<g >
+<title>apparmor_path_mknod (10,101,010 samples, 0.03%)</title><rect x="88.1" y="853" width="0.4" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="91.08" y="863.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.03%)</title><rect x="456.9" y="549" width="0.4" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="459.91" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="220.9" y="709" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="223.95" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="462.1" y="805" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="465.09" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="619.1" y="837" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="622.12" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (50,505,050 samples, 0.16%)</title><rect x="622.6" y="741" width="2.1" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="625.57" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="315.0" y="661" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="317.99" y="671.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.03%)</title><rect x="601.4" y="757" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="604.43" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="95.8" y="869" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="98.85" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="443.5" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="446.54" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="440.1" y="629" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="443.09" y="639.5" ></text>
+</g>
+<g >
+<title>git_buf_dispose (10,101,010 samples, 0.03%)</title><rect x="229.1" y="709" width="0.5" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="232.14" y="719.5" ></text>
+</g>
+<g >
+<title>do_linkat (20,202,020 samples, 0.06%)</title><rect x="411.6" y="725" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="414.62" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="382.7" y="709" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="385.72" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="725" width="1.3" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1385.67" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="551.4" y="693" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="554.39" y="703.5" ></text>
+</g>
+<g >
+<title>git_repository_open_ext (252,525,250 samples, 0.78%)</title><rect x="381.9" y="805" width="10.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="384.85" y="815.5" ></text>
+</g>
+<g >
+<title>__memcpy (10,101,010 samples, 0.03%)</title><rect x="132.5" y="629" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="135.51" y="639.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.03%)</title><rect x="247.3" y="805" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="250.26" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="268.0" y="741" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="270.97" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="223.1" y="773" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="226.10" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.03%)</title><rect x="431.0" y="741" width="0.5" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="434.03" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (20,202,020 samples, 0.06%)</title><rect x="233.0" y="693" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="236.03" y="703.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="395.7" y="725" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="398.66" y="735.5" ></text>
+</g>
+<g >
+<title>git_buf_dispose (10,101,010 samples, 0.03%)</title><rect x="428.0" y="805" width="0.4" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="431.01" y="815.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="1036.3" y="789" width="0.4" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1039.26" y="799.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="347.3" y="469" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="350.34" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="52.7" y="725" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="55.71" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (20,202,020 samples, 0.06%)</title><rect x="51.0" y="837" width="0.8" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="53.98" y="847.5" ></text>
+</g>
+<g >
+<title>__d_move (10,101,010 samples, 0.03%)</title><rect x="427.6" y="677" width="0.4" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="430.58" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="445.7" y="661" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="448.70" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="314.1" y="485" width="0.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="317.13" y="495.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="1372.7" y="805" width="0.5" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1375.74" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (40,404,040 samples, 0.13%)</title><rect x="231.3" y="613" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="234.30" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="353.8" y="773" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="356.81" y="783.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (20,202,020 samples, 0.06%)</title><rect x="1387.4" y="309" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1390.41" y="319.5" ></text>
+</g>
+<g >
+<title>iterate_dir (40,404,040 samples, 0.13%)</title><rect x="207.1" y="805" width="1.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="210.14" y="815.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="447.4" y="597" width="0.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="450.42" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="215.8" y="805" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="218.77" y="815.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (20,202,020 samples, 0.06%)</title><rect x="598.8" y="597" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="601.84" y="607.5" ></text>
+</g>
+<g >
+<title>touch_atime (30,303,030 samples, 0.09%)</title><rect x="207.6" y="789" width="1.3" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="210.57" y="799.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (60,606,060 samples, 0.19%)</title><rect x="32.0" y="277" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="35.00" y="287.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (60,606,060 samples, 0.19%)</title><rect x="1377.5" y="565" width="2.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1380.49" y="575.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="100.2" y="773" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="103.16" y="783.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="281.8" y="645" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="284.77" y="655.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.03%)</title><rect x="132.9" y="613" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="135.94" y="623.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="529.0" y="613" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="531.96" y="623.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="205.8" y="661" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="208.85" y="671.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (20,202,020 samples, 0.06%)</title><rect x="497.9" y="661" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="500.90" y="671.5" ></text>
+</g>
+<g >
+<title>write (30,303,030 samples, 0.09%)</title><rect x="483.2" y="709" width="1.3" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="486.23" y="719.5" ></text>
+</g>
+<g >
+<title>alloc_pages (10,101,010 samples, 0.03%)</title><rect x="554.0" y="533" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="556.98" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="628.6" y="725" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="631.61" y="735.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="757" width="1.3" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1014.24" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.06%)</title><rect x="391.8" y="661" width="0.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="394.78" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="377.1" y="741" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="380.11" y="751.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.03%)</title><rect x="308.1" y="645" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="311.09" y="655.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (70,707,070 samples, 0.22%)</title><rect x="424.6" y="677" width="3.0" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="427.56" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (60,606,060 samples, 0.19%)</title><rect x="478.1" y="549" width="2.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="481.05" y="559.5" ></text>
+</g>
+<g >
+<title>git_filter_list_stream_blob (80,808,080 samples, 0.25%)</title><rect x="256.3" y="853" width="3.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="259.32" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_has_free_clusters (10,101,010 samples, 0.03%)</title><rect x="295.6" y="533" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="298.58" y="543.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="356.0" y="581" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="358.97" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="512.6" y="613" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="515.56" y="623.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="102.3" y="645" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="105.32" y="655.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="727.8" y="789" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="730.82" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="564.3" y="421" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="567.33" y="431.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (50,505,050 samples, 0.16%)</title><rect x="27.7" y="821" width="2.1" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="30.69" y="831.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="449.1" y="485" width="0.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="452.15" y="495.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="453.5" y="661" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="456.46" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="631.2" y="613" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="634.19" y="623.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="295.1" y="549" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="298.15" y="559.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.03%)</title><rect x="159.7" y="741" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="162.69" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_bread (20,202,020 samples, 0.06%)</title><rect x="515.6" y="677" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="518.58" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (20,202,020 samples, 0.06%)</title><rect x="411.6" y="741" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="414.62" y="751.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.03%)</title><rect x="1387.0" y="725" width="0.4" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1389.98" y="735.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (20,202,020 samples, 0.06%)</title><rect x="549.7" y="517" width="0.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="552.66" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="339.6" y="533" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="342.58" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="281.8" y="725" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="284.77" y="735.5" ></text>
+</g>
+<g >
+<title>__folio_alloc (80,808,080 samples, 0.25%)</title><rect x="997.4" y="677" width="3.5" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1000.44" y="687.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.03%)</title><rect x="120.0" y="661" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="123.00" y="671.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.06%)</title><rect x="456.5" y="693" width="0.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="459.48" y="703.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (20,202,020 samples, 0.06%)</title><rect x="83.3" y="741" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="86.34" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="378.0" y="709" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="380.97" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="377.1" y="693" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="380.11" y="703.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="397.4" y="613" width="0.4" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="400.38" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="468.1" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="471.13" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_discard_preallocations (10,101,010 samples, 0.03%)</title><rect x="432.3" y="565" width="0.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="435.33" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="278.3" y="709" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="281.32" y="719.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (20,202,020 samples, 0.06%)</title><rect x="218.8" y="741" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="221.79" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="459.1" y="773" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="462.07" y="783.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (20,202,020 samples, 0.06%)</title><rect x="16.0" y="933" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="19.04" y="943.5" ></text>
+</g>
+<g >
+<title>free_rb_tree_fname (10,101,010 samples, 0.03%)</title><rect x="327.9" y="677" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="330.93" y="687.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (90,909,090 samples, 0.28%)</title><rect x="10.9" y="741" width="3.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="13.86" y="751.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="459.5" y="725" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="462.50" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="456.1" y="629" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="459.05" y="639.5" ></text>
+</g>
+<g >
+<title>worker_main (30,313,131,010 samples, 93.81%)</title><rect x="95.4" y="997" width="1294.6" height="15.0" fill="rgb(0,212,96)" rx="2" ry="2" />
+<text x="98.41" y="1007.5" >worker_main</text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="635.9" y="725" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="638.94" y="735.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.03%)</title><rect x="1363.3" y="613" width="0.4" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="1366.25" y="623.5" ></text>
+</g>
+<g >
+<title>kprobe_ftrace_handler (80,808,080 samples, 0.25%)</title><rect x="1029.4" y="789" width="3.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1032.36" y="799.5" ></text>
+</g>
+<g >
+<title>git_repository_open_ext (222,222,220 samples, 0.69%)</title><rect x="615.2" y="885" width="9.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="618.23" y="895.5" ></text>
+</g>
+<g >
+<title>touch_atime (20,202,020 samples, 0.06%)</title><rect x="172.2" y="725" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="175.20" y="735.5" ></text>
+</g>
+<g >
+<title>log_entry_start (30,303,030 samples, 0.09%)</title><rect x="1375.8" y="965" width="1.3" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1378.76" y="975.5" ></text>
+</g>
+<g >
+<title>process_backlog (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="485" width="1.3" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1014.24" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="731.3" y="917" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="734.28" y="927.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (60,606,060 samples, 0.19%)</title><rect x="32.0" y="293" width="2.6" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="35.00" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.03%)</title><rect x="555.3" y="533" width="0.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="558.27" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="281.3" y="517" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="284.34" y="527.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="127.8" y="565" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="130.77" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="468.1" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="471.13" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="117.4" y="469" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="120.41" y="479.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.03%)</title><rect x="499.6" y="549" width="0.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="502.62" y="559.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (20,202,020 samples, 0.06%)</title><rect x="665.3" y="757" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="668.27" y="767.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="587.2" y="645" width="0.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="590.19" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (111,111,110 samples, 0.34%)</title><rect x="620.0" y="837" width="4.7" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="622.98" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="386.6" y="741" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="389.60" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="88.5" y="917" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="91.51" y="927.5" ></text>
+</g>
+<g >
+<title>__inet_hash_connect (10,101,010 samples, 0.03%)</title><rect x="1032.8" y="789" width="0.4" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1035.81" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.09%)</title><rect x="176.1" y="661" width="1.3" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="179.08" y="671.5" ></text>
+</g>
+<g >
+<title>____fput (50,505,050 samples, 0.16%)</title><rect x="27.7" y="789" width="2.1" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="30.69" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="516.0" y="549" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="519.01" y="559.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.03%)</title><rect x="1012.1" y="421" width="0.4" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1015.11" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (50,505,050 samples, 0.16%)</title><rect x="433.2" y="565" width="2.1" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="436.19" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="353.0" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="355.95" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="564.3" y="437" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="567.33" y="447.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="316.3" y="741" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="319.28" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="283.1" y="741" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="286.07" y="751.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="365.0" y="581" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="368.03" y="591.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="441.8" y="645" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="444.82" y="655.5" ></text>
+</g>
+<g >
+<title>libjson_to_string (6,101,010,040 samples, 18.88%)</title><rect x="743.4" y="933" width="260.5" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="746.35" y="943.5" >libjson_to_string</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="16.0" y="885" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="19.04" y="895.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="525.9" y="629" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="528.94" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (111,111,110 samples, 0.34%)</title><rect x="230.0" y="789" width="4.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="233.01" y="799.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (20,202,020 samples, 0.06%)</title><rect x="1026.8" y="885" width="0.8" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1029.77" y="895.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="190.3" y="565" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="193.32" y="575.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="504.4" y="597" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="507.37" y="607.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="315.9" y="677" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="318.85" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="457.8" y="597" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="460.78" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="601.0" y="661" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="604.00" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (111,111,110 samples, 0.34%)</title><rect x="10.4" y="805" width="4.8" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="13.43" y="815.5" ></text>
+</g>
+<g >
+<title>unlink (161,616,160 samples, 0.50%)</title><rect x="161.8" y="773" width="6.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="164.85" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_fname_setup_filename (10,101,010 samples, 0.03%)</title><rect x="142.4" y="645" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="145.44" y="655.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_ipv4 (10,101,010 samples, 0.03%)</title><rect x="1035.0" y="277" width="0.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1037.97" y="287.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="404.3" y="693" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="407.29" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.03%)</title><rect x="141.6" y="645" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="144.57" y="655.5" ></text>
+</g>
+<g >
+<title>loopback_xmit (10,101,010 samples, 0.03%)</title><rect x="1024.6" y="549" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1027.62" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="441.8" y="757" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="444.82" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="620.4" y="773" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="623.41" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.03%)</title><rect x="199.4" y="677" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="202.38" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (90,909,090 samples, 0.28%)</title><rect x="564.8" y="677" width="3.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="567.76" y="687.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (20,202,020 samples, 0.06%)</title><rect x="402.1" y="453" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="405.13" y="463.5" ></text>
+</g>
+<g >
+<title>zap_pmd_range.isra.0 (60,606,060 samples, 0.19%)</title><rect x="738.6" y="661" width="2.6" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="741.61" y="671.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="726.5" y="853" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="729.53" y="863.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="499.6" y="565" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="502.62" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="384.4" y="645" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="387.44" y="655.5" ></text>
+</g>
+<g >
+<title>irqentry_exit_to_user_mode (40,404,040 samples, 0.13%)</title><rect x="964.2" y="773" width="1.7" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="967.22" y="783.5" ></text>
+</g>
+<g >
+<title>mas_alloc_nodes (10,101,010 samples, 0.03%)</title><rect x="1366.7" y="693" width="0.4" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1369.71" y="703.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (202,020,200 samples, 0.63%)</title><rect x="428.4" y="853" width="8.7" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="431.44" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.03%)</title><rect x="297.7" y="533" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="300.73" y="543.5" ></text>
+</g>
+<g >
+<title>d_lookup (10,101,010 samples, 0.03%)</title><rect x="118.7" y="613" width="0.4" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="121.71" y="623.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (20,202,020 samples, 0.06%)</title><rect x="1024.2" y="597" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1027.19" y="607.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="507.4" y="677" width="0.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="510.39" y="687.5" ></text>
+</g>
+<g >
+<title>git_remote_name (10,101,010 samples, 0.03%)</title><rect x="415.1" y="869" width="0.4" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="418.07" y="879.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="484.1" y="533" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="487.09" y="543.5" ></text>
+</g>
+<g >
+<title>tcp_ack (10,101,010 samples, 0.03%)</title><rect x="1004.8" y="709" width="0.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1007.77" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.16%)</title><rect x="622.6" y="757" width="2.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="625.57" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.03%)</title><rect x="318.9" y="645" width="0.4" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="321.87" y="655.5" ></text>
+</g>
+<g >
+<title>net_rx_action (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="485" width="1.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1385.67" y="495.5" ></text>
+</g>
+<g >
+<title>unlink (80,808,080 samples, 0.25%)</title><rect x="122.6" y="741" width="3.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="125.59" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="147.2" y="549" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="150.18" y="559.5" ></text>
+</g>
+<g >
+<title>path_openat (30,303,030 samples, 0.09%)</title><rect x="481.9" y="613" width="1.3" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="484.93" y="623.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="616.1" y="693" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="619.10" y="703.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.03%)</title><rect x="450.4" y="677" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="453.44" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (101,010,100 samples, 0.31%)</title><rect x="322.8" y="693" width="4.3" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="325.75" y="703.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="379.3" y="549" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="382.27" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="435.8" y="661" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="438.78" y="671.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="280.5" y="645" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="283.48" y="655.5" ></text>
+</g>
+<g >
+<title>_copy_to_iter (10,101,010 samples, 0.03%)</title><rect x="552.7" y="581" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="555.68" y="591.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_node (10,101,010 samples, 0.03%)</title><rect x="12.2" y="277" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="15.16" y="287.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (1,020,202,010 samples, 3.16%)</title><rect x="284.4" y="837" width="43.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="287.36" y="847.5" >[lib..</text>
+</g>
+<g >
+<title>down_write (30,303,030 samples, 0.09%)</title><rect x="649.3" y="741" width="1.3" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="652.31" y="751.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="114.0" y="613" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="116.96" y="623.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (40,404,040 samples, 0.13%)</title><rect x="1377.9" y="405" width="1.7" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1380.92" y="415.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="129.5" y="645" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="132.49" y="655.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.03%)</title><rect x="283.1" y="837" width="0.4" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="286.07" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_find_extent (10,101,010 samples, 0.03%)</title><rect x="409.9" y="533" width="0.4" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="412.89" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="550.5" y="581" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="553.53" y="591.5" ></text>
+</g>
+<g >
+<title>mas_walk (10,101,010 samples, 0.03%)</title><rect x="1326.6" y="853" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1329.59" y="863.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="1366.3" y="869" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1369.27" y="879.5" ></text>
+</g>
+<g >
+<title>alloc_pages (10,101,010 samples, 0.03%)</title><rect x="639.8" y="693" width="0.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="642.82" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.03%)</title><rect x="466.8" y="485" width="0.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="469.84" y="495.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="587.6" y="789" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="590.62" y="799.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.03%)</title><rect x="409.9" y="517" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="412.89" y="527.5" ></text>
+</g>
+<g >
+<title>__release_sock (20,202,020 samples, 0.06%)</title><rect x="1373.2" y="757" width="0.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1376.18" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="203.3" y="709" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="206.26" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="448.3" y="741" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="451.29" y="751.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.06%)</title><rect x="463.0" y="709" width="0.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="465.95" y="719.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="613.1" y="485" width="0.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="616.08" y="495.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="381.9" y="677" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="384.85" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.16%)</title><rect x="27.7" y="885" width="2.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="30.69" y="895.5" ></text>
+</g>
+<g >
+<title>fscrypt_match_name (20,202,020 samples, 0.06%)</title><rect x="92.8" y="789" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="95.83" y="799.5" ></text>
+</g>
+<g >
+<title>libjson_free (212,121,210 samples, 0.66%)</title><rect x="732.1" y="949" width="9.1" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="735.14" y="959.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (20,202,020 samples, 0.06%)</title><rect x="51.0" y="821" width="0.8" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="53.98" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="401.7" y="613" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="404.70" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="592.4" y="805" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="595.37" y="815.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_tcp_packet (10,101,010 samples, 0.03%)</title><rect x="1033.7" y="645" width="0.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1036.68" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="461.2" y="757" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="464.23" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.03%)</title><rect x="341.3" y="533" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="344.30" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (30,303,030 samples, 0.09%)</title><rect x="402.1" y="549" width="1.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="405.13" y="559.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="992.7" y="693" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="995.69" y="703.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (10,101,010 samples, 0.03%)</title><rect x="1021.6" y="165" width="0.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1024.60" y="175.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (20,202,020 samples, 0.06%)</title><rect x="494.9" y="709" width="0.8" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="497.88" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (70,707,070 samples, 0.22%)</title><rect x="305.1" y="661" width="3.0" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="308.07" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="397.4" y="533" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="400.38" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="117.4" y="517" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="120.41" y="527.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (60,606,060 samples, 0.19%)</title><rect x="1373.2" y="821" width="2.6" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1376.18" y="831.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="540.2" y="613" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="543.17" y="623.5" ></text>
+</g>
+<g >
+<title>git_buf_dispose (10,101,010 samples, 0.03%)</title><rect x="387.9" y="757" width="0.4" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="390.89" y="767.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (50,505,050 samples, 0.16%)</title><rect x="553.5" y="613" width="2.2" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="556.54" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="387.0" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="390.03" y="735.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (151,515,150 samples, 0.47%)</title><rect x="1320.1" y="869" width="6.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1323.12" y="879.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="611.4" y="725" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="614.35" y="735.5" ></text>
+</g>
+<g >
+<title>ima_file_check (10,101,010 samples, 0.03%)</title><rect x="599.7" y="581" width="0.4" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="602.70" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.06%)</title><rect x="564.8" y="613" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="567.76" y="623.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="488.4" y="709" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="491.41" y="719.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.03%)</title><rect x="105.8" y="533" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="108.77" y="543.5" ></text>
+</g>
+<g >
+<title>client_create (30,303,030 samples, 0.09%)</title><rect x="37.2" y="917" width="1.3" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="40.18" y="927.5" ></text>
+</g>
+<g >
+<title>dput (20,202,020 samples, 0.06%)</title><rect x="30.3" y="741" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="33.28" y="751.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="540.2" y="645" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="543.17" y="655.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (20,202,020 samples, 0.06%)</title><rect x="213.2" y="885" width="0.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="216.18" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="184.7" y="485" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="187.71" y="495.5" ></text>
+</g>
+<g >
+<title>__set_cpus_allowed_ptr (10,101,010 samples, 0.03%)</title><rect x="632.9" y="725" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="635.92" y="735.5" ></text>
+</g>
+<g >
+<title>git_remote_download (50,505,050 samples, 0.16%)</title><rect x="459.5" y="869" width="2.2" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="462.50" y="879.5" ></text>
+</g>
+<g >
+<title>do_wp_page (40,404,040 samples, 0.13%)</title><rect x="689.9" y="629" width="1.7" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="692.86" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="449.1" y="533" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="452.15" y="543.5" ></text>
+</g>
+<g >
+<title>ip_rcv (40,404,040 samples, 0.13%)</title><rect x="1021.2" y="421" width="1.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1024.17" y="431.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="368.9" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="371.91" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.09%)</title><rect x="243.4" y="773" width="1.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="246.38" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="563.5" y="549" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="566.47" y="559.5" ></text>
+</g>
+<g >
+<title>readdir64 (40,404,040 samples, 0.13%)</title><rect x="112.2" y="757" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="115.24" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="497.9" y="613" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="500.90" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (70,707,070 samples, 0.22%)</title><rect x="115.3" y="597" width="3.0" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="118.26" y="607.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.03%)</title><rect x="598.8" y="565" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="601.84" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.22%)</title><rect x="441.8" y="837" width="3.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="444.82" y="847.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="613.5" y="645" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="616.51" y="655.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="373" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1031.50" y="383.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.06%)</title><rect x="445.7" y="597" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="448.70" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.06%)</title><rect x="300.3" y="613" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="303.32" y="623.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (20,202,020 samples, 0.06%)</title><rect x="1375.8" y="901" width="0.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1378.76" y="911.5" ></text>
+</g>
+<g >
+<title>inet_recvmsg (10,101,010 samples, 0.03%)</title><rect x="1372.3" y="725" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1375.31" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (30,303,030 samples, 0.09%)</title><rect x="32.9" y="197" width="1.3" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="35.86" y="207.5" ></text>
+</g>
+<g >
+<title>__do_sys_brk (20,202,020 samples, 0.06%)</title><rect x="1047.0" y="789" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1050.05" y="799.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="100.6" y="789" width="0.4" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="103.59" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="572.1" y="709" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="575.09" y="719.5" ></text>
+</g>
+<g >
+<title>mb_find_order_for_block (10,101,010 samples, 0.03%)</title><rect x="54.0" y="725" width="0.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="57.00" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="251.1" y="789" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="254.14" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (30,303,030 samples, 0.09%)</title><rect x="215.8" y="773" width="1.3" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="218.77" y="783.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="181.3" y="517" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="184.26" y="527.5" ></text>
+</g>
+<g >
+<title>__block_commit_write.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="225.3" y="597" width="0.4" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="228.26" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (101,010,100 samples, 0.31%)</title><rect x="114.0" y="693" width="4.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="116.96" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="406.4" y="693" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="409.44" y="703.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_uncharge_skmem (10,101,010 samples, 0.03%)</title><rect x="1009.9" y="629" width="0.5" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1012.95" y="639.5" ></text>
+</g>
+<g >
+<title>__d_lookup (10,101,010 samples, 0.03%)</title><rect x="118.7" y="597" width="0.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="121.71" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="301.6" y="709" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="304.62" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_desc (10,101,010 samples, 0.03%)</title><rect x="179.1" y="581" width="0.4" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="182.10" y="591.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="516.0" y="453" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="519.01" y="463.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="362.9" y="533" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="365.87" y="543.5" ></text>
+</g>
+<g >
+<title>bpf_ringbuf_submit (80,808,080 samples, 0.25%)</title><rect x="1029.4" y="709" width="3.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1032.36" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="170.0" y="693" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="173.04" y="703.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="89.4" y="1029" width="0.4" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="92.37" y="1039.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.06%)</title><rect x="600.1" y="725" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="603.13" y="735.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct (10,101,010 samples, 0.03%)</title><rect x="231.3" y="549" width="0.4" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="234.30" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (40,404,040 samples, 0.13%)</title><rect x="504.8" y="677" width="1.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="507.80" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="397.0" y="645" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="399.95" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_io_submit (20,202,020 samples, 0.06%)</title><rect x="433.6" y="549" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="436.62" y="559.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.03%)</title><rect x="598.8" y="581" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="601.84" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="85.9" y="789" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="88.92" y="799.5" ></text>
+</g>
+<g >
+<title>end_bio_bh_io_sync (10,101,010 samples, 0.03%)</title><rect x="487.1" y="293" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="490.11" y="303.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (333,333,330 samples, 1.03%)</title><rect x="287.4" y="693" width="14.2" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="290.38" y="703.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.06%)</title><rect x="359.0" y="661" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="361.99" y="671.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.03%)</title><rect x="235.6" y="613" width="0.4" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="238.61" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="401.7" y="597" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="404.70" y="607.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="473.3" y="645" width="1.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="476.31" y="655.5" ></text>
+</g>
+<g >
+<title>git_signature_default (30,303,030 samples, 0.09%)</title><rect x="403.4" y="789" width="1.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="406.42" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="439.7" y="805" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="442.66" y="815.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="170.0" y="741" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="173.04" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="181.3" y="565" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="184.26" y="575.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.03%)</title><rect x="626.9" y="629" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="629.88" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_write (50,505,050 samples, 0.16%)</title><rect x="530.3" y="741" width="2.1" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="533.25" y="751.5" ></text>
+</g>
+<g >
+<title>pthread_rwlock_unlock (10,101,010 samples, 0.03%)</title><rect x="363.7" y="757" width="0.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="366.74" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="394.4" y="661" width="0.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="397.36" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="406.4" y="725" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="409.44" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="563.5" y="581" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="566.47" y="591.5" ></text>
+</g>
+<g >
+<title>log_entry_start (40,404,040 samples, 0.13%)</title><rect x="729.5" y="933" width="1.8" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="732.55" y="943.5" ></text>
+</g>
+<g >
+<title>syscall_trace_enter.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="1388.7" y="885" width="0.4" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1391.71" y="895.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (10,101,010 samples, 0.03%)</title><rect x="1037.1" y="741" width="0.5" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1040.13" y="751.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="335.3" y="517" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="338.26" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.28%)</title><rect x="202.8" y="805" width="3.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="205.83" y="815.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="440.5" y="565" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="443.52" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="456.1" y="645" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="459.05" y="655.5" ></text>
+</g>
+<g >
+<title>libjson_to_string_internal (6,101,010,040 samples, 18.88%)</title><rect x="743.4" y="917" width="260.5" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="746.35" y="927.5" >libjson_to_string_internal</text>
+</g>
+<g >
+<title>tcp_ack (20,202,020 samples, 0.06%)</title><rect x="1009.9" y="693" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1012.95" y="703.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="584.2" y="501" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="587.17" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="414.6" y="661" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="417.64" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (191,919,190 samples, 0.59%)</title><rect x="551.4" y="773" width="8.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="554.39" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_write (50,505,050 samples, 0.16%)</title><rect x="257.2" y="709" width="2.1" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="260.18" y="719.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (80,808,080 samples, 0.25%)</title><rect x="1006.5" y="645" width="3.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1009.50" y="655.5" ></text>
+</g>
+<g >
+<title>json_object_put (212,121,210 samples, 0.66%)</title><rect x="732.1" y="933" width="9.1" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="735.14" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="233.9" y="645" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="236.89" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="552.3" y="709" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="555.25" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (232,323,230 samples, 0.72%)</title><rect x="503.5" y="789" width="9.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="506.50" y="799.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="358.6" y="485" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="361.56" y="495.5" ></text>
+</g>
+<g >
+<title>up_read (10,101,010 samples, 0.03%)</title><rect x="1365.8" y="837" width="0.5" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="1368.84" y="847.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="405" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1027.19" y="415.5" ></text>
+</g>
+<g >
+<title>__do_softirq (70,707,070 samples, 0.22%)</title><rect x="11.3" y="549" width="3.0" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="14.29" y="559.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (20,202,020 samples, 0.06%)</title><rect x="271.0" y="581" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="273.99" y="591.5" ></text>
+</g>
+<g >
+<title>io_schedule (10,101,010 samples, 0.03%)</title><rect x="224.8" y="453" width="0.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="227.83" y="463.5" ></text>
+</g>
+<g >
+<title>submit_bio (10,101,010 samples, 0.03%)</title><rect x="231.3" y="565" width="0.4" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="234.30" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="573.8" y="677" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="576.82" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="616.5" y="853" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="619.53" y="863.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="610.5" y="629" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="613.49" y="639.5" ></text>
+</g>
+<g >
+<title>do_softirq (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="533" width="1.3" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1377.47" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="255.9" y="757" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="258.89" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="246.8" y="741" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="249.83" y="751.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="554.0" y="581" width="0.4" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="556.98" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (30,303,030 samples, 0.09%)</title><rect x="449.6" y="773" width="1.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="452.58" y="783.5" ></text>
+</g>
+<g >
+<title>block_write_end (10,101,010 samples, 0.03%)</title><rect x="335.3" y="565" width="0.4" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="338.26" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="403.4" y="741" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="406.42" y="751.5" ></text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.03%)</title><rect x="175.7" y="629" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="178.65" y="639.5" ></text>
+</g>
+<g >
+<title>dx_probe (10,101,010 samples, 0.03%)</title><rect x="629.9" y="741" width="0.4" height="15.0" fill="rgb(0,201,46)" rx="2" ry="2" />
+<text x="632.90" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="569.9" y="645" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="572.94" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (40,404,040 samples, 0.13%)</title><rect x="128.2" y="677" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="131.20" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.03%)</title><rect x="550.5" y="629" width="0.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="553.53" y="639.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (10,101,010 samples, 0.03%)</title><rect x="1317.5" y="869" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1320.53" y="879.5" ></text>
+</g>
+<g >
+<title>git_repository_config_snapshot (131,313,130 samples, 0.41%)</title><rect x="452.6" y="821" width="5.6" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="455.60" y="831.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (10,101,010 samples, 0.03%)</title><rect x="494.4" y="837" width="0.5" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="497.45" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="245.1" y="773" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="248.10" y="783.5" ></text>
+</g>
+<g >
+<title>release_pages (20,202,020 samples, 0.06%)</title><rect x="994.4" y="645" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="997.42" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (20,202,020 samples, 0.06%)</title><rect x="205.8" y="709" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="208.85" y="719.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (20,202,020 samples, 0.06%)</title><rect x="547.5" y="549" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="550.51" y="559.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.03%)</title><rect x="327.9" y="837" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="330.93" y="847.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="548.8" y="613" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="551.80" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (60,606,060 samples, 0.19%)</title><rect x="318.4" y="709" width="2.6" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="321.44" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.06%)</title><rect x="564.8" y="597" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="567.76" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.09%)</title><rect x="120.0" y="741" width="1.3" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="123.00" y="751.5" ></text>
+</g>
+<g >
+<title>ihold (10,101,010 samples, 0.03%)</title><rect x="529.4" y="725" width="0.4" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="532.39" y="735.5" ></text>
+</g>
+<g >
+<title>write (40,404,040 samples, 0.13%)</title><rect x="271.0" y="805" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="273.99" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.03%)</title><rect x="499.6" y="693" width="0.5" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="502.62" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="491.4" y="741" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="494.43" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="489.7" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="492.70" y="687.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="71.7" y="837" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="74.69" y="847.5" ></text>
+</g>
+<g >
+<title>__close (50,505,050 samples, 0.16%)</title><rect x="27.7" y="901" width="2.1" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="30.69" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="110.9" y="741" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="113.94" y="751.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="236.5" y="645" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="239.48" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="414.2" y="613" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="417.21" y="623.5" ></text>
+</g>
+<g >
+<title>rmqueue (10,101,010 samples, 0.03%)</title><rect x="1018.1" y="677" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1021.15" y="687.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="159.7" y="725" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="162.69" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.09%)</title><rect x="174.8" y="645" width="1.3" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="177.79" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (323,232,320 samples, 1.00%)</title><rect x="173.5" y="757" width="13.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="176.49" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.06%)</title><rect x="238.6" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="241.63" y="655.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (10,101,010 samples, 0.03%)</title><rect x="155.8" y="661" width="0.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="158.81" y="671.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (20,202,020 samples, 0.06%)</title><rect x="1011.2" y="389" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1014.24" y="399.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="620.4" y="805" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="623.41" y="815.5" ></text>
+</g>
+<g >
+<title>__init_rwsem (10,101,010 samples, 0.03%)</title><rect x="50.6" y="837" width="0.4" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="53.55" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="540.6" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="543.60" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="287.8" y="565" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="290.81" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.03%)</title><rect x="200.2" y="629" width="0.5" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="203.24" y="639.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="230.0" y="517" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="233.01" y="527.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.03%)</title><rect x="472.4" y="517" width="0.5" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="475.44" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (262,626,260 samples, 0.81%)</title><rect x="354.2" y="805" width="11.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="357.25" y="815.5" ></text>
+</g>
+<g >
+<title>scsi_dispatch_cmd (10,101,010 samples, 0.03%)</title><rect x="466.0" y="389" width="0.4" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="468.97" y="399.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="661" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1031.50" y="671.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.03%)</title><rect x="88.5" y="933" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="91.51" y="943.5" ></text>
+</g>
+<g >
+<title>pmd_install (10,101,010 samples, 0.03%)</title><rect x="641.1" y="677" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="644.12" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (10,101,010 samples, 0.03%)</title><rect x="447.0" y="645" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="449.99" y="655.5" ></text>
+</g>
+<g >
+<title>mb_find_extent (10,101,010 samples, 0.03%)</title><rect x="54.0" y="741" width="0.4" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="57.00" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="614.4" y="645" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="617.37" y="655.5" ></text>
+</g>
+<g >
+<title>do_rmdir (70,707,070 samples, 0.22%)</title><rect x="198.5" y="757" width="3.0" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="201.52" y="767.5" ></text>
+</g>
+<g >
+<title>wake_up_bit (10,101,010 samples, 0.03%)</title><rect x="1316.7" y="661" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1319.66" y="671.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (111,111,110 samples, 0.34%)</title><rect x="31.6" y="453" width="4.7" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="34.57" y="463.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (10,101,010 samples, 0.03%)</title><rect x="511.3" y="437" width="0.4" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="514.27" y="447.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (60,606,060 samples, 0.19%)</title><rect x="1020.7" y="597" width="2.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1023.73" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (414,141,410 samples, 1.28%)</title><rect x="102.3" y="773" width="17.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="105.32" y="783.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="1317.5" y="805" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1320.53" y="815.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="217.1" y="677" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="220.06" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="393.9" y="677" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="396.93" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.22%)</title><rect x="220.1" y="789" width="3.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="223.08" y="799.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="342.6" y="533" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="345.60" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (50,505,050 samples, 0.16%)</title><rect x="530.3" y="725" width="2.1" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="533.25" y="735.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (20,202,020 samples, 0.06%)</title><rect x="1034.5" y="485" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1037.54" y="495.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.03%)</title><rect x="457.8" y="581" width="0.4" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="460.78" y="591.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="569.9" y="629" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="572.94" y="639.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="962.9" y="693" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="965.93" y="703.5" ></text>
+</g>
+<g >
+<title>unlock_buffer (10,101,010 samples, 0.03%)</title><rect x="71.7" y="597" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="74.69" y="607.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="114.4" y="549" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="117.40" y="559.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="105.8" y="517" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="108.77" y="527.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (50,505,050 samples, 0.16%)</title><rect x="322.8" y="677" width="2.1" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="325.75" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.06%)</title><rect x="565.6" y="501" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="568.62" y="511.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (30,303,030 samples, 0.09%)</title><rect x="565.6" y="597" width="1.3" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="568.62" y="607.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="277.9" y="693" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="280.89" y="703.5" ></text>
+</g>
+<g >
+<title>copyin (40,404,040 samples, 0.13%)</title><rect x="1019.0" y="725" width="1.7" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1022.01" y="735.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="227.4" y="565" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="230.42" y="575.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="428.4" y="693" width="0.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="431.44" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (40,404,040 samples, 0.13%)</title><rect x="360.3" y="645" width="1.7" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="363.28" y="655.5" ></text>
+</g>
+<g >
+<title>blk_cgroup_congested (10,101,010 samples, 0.03%)</title><rect x="989.7" y="677" width="0.4" height="15.0" fill="rgb(0,235,192)" rx="2" ry="2" />
+<text x="992.67" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="482.8" y="453" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="485.80" y="463.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (30,303,030 samples, 0.09%)</title><rect x="215.8" y="837" width="1.3" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="218.77" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="519.9" y="613" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="522.90" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.03%)</title><rect x="626.9" y="773" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="629.88" y="783.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="598.0" y="757" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="600.98" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.03%)</title><rect x="459.9" y="613" width="0.5" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="462.93" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="242.5" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="245.52" y="751.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.03%)</title><rect x="1376.6" y="773" width="0.5" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1379.63" y="783.5" ></text>
+</g>
+<g >
+<title>folio_create_empty_buffers (20,202,020 samples, 0.06%)</title><rect x="530.7" y="629" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="533.68" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="591.1" y="789" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="594.08" y="799.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="551.8" y="741" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="554.82" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.06%)</title><rect x="79.5" y="805" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="82.45" y="815.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.03%)</title><rect x="549.2" y="421" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="552.23" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.03%)</title><rect x="210.6" y="613" width="0.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="213.59" y="623.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="421.5" y="581" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="424.54" y="591.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (111,111,110 samples, 0.34%)</title><rect x="1357.6" y="725" width="4.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1360.65" y="735.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="999.6" y="533" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1002.60" y="543.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (10,101,010 samples, 0.03%)</title><rect x="1327.4" y="757" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1330.45" y="767.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="319.3" y="565" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="322.30" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="476.3" y="581" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="479.33" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="725" width="1.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1377.47" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.09%)</title><rect x="194.6" y="645" width="1.3" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="197.63" y="655.5" ></text>
+</g>
+<g >
+<title>from_kgid (10,101,010 samples, 0.03%)</title><rect x="106.2" y="485" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="109.20" y="495.5" ></text>
+</g>
+<g >
+<title>mas_expected_entries (10,101,010 samples, 0.03%)</title><rect x="651.0" y="741" width="0.5" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="654.04" y="751.5" ></text>
+</g>
+<g >
+<title>access_error (10,101,010 samples, 0.03%)</title><rect x="1318.8" y="885" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1321.82" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.06%)</title><rect x="540.6" y="677" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="543.60" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="596.7" y="725" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="599.68" y="735.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (60,606,060 samples, 0.19%)</title><rect x="1007.4" y="405" width="2.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1010.36" y="415.5" ></text>
+</g>
+<g >
+<title>__rmqueue_pcplist (10,101,010 samples, 0.03%)</title><rect x="1018.1" y="661" width="0.5" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1021.15" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="172.2" y="677" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="175.20" y="687.5" ></text>
+</g>
+<g >
+<title>file_exists (20,202,020 samples, 0.06%)</title><rect x="727.8" y="933" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="730.82" y="943.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (20,202,020 samples, 0.06%)</title><rect x="556.1" y="693" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="559.13" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.09%)</title><rect x="605.3" y="773" width="1.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="608.31" y="783.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (20,202,020 samples, 0.06%)</title><rect x="1034.5" y="453" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1037.54" y="463.5" ></text>
+</g>
+<g >
+<title>irqentry_exit_to_user_mode (20,202,020 samples, 0.06%)</title><rect x="1318.0" y="853" width="0.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1320.96" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="80.3" y="805" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="83.32" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="48.8" y="949" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="51.82" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.03%)</title><rect x="463.4" y="677" width="0.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="466.39" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="383.6" y="741" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="386.58" y="751.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="500.9" y="677" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="503.92" y="687.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.1.0] (898,989,890 samples, 2.78%)</title><rect x="1329.2" y="901" width="38.4" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1332.17" y="911.5" >[li..</text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="377.1" y="613" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="380.11" y="623.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="547.1" y="421" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="550.07" y="431.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="390.1" y="629" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="393.05" y="639.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.03%)</title><rect x="158.4" y="469" width="0.4" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="161.40" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="441.8" y="805" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="444.82" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="268.8" y="725" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="271.83" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.03%)</title><rect x="269.3" y="709" width="0.4" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="272.26" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="607.5" y="805" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="610.47" y="815.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (20,202,020 samples, 0.06%)</title><rect x="432.3" y="661" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="435.33" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (20,202,020 samples, 0.06%)</title><rect x="508.7" y="549" width="0.8" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="511.68" y="559.5" ></text>
+</g>
+<g >
+<title>list_lru_del (10,101,010 samples, 0.03%)</title><rect x="155.8" y="597" width="0.4" height="15.0" fill="rgb(0,216,113)" rx="2" ry="2" />
+<text x="158.81" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="378.0" y="677" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="380.97" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="460.8" y="773" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="463.80" y="783.5" ></text>
+</g>
+<g >
+<title>git_oid_is_zero (10,101,010 samples, 0.03%)</title><rect x="368.5" y="773" width="0.4" height="15.0" fill="rgb(0,207,75)" rx="2" ry="2" />
+<text x="371.48" y="783.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (30,303,030 samples, 0.09%)</title><rect x="1315.8" y="885" width="1.3" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1318.80" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="567.8" y="629" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="570.78" y="639.5" ></text>
+</g>
+<g >
+<title>alloc_fd (10,101,010 samples, 0.03%)</title><rect x="41.5" y="805" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="44.49" y="815.5" ></text>
+</g>
+<g >
+<title>__fput (50,505,050 samples, 0.16%)</title><rect x="27.7" y="773" width="2.1" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="30.69" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_create (50,505,050 samples, 0.16%)</title><rect x="253.3" y="693" width="2.2" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="256.30" y="703.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (60,606,060 samples, 0.19%)</title><rect x="1020.7" y="677" width="2.6" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1023.73" y="687.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="596.3" y="709" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="599.25" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (20,202,020 samples, 0.06%)</title><rect x="114.4" y="629" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="117.40" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="450.4" y="645" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="453.44" y="655.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="527.2" y="693" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="530.23" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (40,404,040 samples, 0.13%)</title><rect x="190.8" y="629" width="1.7" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="193.75" y="639.5" ></text>
+</g>
+<g >
+<title>ip_build_and_send_pkt (20,202,020 samples, 0.06%)</title><rect x="1387.4" y="325" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="1390.41" y="335.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.03%)</title><rect x="603.6" y="501" width="0.4" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="606.59" y="511.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.06%)</title><rect x="1375.8" y="869" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1378.76" y="879.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="422.4" y="645" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="425.40" y="655.5" ></text>
+</g>
+<g >
+<title>__napi_poll (50,505,050 samples, 0.16%)</title><rect x="1377.5" y="437" width="2.1" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1380.49" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_create (10,101,010 samples, 0.03%)</title><rect x="359.4" y="581" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="362.42" y="591.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (10,101,010 samples, 0.03%)</title><rect x="433.2" y="469" width="0.4" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="436.19" y="479.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="417.7" y="821" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="420.66" y="831.5" ></text>
+</g>
+<g >
+<title>path_openat (171,717,170 samples, 0.53%)</title><rect x="517.3" y="725" width="7.3" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="520.31" y="735.5" ></text>
+</g>
+<g >
+<title>dd_bio_merge (10,101,010 samples, 0.03%)</title><rect x="466.4" y="437" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="469.41" y="447.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (20,202,020 samples, 0.06%)</title><rect x="638.5" y="709" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="641.53" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_append (50,505,050 samples, 0.16%)</title><rect x="630.3" y="757" width="2.2" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="633.33" y="767.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.03%)</title><rect x="547.9" y="213" width="0.5" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="550.94" y="223.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="534.6" y="677" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="537.56" y="687.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.06%)</title><rect x="230.0" y="661" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="233.01" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="255.9" y="805" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="258.89" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (181,818,180 samples, 0.56%)</title><rect x="188.6" y="757" width="7.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="191.59" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.09%)</title><rect x="378.8" y="597" width="1.3" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="381.83" y="607.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="20.4" y="885" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="23.35" y="895.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1031.50" y="687.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="604.9" y="629" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="607.88" y="639.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (20,202,020 samples, 0.06%)</title><rect x="1375.8" y="885" width="0.8" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="1378.76" y="895.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="624.3" y="645" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="627.29" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_desc (10,101,010 samples, 0.03%)</title><rect x="584.6" y="581" width="0.4" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="587.60" y="591.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="423.7" y="677" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="426.70" y="687.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="206.7" y="805" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="209.71" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.16%)</title><rect x="257.2" y="773" width="2.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="260.18" y="783.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range (60,606,060 samples, 0.19%)</title><rect x="24.2" y="853" width="2.6" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="27.24" y="863.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="277.9" y="485" width="0.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="280.89" y="495.5" ></text>
+</g>
+<g >
+<title>tcp_push_one (20,202,020 samples, 0.06%)</title><rect x="1024.2" y="757" width="0.8" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="1027.19" y="767.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="516.0" y="469" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="519.01" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.06%)</title><rect x="222.2" y="661" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="225.24" y="671.5" ></text>
+</g>
+<g >
+<title>generic_write_end (10,101,010 samples, 0.03%)</title><rect x="361.6" y="581" width="0.4" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="364.58" y="591.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="572.1" y="693" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="575.09" y="703.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (20,202,020 samples, 0.06%)</title><rect x="1318.0" y="821" width="0.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1320.96" y="831.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="588.1" y="789" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="591.06" y="799.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (20,202,020 samples, 0.06%)</title><rect x="1048.3" y="821" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1051.34" y="831.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="453" width="0.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1027.19" y="463.5" ></text>
+</g>
+<g >
+<title>dput (40,404,040 samples, 0.13%)</title><rect x="464.2" y="725" width="1.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="467.25" y="735.5" ></text>
+</g>
+<g >
+<title>rmqueue (10,101,010 samples, 0.03%)</title><rect x="409.5" y="501" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="412.46" y="511.5" ></text>
+</g>
+<g >
+<title>__folio_batch_release (10,101,010 samples, 0.03%)</title><rect x="108.4" y="565" width="0.4" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="111.36" y="575.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="1367.1" y="821" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1370.14" y="831.5" ></text>
+</g>
+<g >
+<title>json_tokener_parse_verbose (30,303,030 samples, 0.09%)</title><rect x="1371.0" y="869" width="1.3" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="1374.02" y="879.5" ></text>
+</g>
+<g >
+<title>wait_for_child (20,202,020 samples, 0.06%)</title><rect x="727.0" y="901" width="0.8" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="729.96" y="911.5" ></text>
+</g>
+<g >
+<title>__memcg_kmem_charge_page (10,101,010 samples, 0.03%)</title><rect x="639.8" y="661" width="0.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="642.82" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="199.4" y="597" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="202.38" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.03%)</title><rect x="51.8" y="789" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="54.84" y="799.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="728.7" y="789" width="0.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="731.69" y="799.5" ></text>
+</g>
+<g >
+<title>git_reference_create (585,858,580 samples, 1.81%)</title><rect x="469.0" y="837" width="25.0" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="471.99" y="847.5" >g..</text>
+</g>
+<g >
+<title>ext4_map_blocks (60,606,060 samples, 0.19%)</title><rect x="478.1" y="533" width="2.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="481.05" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (202,020,200 samples, 0.63%)</title><rect x="732.6" y="869" width="8.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="735.57" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_find_extent (10,101,010 samples, 0.03%)</title><rect x="506.1" y="501" width="0.4" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="509.09" y="511.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="997.0" y="677" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1000.01" y="687.5" ></text>
+</g>
+<g >
+<title>__do_softirq (30,303,030 samples, 0.09%)</title><rect x="1315.8" y="837" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1318.80" y="847.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="251.1" y="741" width="0.5" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="254.14" y="751.5" ></text>
+</g>
+<g >
+<title>ci_prepare_git_repo (9,737,373,640 samples, 30.13%)</title><rect x="217.1" y="949" width="415.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="220.06" y="959.5" >ci_prepare_git_repo</text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="590.6" y="709" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="593.64" y="719.5" ></text>
+</g>
+<g >
+<title>out_of_line_wait_on_bit (10,101,010 samples, 0.03%)</title><rect x="484.1" y="421" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="487.09" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="484.1" y="517" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="487.09" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="279.6" y="709" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="282.62" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="281.3" y="789" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="284.34" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="385.7" y="597" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="388.74" y="607.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (50,505,050 samples, 0.16%)</title><rect x="1033.7" y="773" width="2.1" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1036.68" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="224.0" y="757" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="226.97" y="767.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="609.2" y="661" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="612.19" y="671.5" ></text>
+</g>
+<g >
+<title>free_pages_and_swap_cache (121,212,120 samples, 0.38%)</title><rect x="733.4" y="677" width="5.2" height="15.0" fill="rgb(0,207,75)" rx="2" ry="2" />
+<text x="736.43" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_write (60,606,060 samples, 0.19%)</title><rect x="44.5" y="789" width="2.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="47.51" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="546.2" y="469" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="549.21" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (30,303,030 samples, 0.09%)</title><rect x="292.6" y="661" width="1.3" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="295.56" y="671.5" ></text>
+</g>
+<g >
+<title>git_odb_hash (10,101,010 samples, 0.03%)</title><rect x="353.8" y="805" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="356.81" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="331.4" y="741" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="334.38" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="467.3" y="581" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="470.27" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="457.8" y="629" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="460.78" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.03%)</title><rect x="459.9" y="645" width="0.5" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="462.93" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_append (70,707,070 samples, 0.22%)</title><rect x="478.1" y="581" width="3.0" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="481.05" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="560.4" y="725" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="563.45" y="735.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="244.7" y="709" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="247.67" y="719.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (10,101,010 samples, 0.03%)</title><rect x="509.5" y="565" width="0.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="512.54" y="575.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.03%)</title><rect x="560.9" y="661" width="0.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="563.88" y="671.5" ></text>
+</g>
+<g >
+<title>process_backlog (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="485" width="0.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1027.19" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_mb_collect_stats (10,101,010 samples, 0.03%)</title><rect x="299.0" y="533" width="0.5" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="302.03" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="217.1" y="869" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="220.06" y="879.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (20,202,020 samples, 0.06%)</title><rect x="1380.5" y="773" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1383.51" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="364.2" y="645" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="367.17" y="655.5" ></text>
+</g>
+<g >
+<title>___d_drop (10,101,010 samples, 0.03%)</title><rect x="211.9" y="709" width="0.4" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="214.89" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (181,818,180 samples, 0.56%)</title><rect x="601.9" y="869" width="7.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="604.86" y="879.5" ></text>
+</g>
+<g >
+<title>zero_user_segments (10,101,010 samples, 0.03%)</title><rect x="224.4" y="613" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="227.40" y="623.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.03%)</title><rect x="475.0" y="629" width="0.5" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="478.03" y="639.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.03%)</title><rect x="428.4" y="757" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="431.44" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="390.9" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="393.91" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (40,404,040 samples, 0.13%)</title><rect x="627.3" y="773" width="1.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="630.31" y="783.5" ></text>
+</g>
+<g >
+<title>do_brk_flags (20,202,020 samples, 0.06%)</title><rect x="1047.0" y="773" width="0.9" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="1050.05" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (20,202,020 samples, 0.06%)</title><rect x="83.3" y="757" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="86.34" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="383.1" y="757" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="386.15" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="540.6" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="543.60" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.03%)</title><rect x="487.5" y="501" width="0.5" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="490.54" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="373.2" y="693" width="0.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="376.23" y="703.5" ></text>
+</g>
+<g >
+<title>do_softirq (60,606,060 samples, 0.19%)</title><rect x="1020.7" y="533" width="2.6" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1023.73" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="550.1" y="453" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="553.09" y="463.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.03%)</title><rect x="319.3" y="629" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="322.30" y="639.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (10,101,010 samples, 0.03%)</title><rect x="42.4" y="949" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="45.35" y="959.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="450.4" y="661" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="453.44" y="671.5" ></text>
+</g>
+<g >
+<title>mutex_lock (10,101,010 samples, 0.03%)</title><rect x="565.6" y="453" width="0.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="568.62" y="463.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="449.1" y="501" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="452.15" y="511.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="233.9" y="565" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="236.89" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.09%)</title><rect x="143.3" y="629" width="1.3" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="146.30" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="334.0" y="517" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="336.97" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="386.6" y="725" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="389.60" y="735.5" ></text>
+</g>
+<g >
+<title>blk_stat_add (10,101,010 samples, 0.03%)</title><rect x="277.9" y="405" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="280.89" y="415.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (60,606,060 samples, 0.19%)</title><rect x="1020.7" y="613" width="2.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1023.73" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="246.8" y="725" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="249.83" y="735.5" ></text>
+</g>
+<g >
+<title>folio_wait_writeback (10,101,010 samples, 0.03%)</title><rect x="547.5" y="517" width="0.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="550.51" y="527.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (20,202,020 samples, 0.06%)</title><rect x="1011.2" y="405" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1014.24" y="415.5" ></text>
+</g>
+<g >
+<title>page_remove_rmap (40,404,040 samples, 0.13%)</title><rect x="739.5" y="629" width="1.7" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="742.47" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_accept4 (80,808,080 samples, 0.25%)</title><rect x="38.5" y="853" width="3.4" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="41.47" y="863.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (20,202,020 samples, 0.06%)</title><rect x="1028.5" y="533" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1031.50" y="543.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (10,101,010 samples, 0.03%)</title><rect x="1024.2" y="293" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1027.19" y="303.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (60,606,060 samples, 0.19%)</title><rect x="553.1" y="693" width="2.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="556.11" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (161,616,160 samples, 0.50%)</title><rect x="29.8" y="853" width="6.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="32.84" y="863.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="395.2" y="725" width="0.5" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="398.23" y="735.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.03%)</title><rect x="614.8" y="613" width="0.4" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="617.80" y="623.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (30,303,030 samples, 0.09%)</title><rect x="369.3" y="773" width="1.3" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="372.34" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_mstamp_refresh (10,101,010 samples, 0.03%)</title><rect x="1011.7" y="325" width="0.4" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="1014.68" y="335.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (40,404,040 samples, 0.13%)</title><rect x="32.4" y="213" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="35.43" y="223.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="546.6" y="421" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="549.64" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.03%)</title><rect x="503.1" y="597" width="0.4" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="506.07" y="607.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="584.2" y="261" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="587.17" y="271.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.06%)</title><rect x="258.0" y="597" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="261.05" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="100.2" y="837" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="103.16" y="847.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (282,828,280 samples, 0.88%)</title><rect x="989.2" y="725" width="12.1" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="992.24" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="414.2" y="629" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="417.21" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="590.2" y="709" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="593.21" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags (40,404,040 samples, 0.13%)</title><rect x="302.9" y="693" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="305.91" y="703.5" ></text>
+</g>
+<g >
+<title>uncharge_batch (40,404,040 samples, 0.13%)</title><rect x="674.3" y="725" width="1.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="677.33" y="735.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.03%)</title><rect x="521.6" y="581" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="524.62" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_write (40,404,040 samples, 0.13%)</title><rect x="224.0" y="709" width="1.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="226.97" y="719.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="335.7" y="757" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="338.70" y="767.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="663.5" y="757" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="666.55" y="767.5" ></text>
+</g>
+<g >
+<title>__set_cpus_allowed_ptr (10,101,010 samples, 0.03%)</title><rect x="20.4" y="901" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="23.35" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_fname_setup_filename (10,101,010 samples, 0.03%)</title><rect x="567.3" y="629" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="570.35" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_nonda_switch (10,101,010 samples, 0.03%)</title><rect x="428.4" y="613" width="0.5" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="431.44" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (777,777,770 samples, 2.41%)</title><rect x="632.9" y="853" width="33.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="635.92" y="863.5" >do..</text>
+</g>
+<g >
+<title>json_object_object_add_ex (10,101,010 samples, 0.03%)</title><rect x="1370.2" y="885" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1373.16" y="895.5" ></text>
+</g>
+<g >
+<title>mas_walk (10,101,010 samples, 0.03%)</title><rect x="1365.4" y="805" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1368.41" y="815.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="789" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1030.64" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (20,202,020 samples, 0.06%)</title><rect x="546.6" y="469" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="549.64" y="479.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="386.2" y="709" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="389.17" y="719.5" ></text>
+</g>
+<g >
+<title>folio_memcg_lock (10,101,010 samples, 0.03%)</title><rect x="410.8" y="549" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="413.76" y="559.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (70,707,070 samples, 0.22%)</title><rect x="247.7" y="789" width="3.0" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="250.69" y="799.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="257.2" y="549" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="260.18" y="559.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="444.8" y="741" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="447.84" y="751.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="319.3" y="597" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="322.30" y="607.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="572.1" y="565" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="575.09" y="575.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (30,303,030 samples, 0.09%)</title><rect x="1011.2" y="629" width="1.3" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1014.24" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.25%)</title><rect x="259.8" y="757" width="3.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="262.77" y="767.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (80,808,080 samples, 0.25%)</title><rect x="43.6" y="885" width="3.5" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="46.65" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="234.8" y="805" width="2.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="237.75" y="815.5" ></text>
+</g>
+<g >
+<title>log_entry_start (30,303,030 samples, 0.09%)</title><rect x="15.6" y="997" width="1.3" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="18.61" y="1007.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="429.7" y="613" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="432.74" y="623.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="133.4" y="645" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="136.38" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="601.9" y="709" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="604.86" y="719.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="589.3" y="661" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="592.35" y="671.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="184.7" y="405" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="187.71" y="415.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (555,555,550 samples, 1.72%)</title><rect x="102.3" y="789" width="23.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="105.32" y="799.5" >[..</text>
+</g>
+<g >
+<title>list_lru_del (10,101,010 samples, 0.03%)</title><rect x="200.7" y="661" width="0.4" height="15.0" fill="rgb(0,216,113)" rx="2" ry="2" />
+<text x="203.67" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="731.3" y="901" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="734.28" y="911.5" ></text>
+</g>
+<g >
+<title>__fdget_pos (10,101,010 samples, 0.03%)</title><rect x="669.6" y="805" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="672.59" y="815.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="352.1" y="757" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="355.09" y="767.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="575.1" y="597" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="578.11" y="607.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="661" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1373.59" y="671.5" ></text>
+</g>
+<g >
+<title>sysvec_reschedule_ipi (40,404,040 samples, 0.13%)</title><rect x="964.2" y="805" width="1.7" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="967.22" y="815.5" ></text>
+</g>
+<g >
+<title>fib_table_lookup (10,101,010 samples, 0.03%)</title><rect x="1033.2" y="773" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1036.24" y="783.5" ></text>
+</g>
+<g >
+<title>__tcp_close (20,202,020 samples, 0.06%)</title><rect x="1026.8" y="725" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1029.77" y="735.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="740.8" y="597" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="743.77" y="607.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="263.7" y="645" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="266.65" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="223.5" y="773" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="226.54" y="783.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.03%)</title><rect x="320.2" y="661" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="323.17" y="671.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="605.3" y="661" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="608.31" y="671.5" ></text>
+</g>
+<g >
+<title>git_branch_upstream_remote (20,202,020 samples, 0.06%)</title><rect x="468.1" y="837" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="471.13" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.41%)</title><rect x="533.7" y="821" width="5.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="536.70" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="159.7" y="789" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="162.69" y="799.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (40,404,040 samples, 0.13%)</title><rect x="1034.1" y="661" width="1.7" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1037.11" y="671.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="422.4" y="661" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="425.40" y="671.5" ></text>
+</g>
+<g >
+<title>copy_page_from_iter (10,101,010 samples, 0.03%)</title><rect x="213.6" y="741" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="216.61" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="114.4" y="613" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="117.40" y="623.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="300.8" y="485" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="303.75" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="38.0" y="869" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="41.04" y="879.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (10,101,010 samples, 0.03%)</title><rect x="118.7" y="645" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="121.71" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (121,212,120 samples, 0.38%)</title><rect x="31.1" y="613" width="5.2" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="34.14" y="623.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (101,010,100 samples, 0.31%)</title><rect x="42.8" y="949" width="4.3" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="45.79" y="959.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="1370.6" y="709" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1373.59" y="719.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.03%)</title><rect x="506.1" y="485" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="509.09" y="495.5" ></text>
+</g>
+<g >
+<title>new_inode (30,303,030 samples, 0.09%)</title><rect x="50.6" y="869" width="1.2" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="53.55" y="879.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="244.7" y="693" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="247.67" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="354.7" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="357.68" y="735.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.03%)</title><rect x="588.9" y="677" width="0.4" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="591.92" y="687.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.06%)</title><rect x="540.6" y="725" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="543.60" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.09%)</title><rect x="106.6" y="581" width="1.3" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="109.63" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="279.6" y="741" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="282.62" y="751.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="182.6" y="469" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="185.55" y="479.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="169.6" y="629" width="0.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="172.61" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="497.9" y="517" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="500.90" y="527.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.03%)</title><rect x="277.9" y="629" width="0.4" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="280.89" y="639.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="488.4" y="629" width="0.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="491.41" y="639.5" ></text>
+</g>
+<g >
+<title>read (20,202,020 samples, 0.06%)</title><rect x="503.9" y="725" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="506.94" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="423.7" y="693" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="426.70" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="397.4" y="629" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="400.38" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_es_remove_extent (10,101,010 samples, 0.03%)</title><rect x="117.0" y="549" width="0.4" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="119.98" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="568.2" y="565" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="571.21" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="377.1" y="725" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="380.11" y="735.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (10,101,010 samples, 0.03%)</title><rect x="490.1" y="581" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="493.13" y="591.5" ></text>
+</g>
+<g >
+<title>_find_next_zero_bit (10,101,010 samples, 0.03%)</title><rect x="296.9" y="533" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="299.87" y="543.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (40,404,040 samples, 0.13%)</title><rect x="563.0" y="645" width="1.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="566.04" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_clone3 (121,212,120 samples, 0.38%)</title><rect x="17.3" y="997" width="5.2" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="20.33" y="1007.5" ></text>
+</g>
+<g >
+<title>jsonrpc_notification_create (10,101,010 samples, 0.03%)</title><rect x="1389.6" y="949" width="0.4" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1392.57" y="959.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="389.2" y="629" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="392.19" y="639.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (70,707,070 samples, 0.22%)</title><rect x="134.7" y="677" width="3.0" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="137.67" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (161,616,160 samples, 0.50%)</title><rect x="1382.2" y="933" width="6.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1385.24" y="943.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (10,101,010 samples, 0.03%)</title><rect x="300.8" y="341" width="0.4" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="303.75" y="351.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="401.7" y="629" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="404.70" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (171,717,170 samples, 0.53%)</title><rect x="1037.6" y="933" width="7.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1040.56" y="943.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.03%)</title><rect x="593.7" y="789" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="596.66" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (40,404,040 samples, 0.13%)</title><rect x="375.4" y="645" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="378.38" y="655.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="422.0" y="773" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="424.97" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="491.9" y="629" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="494.86" y="639.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="615.2" y="661" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="618.23" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="202.4" y="805" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="205.40" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (30,303,030 samples, 0.09%)</title><rect x="485.8" y="629" width="1.3" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="488.82" y="639.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="116.6" y="437" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="119.55" y="447.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="206.3" y="693" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="209.28" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_invalidate_folio (10,101,010 samples, 0.03%)</title><rect x="547.9" y="501" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="550.94" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.09%)</title><rect x="607.9" y="629" width="1.3" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="610.90" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="98.0" y="837" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="101.00" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="231.7" y="453" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="234.73" y="463.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="93.7" y="789" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="96.69" y="799.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="379.7" y="565" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="382.70" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="611.4" y="693" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="614.35" y="703.5" ></text>
+</g>
+<g >
+<title>resolve_normal_ct (10,101,010 samples, 0.03%)</title><rect x="1387.4" y="245" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1390.41" y="255.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (90,909,090 samples, 0.28%)</title><rect x="424.1" y="725" width="3.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="427.13" y="735.5" ></text>
+</g>
+<g >
+<title>alloc_pages (10,101,010 samples, 0.03%)</title><rect x="1367.1" y="693" width="0.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1370.14" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="269.3" y="725" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="272.26" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.03%)</title><rect x="244.2" y="597" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="247.24" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.06%)</title><rect x="540.6" y="613" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="543.60" y="623.5" ></text>
+</g>
+<g >
+<title>schedule (60,606,060 samples, 0.19%)</title><rect x="24.2" y="821" width="2.6" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="27.24" y="831.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (10,101,010 samples, 0.03%)</title><rect x="1024.6" y="565" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1027.62" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_stream_alloc_skb (40,404,040 samples, 0.13%)</title><rect x="1025.0" y="757" width="1.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1028.05" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (10,101,010 samples, 0.03%)</title><rect x="576.8" y="677" width="0.5" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="579.84" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="255.0" y="629" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="258.03" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (333,333,330 samples, 1.03%)</title><rect x="378.4" y="821" width="14.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="381.40" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="457.8" y="693" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="460.78" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.03%)</title><rect x="463.4" y="629" width="0.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="466.39" y="639.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="102.3" y="613" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="105.32" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="249.4" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="252.42" y="671.5" ></text>
+</g>
+<g >
+<title>do_readlinkat (20,202,020 samples, 0.06%)</title><rect x="450.0" y="693" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="453.01" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="1037.1" y="773" width="0.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1040.13" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="386.6" y="693" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="389.60" y="703.5" ></text>
+</g>
+<g >
+<title>lock_mm_and_find_vma (30,303,030 samples, 0.09%)</title><rect x="691.6" y="677" width="1.3" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="694.59" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (50,505,050 samples, 0.16%)</title><rect x="545.3" y="565" width="2.2" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="548.35" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.03%)</title><rect x="473.7" y="533" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="476.74" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="411.6" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="414.62" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.16%)</title><rect x="607.5" y="757" width="2.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="610.47" y="767.5" ></text>
+</g>
+<g >
+<title>__tcp_ack_snd_check (10,101,010 samples, 0.03%)</title><rect x="1021.6" y="309" width="0.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1024.60" y="319.5" ></text>
+</g>
+<g >
+<title>evict (70,707,070 samples, 0.22%)</title><rect x="424.6" y="629" width="3.0" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="427.56" y="639.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.03%)</title><rect x="549.2" y="405" width="0.5" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="552.23" y="415.5" ></text>
+</g>
+<g >
+<title>destroy_inode (10,101,010 samples, 0.03%)</title><rect x="162.3" y="661" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="165.28" y="671.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (30,303,030 samples, 0.09%)</title><rect x="369.3" y="789" width="1.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="372.34" y="799.5" ></text>
+</g>
+<g >
+<title>filemap_release_folio (10,101,010 samples, 0.03%)</title><rect x="343.5" y="501" width="0.4" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="346.46" y="511.5" ></text>
+</g>
+<g >
+<title>wake_up_bit (10,101,010 samples, 0.03%)</title><rect x="81.6" y="821" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="84.61" y="831.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="607.9" y="581" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="610.90" y="591.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="1327.9" y="805" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1330.88" y="815.5" ></text>
+</g>
+<g >
+<title>realpath (20,202,020 samples, 0.06%)</title><rect x="245.5" y="789" width="0.9" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="248.54" y="799.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="490.1" y="597" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="493.13" y="607.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="231.7" y="389" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="234.73" y="399.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="437.1" y="821" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="440.07" y="831.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="472.4" y="549" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="475.44" y="559.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.03%)</title><rect x="186.9" y="613" width="0.4" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="189.87" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="490.6" y="517" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="493.56" y="527.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="446.1" y="549" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="449.13" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="227.4" y="597" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="230.42" y="607.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="274.4" y="757" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="277.44" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="614.4" y="709" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="617.37" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="730.4" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="733.41" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.03%)</title><rect x="509.1" y="517" width="0.4" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="512.11" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="588.9" y="789" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="591.92" y="799.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (111,111,110 samples, 0.34%)</title><rect x="31.6" y="501" width="4.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="34.57" y="511.5" ></text>
+</g>
+<g >
+<title>hook_file_alloc_security (10,101,010 samples, 0.03%)</title><rect x="58.7" y="869" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="61.75" y="879.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="489.3" y="613" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="492.27" y="623.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (80,808,080 samples, 0.25%)</title><rect x="1006.5" y="661" width="3.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1009.50" y="671.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="1366.3" y="821" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1369.27" y="831.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (10,101,010 samples, 0.03%)</title><rect x="491.9" y="549" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="494.86" y="559.5" ></text>
+</g>
+<g >
+<title>cimple-worker (31,444,444,130 samples, 97.31%)</title><rect x="47.1" y="1077" width="1342.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="50.10" y="1087.5" >cimple-worker</text>
+</g>
+<g >
+<title>ext4_remove_blocks (20,202,020 samples, 0.06%)</title><rect x="340.4" y="517" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="343.44" y="527.5" ></text>
+</g>
+<g >
+<title>build_open_flags (10,101,010 samples, 0.03%)</title><rect x="389.6" y="597" width="0.5" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="392.62" y="607.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.03%)</title><rect x="459.5" y="645" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="462.50" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="196.8" y="757" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="199.79" y="767.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="249.4" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="252.42" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (60,606,060 samples, 0.19%)</title><rect x="510.0" y="549" width="2.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="512.97" y="559.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="458.6" y="773" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="461.64" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="245.5" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="248.54" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="601.0" y="677" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="604.00" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="591.5" y="805" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="594.51" y="815.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="618.7" y="613" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="621.68" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (10,101,010 samples, 0.03%)</title><rect x="412.5" y="709" width="0.4" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="415.48" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (60,606,060 samples, 0.19%)</title><rect x="183.8" y="549" width="2.6" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="186.85" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.03%)</title><rect x="364.2" y="629" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="367.17" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (131,313,130 samples, 0.41%)</title><rect x="533.7" y="789" width="5.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="536.70" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (80,808,080 samples, 0.25%)</title><rect x="151.9" y="565" width="3.5" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="154.93" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mb_complex_scan_group (10,101,010 samples, 0.03%)</title><rect x="584.2" y="597" width="0.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="587.17" y="607.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_grab_journal_head (10,101,010 samples, 0.03%)</title><rect x="547.9" y="421" width="0.5" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="550.94" y="431.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (101,010,100 samples, 0.31%)</title><rect x="1013.4" y="677" width="4.3" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1016.40" y="687.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.03%)</title><rect x="1363.3" y="629" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1366.25" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="508.7" y="501" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="511.68" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="580.7" y="693" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="583.72" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="212.8" y="789" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="215.75" y="799.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.06%)</title><rect x="350.4" y="741" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="353.36" y="751.5" ></text>
+</g>
+<g >
+<title>git_odb_read_header (50,505,050 samples, 0.16%)</title><rect x="268.0" y="821" width="2.1" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="270.97" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="554.8" y="533" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="557.84" y="543.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.09%)</title><rect x="484.5" y="613" width="1.3" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="487.52" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (70,707,070 samples, 0.22%)</title><rect x="183.4" y="581" width="3.0" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="186.42" y="591.5" ></text>
+</g>
+<g >
+<title>do_softirq (70,707,070 samples, 0.22%)</title><rect x="11.3" y="565" width="3.0" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="14.29" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (40,404,040 samples, 0.13%)</title><rect x="1021.2" y="357" width="1.7" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1024.17" y="367.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg (10,101,010 samples, 0.03%)</title><rect x="1372.3" y="709" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1375.31" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="264.5" y="677" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="267.52" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_push (101,010,100 samples, 0.31%)</title><rect x="10.9" y="789" width="4.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="13.86" y="799.5" ></text>
+</g>
+<g >
+<title>inode_init_always (20,202,020 samples, 0.06%)</title><rect x="38.9" y="757" width="0.9" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="41.90" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.03%)</title><rect x="396.1" y="581" width="0.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="399.09" y="591.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (30,303,030 samples, 0.09%)</title><rect x="1047.9" y="869" width="1.3" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1050.91" y="879.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (20,202,020 samples, 0.06%)</title><rect x="1316.2" y="757" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1319.23" y="767.5" ></text>
+</g>
+<g >
+<title>ip_rcv (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="405" width="1.3" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1385.67" y="415.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="446.6" y="597" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="449.56" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (121,212,120 samples, 0.38%)</title><rect x="431.5" y="741" width="5.1" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="434.46" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_create_access (20,202,020 samples, 0.06%)</title><rect x="582.4" y="661" width="0.9" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="585.45" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="52.7" y="741" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="55.71" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="620.0" y="821" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="622.98" y="831.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct_nocheck (10,101,010 samples, 0.03%)</title><rect x="466.4" y="517" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="469.41" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (353,535,350 samples, 1.09%)</title><rect x="469.4" y="725" width="15.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="472.42" y="735.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="422.8" y="789" width="0.5" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="425.84" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="42.4" y="917" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="45.35" y="927.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="462.5" y="693" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="465.52" y="703.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="631.2" y="565" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="634.19" y="575.5" ></text>
+</g>
+<g >
+<title>sock_alloc (20,202,020 samples, 0.06%)</title><rect x="38.9" y="805" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="41.90" y="815.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="487.1" y="469" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="490.11" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (40,404,040 samples, 0.13%)</title><rect x="231.3" y="597" width="1.7" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="234.30" y="607.5" ></text>
+</g>
+<g >
+<title>folio_alloc_buffers (10,101,010 samples, 0.03%)</title><rect x="486.2" y="517" width="0.5" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="489.25" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.06%)</title><rect x="478.9" y="453" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="481.92" y="463.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (131,313,130 samples, 0.41%)</title><rect x="1039.3" y="917" width="5.6" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1042.28" y="927.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="623.4" y="693" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="626.43" y="703.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="411.2" y="645" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="414.19" y="655.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (60,606,060 samples, 0.19%)</title><rect x="1377.5" y="517" width="2.6" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1380.49" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="1036.7" y="901" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1039.70" y="911.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="383.1" y="773" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="386.15" y="783.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="173.1" y="757" width="0.4" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="176.06" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.06%)</title><rect x="515.6" y="645" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="518.58" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="411.2" y="693" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="414.19" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.03%)</title><rect x="495.3" y="613" width="0.4" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="498.31" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="591.5" y="709" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="594.51" y="719.5" ></text>
+</g>
+<g >
+<title>_IO_default_xsputn (10,101,010 samples, 0.03%)</title><rect x="470.3" y="645" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="473.29" y="655.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.06%)</title><rect x="160.6" y="677" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="163.55" y="687.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="547.9" y="389" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="550.94" y="399.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.41%)</title><rect x="609.6" y="789" width="5.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="612.62" y="799.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.03%)</title><rect x="1367.1" y="757" width="0.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1370.14" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.03%)</title><rect x="210.6" y="661" width="0.4" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="213.59" y="671.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="266.7" y="645" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="269.67" y="655.5" ></text>
+</g>
+<g >
+<title>rmqueue (10,101,010 samples, 0.03%)</title><rect x="396.1" y="469" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="399.09" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="462.1" y="789" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="465.09" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="399.5" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="402.54" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="500.1" y="773" width="1.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="503.05" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (111,111,110 samples, 0.34%)</title><rect x="308.1" y="741" width="4.7" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="311.09" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="539.3" y="693" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="542.31" y="703.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="726.5" y="805" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="729.53" y="815.5" ></text>
+</g>
+<g >
+<title>mas_store_gfp (10,101,010 samples, 0.03%)</title><rect x="733.0" y="725" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="736.00" y="735.5" ></text>
+</g>
+<g >
+<title>____fput (70,707,070 samples, 0.22%)</title><rect x="1377.1" y="821" width="3.0" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1380.06" y="831.5" ></text>
+</g>
+<g >
+<title>perf_event_init_task (10,101,010 samples, 0.03%)</title><rect x="22.1" y="949" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="25.08" y="959.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.47%)</title><rect x="461.7" y="821" width="6.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="464.66" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.28%)</title><rect x="424.1" y="773" width="3.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="427.13" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="38.0" y="853" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="41.04" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="516.0" y="581" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="519.01" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="406.9" y="677" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="409.87" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="450.9" y="725" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="453.88" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="440.1" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="443.09" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="475.5" y="597" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="478.46" y="607.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (20,202,020 samples, 0.06%)</title><rect x="1048.3" y="805" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1051.34" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.31%)</title><rect x="106.6" y="693" width="4.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="109.63" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="225.7" y="789" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="228.69" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (181,818,180 samples, 0.56%)</title><rect x="1028.1" y="933" width="7.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1031.07" y="943.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="415.9" y="837" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="418.93" y="847.5" ></text>
+</g>
+<g >
+<title>libgit_checkout (1,555,555,540 samples, 4.81%)</title><rect x="217.1" y="933" width="66.4" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="220.06" y="943.5" >libgit_..</text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="287.8" y="645" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="290.81" y="655.5" ></text>
+</g>
+<g >
+<title>init_file (40,404,040 samples, 0.13%)</title><rect x="58.7" y="885" width="1.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="61.75" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="199.8" y="613" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="202.81" y="623.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="336.1" y="613" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="339.13" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="403.4" y="693" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="406.42" y="703.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (50,505,050 samples, 0.16%)</title><rect x="1007.4" y="357" width="2.1" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1010.36" y="367.5" ></text>
+</g>
+<g >
+<title>vmbus_sendpacket_mpb_desc (10,101,010 samples, 0.03%)</title><rect x="466.0" y="341" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="468.97" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.06%)</title><rect x="564.8" y="581" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="567.76" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="330.5" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="333.52" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="501.3" y="773" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="504.35" y="783.5" ></text>
+</g>
+<g >
+<title>d_walk (20,202,020 samples, 0.06%)</title><rect x="186.4" y="677" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="189.44" y="687.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (30,303,030 samples, 0.09%)</title><rect x="224.4" y="661" width="1.3" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="227.40" y="671.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.06%)</title><rect x="1375.8" y="805" width="0.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1378.76" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="167.9" y="629" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="170.89" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="367.6" y="709" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="370.62" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="591.1" y="821" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="594.08" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (40,404,040 samples, 0.13%)</title><rect x="420.2" y="661" width="1.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="423.25" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="462.5" y="757" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="465.52" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="585.5" y="661" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="588.47" y="671.5" ></text>
+</g>
+<g >
+<title>fault_in_readable (10,101,010 samples, 0.03%)</title><rect x="222.7" y="613" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="225.67" y="623.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="561.7" y="661" width="0.5" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="564.74" y="671.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.03%)</title><rect x="1362.4" y="725" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1365.39" y="735.5" ></text>
+</g>
+<g >
+<title>__napi_poll (30,303,030 samples, 0.09%)</title><rect x="1034.5" y="565" width="1.3" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1037.54" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="332.7" y="693" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="335.68" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="522.9" y="613" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="525.92" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.09%)</title><rect x="182.1" y="549" width="1.3" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="185.12" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="460.8" y="741" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="463.80" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="167.0" y="645" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="170.02" y="655.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="589.8" y="661" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="592.78" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.03%)</title><rect x="509.1" y="501" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="512.11" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.13%)</title><rect x="381.9" y="789" width="1.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="384.85" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.06%)</title><rect x="390.9" y="597" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="393.91" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (838,383,830 samples, 2.59%)</title><rect x="496.6" y="837" width="35.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="499.60" y="847.5" >[li..</text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="414.6" y="581" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="417.64" y="591.5" ></text>
+</g>
+<g >
+<title>folio_mark_accessed (10,101,010 samples, 0.03%)</title><rect x="297.7" y="501" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="300.73" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (242,424,240 samples, 0.75%)</title><rect x="540.6" y="805" width="10.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="543.60" y="815.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="318.9" y="581" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="321.87" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="283.1" y="773" width="0.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="286.07" y="783.5" ></text>
+</g>
+<g >
+<title>d_alloc (40,404,040 samples, 0.13%)</title><rect x="535.4" y="645" width="1.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="538.43" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="381.9" y="757" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="384.85" y="767.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.03%)</title><rect x="113.5" y="661" width="0.5" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="116.53" y="671.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.03%)</title><rect x="396.1" y="485" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="399.09" y="495.5" ></text>
+</g>
+<g >
+<title>__blk_mq_free_request (10,101,010 samples, 0.03%)</title><rect x="613.1" y="389" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="616.08" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (20,202,020 samples, 0.06%)</title><rect x="117.4" y="533" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="120.41" y="543.5" ></text>
+</g>
+<g >
+<title>git_config_get_string (10,101,010 samples, 0.03%)</title><rect x="368.9" y="789" width="0.4" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="371.91" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_check_dir_entry (10,101,010 samples, 0.03%)</title><rect x="130.8" y="629" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="133.79" y="639.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.03%)</title><rect x="55.7" y="837" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="58.73" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="727.8" y="869" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="730.82" y="879.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.03%)</title><rect x="525.1" y="677" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="528.07" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="187.7" y="757" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="190.73" y="767.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="332.2" y="597" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="335.24" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (101,010,100 samples, 0.31%)</title><rect x="343.9" y="549" width="4.3" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="346.89" y="559.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="255.9" y="789" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="258.89" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_ack (10,101,010 samples, 0.03%)</title><rect x="1022.0" y="309" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1025.03" y="319.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.19%)</title><rect x="217.1" y="837" width="2.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="220.06" y="847.5" ></text>
+</g>
+<g >
+<title>syscall_trace_enter.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="246.0" y="709" width="0.4" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="248.97" y="719.5" ></text>
+</g>
+<g >
+<title>__snprintf (10,101,010 samples, 0.03%)</title><rect x="15.6" y="965" width="0.4" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="18.61" y="975.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="588.5" y="789" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="591.49" y="799.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="278.3" y="645" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="281.32" y="655.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="458.6" y="709" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="461.64" y="719.5" ></text>
+</g>
+<g >
+<title>pthread_mutex_lock (10,101,010 samples, 0.03%)</title><rect x="380.6" y="725" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="383.56" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_bread (141,414,140 samples, 0.44%)</title><rect x="294.3" y="629" width="6.0" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="297.28" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="482.8" y="485" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="485.80" y="495.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.06%)</title><rect x="337.4" y="709" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="340.42" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (171,717,170 samples, 0.53%)</title><rect x="543.6" y="709" width="7.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="546.62" y="719.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (50,505,050 samples, 0.16%)</title><rect x="44.5" y="741" width="2.2" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="47.51" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="100.2" y="821" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="103.16" y="831.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="255.9" y="853" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="258.89" y="863.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="269.3" y="645" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="272.26" y="655.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="562.2" y="693" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="565.17" y="703.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="1367.1" y="805" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1370.14" y="815.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="443.1" y="629" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="446.11" y="639.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="357.7" y="485" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="360.70" y="495.5" ></text>
+</g>
+<g >
+<title>__brelse (10,101,010 samples, 0.03%)</title><rect x="519.0" y="661" width="0.5" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="522.03" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="610.9" y="661" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="613.92" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="541.0" y="533" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="544.03" y="543.5" ></text>
+</g>
+<g >
+<title>iterate_dir (30,303,030 samples, 0.09%)</title><rect x="171.8" y="741" width="1.3" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="174.77" y="751.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.03%)</title><rect x="489.7" y="581" width="0.4" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="492.70" y="591.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.09%)</title><rect x="315.0" y="725" width="1.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="317.99" y="735.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (20,202,020 samples, 0.06%)</title><rect x="963.4" y="741" width="0.8" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="966.36" y="751.5" ></text>
+</g>
+<g >
+<title>unlink_cb (30,303,030 samples, 0.09%)</title><rect x="105.3" y="725" width="1.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="108.34" y="735.5" ></text>
+</g>
+<g >
+<title>realpath (20,202,020 samples, 0.06%)</title><rect x="615.7" y="837" width="0.8" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="618.66" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="414.2" y="645" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="417.21" y="655.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="100.6" y="821" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="103.59" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="618.7" y="677" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="621.68" y="687.5" ></text>
+</g>
+<g >
+<title>gettid (10,101,010 samples, 0.03%)</title><rect x="214.0" y="885" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="217.05" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.06%)</title><rect x="585.0" y="693" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="588.04" y="703.5" ></text>
+</g>
+<g >
+<title>__folio_alloc (10,101,010 samples, 0.03%)</title><rect x="1048.8" y="757" width="0.4" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1051.77" y="767.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (20,202,020 samples, 0.06%)</title><rect x="230.0" y="693" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="233.01" y="703.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.06%)</title><rect x="236.0" y="725" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="239.05" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="730.4" y="805" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="733.41" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="279.6" y="725" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="282.62" y="735.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="223.1" y="709" width="0.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="226.10" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="532.0" y="629" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="534.98" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (333,333,330 samples, 1.03%)</title><rect x="173.5" y="773" width="14.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="176.49" y="783.5" ></text>
+</g>
+<g >
+<title>ci_cleanup_git_repo (2,848,484,820 samples, 8.82%)</title><rect x="95.4" y="949" width="121.7" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="98.41" y="959.5" >ci_cleanup_git_..</text>
+</g>
+<g >
+<title>__folio_batch_release (10,101,010 samples, 0.03%)</title><rect x="108.8" y="549" width="0.4" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="111.79" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.06%)</title><rect x="370.6" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="373.64" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.06%)</title><rect x="300.3" y="629" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="303.32" y="639.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.03%)</title><rect x="518.2" y="661" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="521.17" y="671.5" ></text>
+</g>
+<g >
+<title>__inet_stream_connect (181,818,180 samples, 0.56%)</title><rect x="1028.1" y="837" width="7.7" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1031.07" y="847.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (10,101,010 samples, 0.03%)</title><rect x="334.8" y="549" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="337.83" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (20,202,020 samples, 0.06%)</title><rect x="426.3" y="549" width="0.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="429.29" y="559.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.06%)</title><rect x="727.8" y="773" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="730.82" y="783.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="962.9" y="709" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="965.93" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="142.0" y="597" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="145.00" y="607.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (80,808,080 samples, 0.25%)</title><rect x="1006.5" y="581" width="3.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1009.50" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="540.6" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="543.60" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.16%)</title><rect x="524.6" y="789" width="2.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="527.64" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="626.9" y="677" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="629.88" y="687.5" ></text>
+</g>
+<g >
+<title>syscall_trace_enter.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="228.7" y="645" width="0.4" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="231.71" y="655.5" ></text>
+</g>
+<g >
+<title>git_filter_list_stream_data (70,707,070 samples, 0.22%)</title><rect x="256.8" y="837" width="3.0" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="259.75" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="270.1" y="853" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="273.13" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.22%)</title><rect x="503.5" y="741" width="3.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="506.50" y="751.5" ></text>
+</g>
+<g >
+<title>net_connect (222,222,220 samples, 0.69%)</title><rect x="1380.1" y="965" width="9.5" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1383.08" y="975.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="730.4" y="885" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="733.41" y="895.5" ></text>
+</g>
+<g >
+<title>__rseq_handle_notify_resume (10,101,010 samples, 0.03%)</title><rect x="27.3" y="805" width="0.4" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="30.26" y="815.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="612.6" y="645" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="615.64" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (30,303,030 samples, 0.09%)</title><rect x="152.8" y="485" width="1.3" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="155.79" y="495.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="395.7" y="693" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="398.66" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="615.2" y="773" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="618.23" y="783.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="173.5" y="645" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="176.49" y="655.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="300.8" y="581" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="303.75" y="591.5" ></text>
+</g>
+<g >
+<title>inode_init_always (10,101,010 samples, 0.03%)</title><rect x="393.9" y="501" width="0.5" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="396.93" y="511.5" ></text>
+</g>
+<g >
+<title>tcp_done (10,101,010 samples, 0.03%)</title><rect x="1379.2" y="213" width="0.4" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1382.22" y="223.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="327.9" y="757" width="0.5" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="330.93" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_init_acl (10,101,010 samples, 0.03%)</title><rect x="290.8" y="645" width="0.5" height="15.0" fill="rgb(0,227,159)" rx="2" ry="2" />
+<text x="293.83" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="103.2" y="629" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="106.18" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="468.1" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="471.13" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="230.0" y="581" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="233.01" y="591.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="158.4" y="565" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="161.40" y="575.5" ></text>
+</g>
+<g >
+<title>folio_batch_move_lru (10,101,010 samples, 0.03%)</title><rect x="1322.7" y="773" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1325.70" y="783.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.03%)</title><rect x="1033.7" y="709" width="0.4" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1036.68" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="629.0" y="709" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="632.04" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.03%)</title><rect x="528.5" y="677" width="0.5" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="531.52" y="687.5" ></text>
+</g>
+<g >
+<title>thread_group_cputime (10,101,010 samples, 0.03%)</title><rect x="727.4" y="725" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="730.39" y="735.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="281.3" y="581" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="284.34" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_send_fin (70,707,070 samples, 0.22%)</title><rect x="1377.1" y="709" width="3.0" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1380.06" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="197.2" y="805" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="200.22" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (40,404,040 samples, 0.13%)</title><rect x="190.8" y="581" width="1.7" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="193.75" y="591.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="158.4" y="517" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="161.40" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (60,606,060 samples, 0.19%)</title><rect x="1373.2" y="837" width="2.6" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1376.18" y="847.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="613.1" y="613" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="616.08" y="623.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="114.0" y="629" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="116.96" y="639.5" ></text>
+</g>
+<g >
+<title>server_main_thread (171,717,170 samples, 0.53%)</title><rect x="10.0" y="1029" width="7.3" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="13.00" y="1039.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.03%)</title><rect x="367.6" y="661" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="370.62" y="671.5" ></text>
+</g>
+<g >
+<title>folio_mark_accessed (10,101,010 samples, 0.03%)</title><rect x="139.8" y="581" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="142.85" y="591.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="299.5" y="549" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="302.46" y="559.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (50,505,050 samples, 0.16%)</title><rect x="530.3" y="693" width="2.1" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="533.25" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="1026.8" y="901" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1029.77" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="359.0" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="361.99" y="703.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="456.1" y="613" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="459.05" y="623.5" ></text>
+</g>
+<g >
+<title>apparmor_task_alloc (10,101,010 samples, 0.03%)</title><rect x="19.9" y="949" width="0.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="22.92" y="959.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="1374.0" y="757" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1377.04" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_link (30,303,030 samples, 0.09%)</title><rect x="311.1" y="693" width="1.3" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="314.11" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (30,303,030 samples, 0.09%)</title><rect x="357.7" y="549" width="1.3" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="360.70" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="507.4" y="725" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="510.39" y="735.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.03%)</title><rect x="1008.2" y="133" width="0.5" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1011.22" y="143.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="195.9" y="661" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="198.93" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_chmod (30,303,030 samples, 0.09%)</title><rect x="500.1" y="757" width="1.2" height="15.0" fill="rgb(0,237,201)" rx="2" ry="2" />
+<text x="503.05" y="767.5" ></text>
+</g>
+<g >
+<title>_IO_default_xsputn (10,101,010 samples, 0.03%)</title><rect x="452.6" y="709" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="455.60" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_read_inode_bitmap (10,101,010 samples, 0.03%)</title><rect x="576.4" y="709" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="579.41" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.41%)</title><rect x="601.9" y="805" width="5.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="604.86" y="815.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="223.5" y="789" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="226.54" y="799.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (20,202,020 samples, 0.06%)</title><rect x="402.1" y="405" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="405.13" y="415.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="412.1" y="581" width="0.4" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="415.05" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="428.4" y="741" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="431.44" y="751.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.03%)</title><rect x="420.7" y="581" width="0.4" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="423.68" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="491.9" y="645" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="494.86" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="532.8" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="535.84" y="831.5" ></text>
+</g>
+<g >
+<title>inet_ehashfn (10,101,010 samples, 0.03%)</title><rect x="32.0" y="213" width="0.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="35.00" y="223.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (30,303,030 samples, 0.09%)</title><rect x="344.3" y="469" width="1.3" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="347.32" y="479.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="499.6" y="757" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="502.62" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="443.1" y="597" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="446.11" y="607.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.03%)</title><rect x="327.9" y="741" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="330.93" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.06%)</title><rect x="119.1" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="122.14" y="671.5" ></text>
+</g>
+<g >
+<title>__socket (40,404,040 samples, 0.13%)</title><rect x="1380.5" y="949" width="1.7" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1383.51" y="959.5" ></text>
+</g>
+<g >
+<title>inode_free_by_rcu (10,101,010 samples, 0.03%)</title><rect x="1327.4" y="789" width="0.5" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1330.45" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="352.1" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="355.09" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.06%)</title><rect x="443.5" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="446.54" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (161,616,160 samples, 0.50%)</title><rect x="475.0" y="693" width="6.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="478.03" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="356.8" y="597" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="359.83" y="607.5" ></text>
+</g>
+<g >
+<title>git_reference_foreach_name (111,111,110 samples, 0.34%)</title><rect x="444.8" y="821" width="4.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="447.84" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (111,111,110 samples, 0.34%)</title><rect x="343.9" y="565" width="4.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="346.89" y="575.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (20,202,020 samples, 0.06%)</title><rect x="556.1" y="725" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="559.13" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.06%)</title><rect x="213.2" y="805" width="0.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="216.18" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="591.5" y="757" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="594.51" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="492.3" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="495.29" y="671.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="1317.1" y="853" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1320.10" y="863.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (10,101,010 samples, 0.03%)</title><rect x="466.0" y="549" width="0.4" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="468.97" y="559.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (20,202,020 samples, 0.06%)</title><rect x="1374.5" y="389" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1377.47" y="399.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="54.9" y="981" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="57.86" y="991.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (30,303,030 samples, 0.09%)</title><rect x="1374.5" y="677" width="1.3" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1377.47" y="687.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.03%)</title><rect x="127.8" y="629" width="0.4" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="130.77" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_desc (10,101,010 samples, 0.03%)</title><rect x="522.9" y="581" width="0.4" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="525.92" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="596.3" y="741" width="0.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="599.25" y="751.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="427.1" y="485" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="430.15" y="495.5" ></text>
+</g>
+<g >
+<title>ip_local_out (121,212,120 samples, 0.38%)</title><rect x="31.1" y="549" width="5.2" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="34.14" y="559.5" ></text>
+</g>
+<g >
+<title>git_remote_disconnect (10,101,010 samples, 0.03%)</title><rect x="459.1" y="869" width="0.4" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="462.07" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="381.0" y="645" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="383.99" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.09%)</title><rect x="315.0" y="757" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="317.99" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="515.6" y="581" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="518.58" y="591.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="311.5" y="581" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="314.54" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="245.1" y="725" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="248.10" y="735.5" ></text>
+</g>
+<g >
+<title>readlink (20,202,020 samples, 0.06%)</title><rect x="245.5" y="757" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="248.54" y="767.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (50,505,050 samples, 0.16%)</title><rect x="617.0" y="853" width="2.1" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="619.96" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (80,808,080 samples, 0.25%)</title><rect x="510.0" y="661" width="3.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="512.97" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.03%)</title><rect x="414.2" y="581" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="417.21" y="591.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="457.3" y="629" width="0.5" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="460.35" y="639.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (20,202,020 samples, 0.06%)</title><rect x="266.2" y="869" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="269.24" y="879.5" ></text>
+</g>
+<g >
+<title>tcp_filter (10,101,010 samples, 0.03%)</title><rect x="1021.2" y="341" width="0.4" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="1024.17" y="351.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="422.8" y="773" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="425.84" y="783.5" ></text>
+</g>
+<g >
+<title>ip_local_out (30,303,030 samples, 0.09%)</title><rect x="1382.7" y="645" width="1.3" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1385.67" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="564.3" y="453" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="567.33" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="588.5" y="805" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="591.49" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.06%)</title><rect x="266.2" y="837" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="269.24" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="516.0" y="501" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="519.01" y="511.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="223.1" y="789" width="0.4" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="226.10" y="799.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.03%)</title><rect x="271.0" y="565" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="273.99" y="575.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.09%)</title><rect x="588.9" y="725" width="1.3" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="591.92" y="735.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="145.5" y="597" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="148.45" y="607.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.09%)</title><rect x="415.9" y="821" width="1.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="418.93" y="831.5" ></text>
+</g>
+<g >
+<title>__pte_offset_map (10,101,010 samples, 0.03%)</title><rect x="642.8" y="677" width="0.5" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="645.84" y="687.5" ></text>
+</g>
+<g >
+<title>inflateInit2_ (10,101,010 samples, 0.03%)</title><rect x="268.4" y="725" width="0.4" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="271.40" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="461.2" y="725" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="464.23" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="195.5" y="597" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="198.50" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="719.6" y="821" width="0.5" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="722.63" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (131,313,130 samples, 0.41%)</title><rect x="627.3" y="805" width="5.6" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="630.31" y="815.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="158.4" y="661" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="161.40" y="671.5" ></text>
+</g>
+<g >
+<title>net_rx_action (50,505,050 samples, 0.16%)</title><rect x="1377.5" y="453" width="2.1" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1380.49" y="463.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="534.6" y="693" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="537.56" y="703.5" ></text>
+</g>
+<g >
+<title>ip_route_output_key_hash_rcu (10,101,010 samples, 0.03%)</title><rect x="1033.2" y="789" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1036.24" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="398.2" y="581" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="401.25" y="591.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="185.6" y="517" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="188.57" y="527.5" ></text>
+</g>
+<g >
+<title>__submit_bio (10,101,010 samples, 0.03%)</title><rect x="231.3" y="517" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="234.30" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="552.7" y="645" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="555.68" y="655.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="624.3" y="661" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="627.29" y="671.5" ></text>
+</g>
+<g >
+<title>inet_sendmsg (525,252,520 samples, 1.63%)</title><rect x="1004.3" y="805" width="22.5" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1007.34" y="815.5" >i..</text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.06%)</title><rect x="217.9" y="757" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="220.93" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="233.9" y="629" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="236.89" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="588.5" y="821" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="591.49" y="831.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (101,010,100 samples, 0.31%)</title><rect x="230.0" y="757" width="4.3" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="233.01" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="196.8" y="821" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="199.79" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_rename (80,808,080 samples, 0.25%)</title><rect x="230.9" y="741" width="3.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="233.87" y="751.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="621.7" y="725" width="0.4" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="624.70" y="735.5" ></text>
+</g>
+<g >
+<title>unlink_cb (343,434,340 samples, 1.06%)</title><rect x="173.5" y="821" width="14.7" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="176.49" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="581.2" y="629" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="584.15" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (30,303,030 samples, 0.09%)</title><rect x="520.8" y="613" width="1.3" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="523.76" y="623.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="127.8" y="645" width="0.4" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="130.77" y="655.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="602.3" y="725" width="0.4" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="605.29" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="42.8" y="901" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="45.79" y="911.5" ></text>
+</g>
+<g >
+<title>sysvec_reschedule_ipi (20,202,020 samples, 0.06%)</title><rect x="1318.0" y="885" width="0.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="1320.96" y="895.5" ></text>
+</g>
+<g >
+<title>filp_close (10,101,010 samples, 0.03%)</title><rect x="600.1" y="661" width="0.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="603.13" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.03%)</title><rect x="447.0" y="613" width="0.4" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="449.99" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="728.7" y="853" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="731.69" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="235.6" y="517" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="238.61" y="527.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="220.5" y="741" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="223.52" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="276.6" y="693" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="279.60" y="703.5" ></text>
+</g>
+<g >
+<title>blk_mq_submit_bio (10,101,010 samples, 0.03%)</title><rect x="466.4" y="485" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="469.41" y="495.5" ></text>
+</g>
+<g >
+<title>alloc_inode (30,303,030 samples, 0.09%)</title><rect x="50.6" y="853" width="1.2" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="53.55" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (262,626,260 samples, 0.81%)</title><rect x="338.3" y="725" width="11.2" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="341.28" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.06%)</title><rect x="106.6" y="533" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="109.63" y="543.5" ></text>
+</g>
+<g >
+<title>inet_stream_connect (151,515,150 samples, 0.47%)</title><rect x="1382.2" y="853" width="6.5" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1385.24" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.16%)</title><rect x="261.1" y="725" width="2.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="264.07" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (444,444,440 samples, 1.38%)</title><rect x="469.0" y="757" width="19.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="471.99" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.03%)</title><rect x="529.0" y="677" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="531.96" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.03%)</title><rect x="191.6" y="549" width="0.4" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="194.61" y="559.5" ></text>
+</g>
+<g >
+<title>__getpagesize (10,101,010 samples, 0.03%)</title><rect x="37.2" y="869" width="0.4" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="40.18" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (191,919,190 samples, 0.59%)</title><rect x="188.6" y="789" width="8.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="191.59" y="799.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="532.8" y="757" width="0.5" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="535.84" y="767.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="462.1" y="725" width="0.4" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="465.09" y="735.5" ></text>
+</g>
+<g >
+<title>folio_add_new_anon_rmap (10,101,010 samples, 0.03%)</title><rect x="1355.9" y="757" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1358.92" y="767.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="569.5" y="757" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="572.51" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="190.8" y="549" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="193.75" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="315.0" y="773" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="317.99" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (60,606,060 samples, 0.19%)</title><rect x="553.1" y="629" width="2.6" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="556.11" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="49.7" y="853" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="52.69" y="863.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="208.0" y="773" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="211.01" y="783.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="613.5" y="597" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="616.51" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="457.8" y="725" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="460.78" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (70,707,070 samples, 0.22%)</title><rect x="305.1" y="677" width="3.0" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="308.07" y="687.5" ></text>
+</g>
+<g >
+<title>mod_timer (10,101,010 samples, 0.03%)</title><rect x="1023.3" y="661" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="1026.32" y="671.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.03%)</title><rect x="396.1" y="597" width="0.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="399.09" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="411.2" y="677" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="414.19" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.06%)</title><rect x="115.3" y="565" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="118.26" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.28%)</title><rect x="464.2" y="789" width="3.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="467.25" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.09%)</title><rect x="440.1" y="741" width="1.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="443.09" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (151,515,150 samples, 0.47%)</title><rect x="626.4" y="853" width="6.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="629.45" y="863.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="365.0" y="613" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="368.03" y="623.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (70,707,070 samples, 0.22%)</title><rect x="527.2" y="757" width="3.1" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="530.23" y="767.5" ></text>
+</g>
+<g >
+<title>__folio_alloc (10,101,010 samples, 0.03%)</title><rect x="127.8" y="581" width="0.4" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="130.77" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="282.2" y="869" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="285.20" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.06%)</title><rect x="450.0" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="453.01" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.03%)</title><rect x="561.3" y="661" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="564.31" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="288.2" y="597" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="291.24" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (20,202,020 samples, 0.06%)</title><rect x="574.7" y="709" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="577.68" y="719.5" ></text>
+</g>
+<g >
+<title>__poll (80,808,080 samples, 0.25%)</title><rect x="23.4" y="949" width="3.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="26.37" y="959.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (20,202,020 samples, 0.06%)</title><rect x="1024.2" y="581" width="0.8" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1027.19" y="591.5" ></text>
+</g>
+<g >
+<title>git_object_lookup_prefix (141,414,140 samples, 0.44%)</title><rect x="259.8" y="853" width="6.0" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="262.77" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.16%)</title><rect x="497.5" y="773" width="2.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="500.46" y="783.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (40,404,040 samples, 0.13%)</title><rect x="1025.0" y="741" width="1.8" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1028.05" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_rate_skb_delivered (10,101,010 samples, 0.03%)</title><rect x="1004.8" y="677" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1007.77" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (20,202,020 samples, 0.06%)</title><rect x="1387.4" y="405" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1390.41" y="415.5" ></text>
+</g>
+<g >
+<title>git_refdb_open (50,505,050 samples, 0.16%)</title><rect x="607.5" y="837" width="2.1" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="610.47" y="847.5" ></text>
+</g>
+<g >
+<title>copy_page_to_iter (10,101,010 samples, 0.03%)</title><rect x="552.7" y="597" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="555.68" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="729.5" y="901" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="732.55" y="911.5" ></text>
+</g>
+<g >
+<title>iput (101,010,100 samples, 0.31%)</title><rect x="544.1" y="613" width="4.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="547.05" y="623.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.03%)</title><rect x="312.0" y="581" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="314.97" y="591.5" ></text>
+</g>
+<g >
+<title>copy_p4d_range (222,222,220 samples, 0.69%)</title><rect x="639.8" y="725" width="9.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="642.82" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="104.0" y="549" width="0.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="107.04" y="559.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="437.5" y="709" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="440.50" y="719.5" ></text>
+</g>
+<g >
+<title>native_apic_wait_icr_idle (50,505,050 samples, 0.16%)</title><rect x="1030.7" y="645" width="2.1" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="1033.66" y="655.5" ></text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.06%)</title><rect x="432.3" y="645" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="435.33" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="590.2" y="725" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="593.21" y="735.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="726.5" y="837" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="729.53" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="49.7" y="869" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="52.69" y="879.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (20,202,020 samples, 0.06%)</title><rect x="169.2" y="757" width="0.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="172.18" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.03%)</title><rect x="185.6" y="533" width="0.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="188.57" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.03%)</title><rect x="412.9" y="789" width="0.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="415.91" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="462.1" y="709" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="465.09" y="719.5" ></text>
+</g>
+<g >
+<title>scsi_mq_get_budget (10,101,010 samples, 0.03%)</title><rect x="345.2" y="405" width="0.4" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="348.19" y="415.5" ></text>
+</g>
+<g >
+<title>git_reference_normalize_name (10,101,010 samples, 0.03%)</title><rect x="444.4" y="805" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="447.40" y="815.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="353.4" y="677" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="356.38" y="687.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (60,606,060 samples, 0.19%)</title><rect x="408.6" y="629" width="2.6" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="411.60" y="639.5" ></text>
+</g>
+<g >
+<title>storvsc_do_io (10,101,010 samples, 0.03%)</title><rect x="466.0" y="357" width="0.4" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="468.97" y="367.5" ></text>
+</g>
+<g >
+<title>ext4_match.part.0 (10,101,010 samples, 0.03%)</title><rect x="537.6" y="597" width="0.4" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="540.58" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_conn_request (20,202,020 samples, 0.06%)</title><rect x="1387.4" y="357" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1390.41" y="367.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.06%)</title><rect x="442.7" y="693" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="445.68" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="86.4" y="789" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="89.36" y="799.5" ></text>
+</g>
+<g >
+<title>block_write_end (10,101,010 samples, 0.03%)</title><rect x="225.3" y="613" width="0.4" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="228.26" y="623.5" ></text>
+</g>
+<g >
+<title>insert_inode_locked (10,101,010 samples, 0.03%)</title><rect x="359.4" y="549" width="0.5" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="362.42" y="559.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.06%)</title><rect x="459.5" y="693" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="462.50" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.31%)</title><rect x="388.3" y="725" width="4.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="391.32" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.09%)</title><rect x="152.8" y="453" width="1.3" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="155.79" y="463.5" ></text>
+</g>
+<g >
+<title>_start (30,313,131,010 samples, 93.81%)</title><rect x="95.4" y="1061" width="1294.6" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="98.41" y="1071.5" >_start</text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="220.5" y="709" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="223.52" y="719.5" ></text>
+</g>
+<g >
+<title>__block_commit_write.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="258.9" y="597" width="0.4" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="261.91" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (202,020,200 samples, 0.63%)</title><rect x="177.8" y="661" width="8.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="180.81" y="671.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.03%)</title><rect x="40.6" y="725" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="43.63" y="735.5" ></text>
+</g>
+<g >
+<title>generic_update_time (10,101,010 samples, 0.03%)</title><rect x="222.2" y="613" width="0.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="225.24" y="623.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (60,606,060 samples, 0.19%)</title><rect x="32.0" y="261" width="2.6" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="35.00" y="271.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (111,111,110 samples, 0.34%)</title><rect x="551.4" y="757" width="4.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="554.39" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (10,101,010 samples, 0.03%)</title><rect x="1009.1" y="261" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="1012.09" y="271.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="588.9" y="805" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="591.92" y="815.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="377.1" y="597" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="380.11" y="607.5" ></text>
+</g>
+<g >
+<title>free_unref_page_list (10,101,010 samples, 0.03%)</title><rect x="509.5" y="501" width="0.5" height="15.0" fill="rgb(0,206,71)" rx="2" ry="2" />
+<text x="512.54" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="360.3" y="725" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="363.28" y="735.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="390.5" y="501" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="393.48" y="511.5" ></text>
+</g>
+<g >
+<title>__rmqueue_pcplist (10,101,010 samples, 0.03%)</title><rect x="997.9" y="629" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1000.87" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="264.5" y="693" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="267.52" y="703.5" ></text>
+</g>
+<g >
+<title>rseq_get_rseq_cs (10,101,010 samples, 0.03%)</title><rect x="457.3" y="581" width="0.5" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="460.35" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (30,303,030 samples, 0.09%)</title><rect x="50.6" y="885" width="1.2" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="53.55" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="239.9" y="725" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="242.93" y="735.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.03%)</title><rect x="657.1" y="725" width="0.4" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="660.08" y="735.5" ></text>
+</g>
+<g >
+<title>rm_rf (2,696,969,670 samples, 8.35%)</title><rect x="101.9" y="933" width="115.2" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="104.88" y="943.5" >rm_rf</text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.06%)</title><rect x="569.9" y="725" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="572.94" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="332.2" y="645" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="335.24" y="655.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="601.4" y="597" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="604.43" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.22%)</title><rect x="247.7" y="773" width="3.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="250.69" y="783.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="405.6" y="741" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="408.58" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="619.5" y="709" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="622.55" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.09%)</title><rect x="484.5" y="709" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="487.52" y="719.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="100.2" y="805" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="103.16" y="815.5" ></text>
+</g>
+<g >
+<title>open64 (30,303,030 samples, 0.09%)</title><rect x="481.9" y="709" width="1.3" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="484.93" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.06%)</title><rect x="245.5" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="248.54" y="783.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.03%)</title><rect x="514.3" y="677" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="517.29" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="296.0" y="533" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="299.01" y="543.5" ></text>
+</g>
+<g >
+<title>__send (525,252,520 samples, 1.63%)</title><rect x="1004.3" y="885" width="22.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1007.34" y="895.5" >_..</text>
+</g>
+<g >
+<title>_find_next_bit (10,101,010 samples, 0.03%)</title><rect x="53.6" y="757" width="0.4" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="56.57" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (222,222,220 samples, 0.69%)</title><rect x="220.1" y="821" width="9.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="223.08" y="831.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.03%)</title><rect x="161.0" y="661" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="163.98" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="52.7" y="709" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="55.71" y="719.5" ></text>
+</g>
+<g >
+<title>aa_file_perm (10,101,010 samples, 0.03%)</title><rect x="719.2" y="757" width="0.4" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="722.20" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="532.0" y="597" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="534.98" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_check_dir_entry (10,101,010 samples, 0.03%)</title><rect x="578.6" y="677" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="581.57" y="687.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.03%)</title><rect x="1327.9" y="837" width="0.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1330.88" y="847.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="263.7" y="613" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="266.65" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.06%)</title><rect x="106.6" y="549" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="109.63" y="559.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="246.8" y="677" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="249.83" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (40,404,040 samples, 0.13%)</title><rect x="530.3" y="677" width="1.7" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="533.25" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="405.1" y="709" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="408.15" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="356.8" y="581" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="359.83" y="591.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (20,202,020 samples, 0.06%)</title><rect x="1387.4" y="517" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1390.41" y="527.5" ></text>
+</g>
+<g >
+<title>cgroup_post_fork (10,101,010 samples, 0.03%)</title><rect x="20.4" y="949" width="0.4" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="23.35" y="959.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="239.9" y="757" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="242.93" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="110.9" y="709" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="113.94" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_brk (191,919,190 samples, 0.59%)</title><rect x="733.0" y="757" width="8.2" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="736.00" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.09%)</title><rect x="178.2" y="645" width="1.3" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="181.24" y="655.5" ></text>
+</g>
+</g>
+</svg>
diff --git a/flame_graphs/flame_graph_output_simple.svg b/flame_graphs/flame_graph_output_simple.svg
new file mode 100644
index 0000000..3638ceb
--- /dev/null
+++ b/flame_graphs/flame_graph_output_simple.svg
@@ -0,0 +1,31789 @@
+<?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>rcu_core (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="549" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1233.46" y="559.5" ></text>
+</g>
+<g >
+<title>xas_start (10,101,010 samples, 0.07%)</title><rect x="502.1" y="485" width="1.0" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="505.15" y="495.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (10,101,010 samples, 0.07%)</title><rect x="511.2" y="565" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="514.16" y="575.5" ></text>
+</g>
+<g >
+<title>open64 (717,171,710 samples, 4.64%)</title><rect x="99.2" y="997" width="64.0" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="102.24" y="1007.5" >open64</text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (20,202,020 samples, 0.13%)</title><rect x="1162.0" y="597" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1164.95" y="607.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (10,101,010 samples, 0.07%)</title><rect x="1388.2" y="213" width="0.9" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1391.20" y="223.5" ></text>
+</g>
+<g >
+<title>storvsc_on_channel_callback (10,101,010 samples, 0.07%)</title><rect x="1198.0" y="581" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1201.01" y="591.5" ></text>
+</g>
+<g >
+<title>net_send_buf (70,707,070 samples, 0.46%)</title><rect x="14.5" y="949" width="6.3" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="17.51" y="959.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="727.5" y="725" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="730.49" y="735.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="711.3" y="501" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="714.27" y="511.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (30,303,030 samples, 0.20%)</title><rect x="1369.3" y="725" width="2.7" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1372.27" y="735.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (131,313,130 samples, 0.85%)</title><rect x="53.3" y="789" width="11.7" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="56.27" y="799.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="1191.7" y="693" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1194.70" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="977.2" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="980.17" y="815.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1113.3" y="469" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1116.28" y="479.5" ></text>
+</g>
+<g >
+<title>get_unused_fd_flags (10,101,010 samples, 0.07%)</title><rect x="860.9" y="597" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="863.89" y="607.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.07%)</title><rect x="109.2" y="693" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="112.15" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="1250.3" y="709" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1253.29" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="526.5" y="805" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="529.49" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.07%)</title><rect x="803.2" y="645" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="806.21" y="655.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="437" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1221.74" y="447.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="918.6" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="921.58" y="767.5" ></text>
+</g>
+<g >
+<title>inode_permission (20,202,020 samples, 0.13%)</title><rect x="633.7" y="645" width="1.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="636.75" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_open (20,202,020 samples, 0.13%)</title><rect x="446.3" y="661" width="1.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="449.26" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1210.6" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1213.63" y="687.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="151.5" y="677" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="154.52" y="687.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.07%)</title><rect x="235.3" y="629" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="238.34" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="654.5" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="657.48" y="735.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.07%)</title><rect x="805.0" y="757" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="808.01" y="767.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.07%)</title><rect x="807.7" y="517" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="810.71" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="744.6" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="747.62" y="735.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.07%)</title><rect x="676.1" y="437" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="679.11" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (747,474,740 samples, 4.83%)</title><rect x="562.5" y="805" width="66.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="565.54" y="815.5" >[libgit..</text>
+</g>
+<g >
+<title>ext4_clear_inode (10,101,010 samples, 0.07%)</title><rect x="660.8" y="549" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="663.79" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1232.3" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1235.26" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_bread (60,606,060 samples, 0.39%)</title><rect x="944.7" y="549" width="5.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="947.72" y="559.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="828.4" y="741" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="831.45" y="751.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="109.2" y="789" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="112.15" y="799.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.07%)</title><rect x="996.1" y="549" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="999.10" y="559.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.13%)</title><rect x="988.0" y="805" width="1.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="990.99" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.72%)</title><rect x="404.8" y="789" width="9.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="407.80" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="830.2" y="677" width="1.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="833.25" y="687.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (111,111,110 samples, 0.72%)</title><rect x="668.9" y="597" width="9.9" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="671.90" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="764.4" y="661" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="767.45" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mb_complex_scan_group (10,101,010 samples, 0.07%)</title><rect x="593.2" y="517" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="596.19" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="879.8" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="882.82" y="735.5" ></text>
+</g>
+<g >
+<title>lstat64 (10,101,010 samples, 0.07%)</title><rect x="657.2" y="757" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="660.18" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="1249.4" y="725" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1252.39" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.07%)</title><rect x="803.2" y="581" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="806.21" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_faccessat2 (10,101,010 samples, 0.07%)</title><rect x="1175.5" y="741" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1178.47" y="751.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="887.9" y="613" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="890.94" y="623.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.20%)</title><rect x="973.6" y="757" width="2.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="976.57" y="767.5" ></text>
+</g>
+<g >
+<title>run_queue_is_empty (10,101,010 samples, 0.07%)</title><rect x="22.6" y="949" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="25.62" y="959.5" ></text>
+</g>
+<g >
+<title>try_charge_memcg (10,101,010 samples, 0.07%)</title><rect x="803.2" y="469" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="806.21" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="338.1" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="341.10" y="607.5" ></text>
+</g>
+<g >
+<title>event_loop_run (101,010,100 samples, 0.65%)</title><rect x="1358.5" y="949" width="9.0" height="15.0" fill="rgb(0,235,193)" rx="2" ry="2" />
+<text x="1361.45" y="959.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="341.7" y="741" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="344.70" y="751.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="705.9" y="453" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="708.86" y="463.5" ></text>
+</g>
+<g >
+<title>__ext4fs_dirhash (10,101,010 samples, 0.07%)</title><rect x="343.5" y="629" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="346.51" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="923.1" y="677" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="926.09" y="687.5" ></text>
+</g>
+<g >
+<title>filename_lookup (70,707,070 samples, 0.46%)</title><rect x="631.9" y="693" width="6.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="634.95" y="703.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="1200.7" y="661" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1203.71" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (121,212,120 samples, 0.78%)</title><rect x="1326.0" y="837" width="10.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1329.00" y="847.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.07%)</title><rect x="1228.7" y="709" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1231.65" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="1186.3" y="645" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1189.29" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (50,505,050 samples, 0.33%)</title><rect x="1056.5" y="709" width="4.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1059.49" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (20,202,020 samples, 0.13%)</title><rect x="1370.2" y="709" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1373.17" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="1032.2" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1035.16" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (50,505,050 samples, 0.33%)</title><rect x="1106.1" y="709" width="4.5" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="1109.07" y="719.5" ></text>
+</g>
+<g >
+<title>close_fd (10,101,010 samples, 0.07%)</title><rect x="192.1" y="645" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="195.08" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="680.6" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="683.62" y="799.5" ></text>
+</g>
+<g >
+<title>new_inode (10,101,010 samples, 0.07%)</title><rect x="1034.0" y="629" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1036.96" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1195.3" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1198.30" y="783.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.07%)</title><rect x="380.5" y="709" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="383.46" y="719.5" ></text>
+</g>
+<g >
+<title>do_softirq (40,404,040 samples, 0.26%)</title><rect x="1386.4" y="597" width="3.6" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1389.39" y="607.5" ></text>
+</g>
+<g >
+<title>blk_mq_complete_request (10,101,010 samples, 0.07%)</title><rect x="43.4" y="613" width="0.9" height="15.0" fill="rgb(0,195,25)" rx="2" ry="2" />
+<text x="46.35" y="623.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="614.8" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="617.82" y="639.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.07%)</title><rect x="790.6" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="793.59" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (20,202,020 samples, 0.13%)</title><rect x="1116.0" y="549" width="1.8" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="1118.98" y="559.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.07%)</title><rect x="418.3" y="757" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="421.32" y="767.5" ></text>
+</g>
+<g >
+<title>__folio_put (10,101,010 samples, 0.07%)</title><rect x="227.2" y="213" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="230.23" y="223.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.07%)</title><rect x="497.6" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="500.64" y="799.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="869" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1339.82" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="757.2" y="597" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="760.24" y="607.5" ></text>
+</g>
+<g >
+<title>__d_add (10,101,010 samples, 0.07%)</title><rect x="637.4" y="581" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="640.35" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_find_extent (10,101,010 samples, 0.07%)</title><rect x="1098.9" y="501" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="1101.86" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="1192.6" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1195.60" y="703.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (10,101,010 samples, 0.07%)</title><rect x="465.2" y="485" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="468.19" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.07%)</title><rect x="1067.3" y="613" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1070.31" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.07%)</title><rect x="574.3" y="629" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="577.26" y="639.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="769.9" y="517" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="772.86" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.59%)</title><rect x="531.0" y="773" width="8.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="533.99" y="783.5" ></text>
+</g>
+<g >
+<title>free_pipe_info (10,101,010 samples, 0.07%)</title><rect x="1308.9" y="709" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1311.88" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (50,505,050 samples, 0.33%)</title><rect x="207.4" y="581" width="4.5" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="210.40" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (10,101,010 samples, 0.07%)</title><rect x="95.6" y="757" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="98.63" y="767.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (60,606,060 samples, 0.39%)</title><rect x="833.0" y="645" width="5.4" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="835.95" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (10,101,010 samples, 0.07%)</title><rect x="193.9" y="645" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="196.88" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="686.0" y="741" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="689.03" y="751.5" ></text>
+</g>
+<g >
+<title>alloc_pages (10,101,010 samples, 0.07%)</title><rect x="512.1" y="565" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="515.06" y="575.5" ></text>
+</g>
+<g >
+<title>fstatat64 (60,606,060 samples, 0.39%)</title><rect x="415.6" y="853" width="5.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="418.62" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="546.3" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="549.32" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (10,101,010 samples, 0.07%)</title><rect x="291.2" y="581" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="294.23" y="591.5" ></text>
+</g>
+<g >
+<title>read_tsc (10,101,010 samples, 0.07%)</title><rect x="672.5" y="309" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="675.51" y="319.5" ></text>
+</g>
+<g >
+<title>git_odb_hash (10,101,010 samples, 0.07%)</title><rect x="689.6" y="789" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="692.63" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (30,303,030 samples, 0.20%)</title><rect x="1386.4" y="405" width="2.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1389.39" y="415.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.07%)</title><rect x="1067.3" y="661" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1070.31" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.07%)</title><rect x="199.3" y="629" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="202.29" y="639.5" ></text>
+</g>
+<g >
+<title>storvsc_queuecommand (10,101,010 samples, 0.07%)</title><rect x="1082.6" y="309" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1085.63" y="319.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (20,202,020 samples, 0.13%)</title><rect x="1062.8" y="789" width="1.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1065.80" y="799.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.07%)</title><rect x="864.5" y="725" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="867.50" y="735.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.07%)</title><rect x="981.7" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="984.68" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="659.9" y="533" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="662.89" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="143.4" y="789" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="146.40" y="799.5" ></text>
+</g>
+<g >
+<title>inode_init_always (10,101,010 samples, 0.07%)</title><rect x="72.2" y="741" width="0.9" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="75.19" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="885" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1339.82" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="449.9" y="789" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="452.87" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.07%)</title><rect x="1152.9" y="645" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1155.94" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="1017.7" y="629" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1020.73" y="639.5" ></text>
+</g>
+<g >
+<title>blkcg_maybe_throttle_current (10,101,010 samples, 0.07%)</title><rect x="886.1" y="597" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="889.13" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.20%)</title><rect x="924.9" y="549" width="2.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="927.89" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="981.7" y="565" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="984.68" y="575.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_send (151,515,150 samples, 0.98%)</title><rect x="1323.3" y="949" width="13.5" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1326.30" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="366.0" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="369.04" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (20,202,020 samples, 0.13%)</title><rect x="412.9" y="629" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="415.91" y="639.5" ></text>
+</g>
+<g >
+<title>log_entry_start (20,202,020 samples, 0.13%)</title><rect x="20.8" y="981" width="1.8" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="23.82" y="991.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (50,505,050 samples, 0.33%)</title><rect x="77.6" y="933" width="4.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="80.60" y="943.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (10,101,010 samples, 0.07%)</title><rect x="1371.1" y="613" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1374.07" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="861.8" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="864.80" y="655.5" ></text>
+</g>
+<g >
+<title>from_kgid (10,101,010 samples, 0.07%)</title><rect x="387.7" y="469" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="390.67" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="688.7" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="691.73" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.07%)</title><rect x="52.4" y="821" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="55.36" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.39%)</title><rect x="643.7" y="693" width="5.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="646.66" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="604.0" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="607.00" y="703.5" ></text>
+</g>
+<g >
+<title>ktime_get_coarse_real_ts64 (10,101,010 samples, 0.07%)</title><rect x="904.2" y="581" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="907.16" y="591.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="735.6" y="469" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="738.60" y="479.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (242,424,240 samples, 1.57%)</title><rect x="658.1" y="693" width="21.6" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="661.09" y="703.5" >d..</text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="890.6" y="709" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="893.64" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="902.4" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="905.36" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="870.8" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="873.81" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (10,101,010 samples, 0.07%)</title><rect x="188.5" y="549" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="191.47" y="559.5" ></text>
+</g>
+<g >
+<title>readdir64 (10,101,010 samples, 0.07%)</title><rect x="862.7" y="693" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="865.70" y="703.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.07%)</title><rect x="163.2" y="869" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="166.23" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_link (20,202,020 samples, 0.13%)</title><rect x="787.9" y="677" width="1.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="790.88" y="687.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="330.0" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="332.99" y="655.5" ></text>
+</g>
+<g >
+<title>clear_inode (10,101,010 samples, 0.07%)</title><rect x="291.2" y="565" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="294.23" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="1183.6" y="725" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1186.59" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="813.1" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="816.12" y="559.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.07%)</title><rect x="1136.7" y="645" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1139.71" y="655.5" ></text>
+</g>
+<g >
+<title>__sys_connect (151,515,150 samples, 0.98%)</title><rect x="1376.5" y="869" width="13.5" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1379.48" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (20,202,020 samples, 0.13%)</title><rect x="1099.8" y="581" width="1.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1102.76" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="331.8" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="334.79" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1308.0" y="837" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1310.98" y="847.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.07%)</title><rect x="635.6" y="597" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="638.55" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.07%)</title><rect x="893.3" y="629" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="896.34" y="639.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.07%)</title><rect x="555.3" y="629" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="558.33" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (70,707,070 samples, 0.46%)</title><rect x="304.7" y="549" width="6.4" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="307.75" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (30,303,030 samples, 0.20%)</title><rect x="386.8" y="613" width="2.7" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="389.77" y="623.5" ></text>
+</g>
+<g >
+<title>file_modified (10,101,010 samples, 0.07%)</title><rect x="509.4" y="645" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="512.36" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.07%)</title><rect x="992.5" y="645" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="995.50" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="444.5" y="869" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="447.46" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (40,404,040 samples, 0.26%)</title><rect x="242.6" y="613" width="3.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="245.55" y="623.5" ></text>
+</g>
+<g >
+<title>irq_work_queue (20,202,020 samples, 0.13%)</title><rect x="1381.0" y="677" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1383.99" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1186.3" y="677" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1189.29" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="368.7" y="565" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="371.75" y="575.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (20,202,020 samples, 0.13%)</title><rect x="89.3" y="853" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="92.32" y="863.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_revoke (10,101,010 samples, 0.07%)</title><rect x="371.5" y="517" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="374.45" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="339.0" y="613" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="342.00" y="623.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="694.1" y="645" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="697.14" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="668.0" y="581" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="671.00" y="591.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.07%)</title><rect x="199.3" y="677" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="202.29" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (60,606,060 samples, 0.39%)</title><rect x="632.8" y="677" width="5.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="635.85" y="687.5" ></text>
+</g>
+<g >
+<title>out_of_line_wait_on_bit (10,101,010 samples, 0.07%)</title><rect x="279.5" y="565" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="282.51" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1216.0" y="661" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1219.04" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="783.4" y="693" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="786.38" y="703.5" ></text>
+</g>
+<g >
+<title>security_current_getsecid_subj (10,101,010 samples, 0.07%)</title><rect x="617.5" y="629" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="620.52" y="639.5" ></text>
+</g>
+<g >
+<title>schedule (20,202,020 samples, 0.13%)</title><rect x="1310.7" y="757" width="1.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1313.68" y="767.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.07%)</title><rect x="1069.1" y="453" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1072.11" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="833.0" y="533" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="835.95" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="757.2" y="629" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="760.24" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.07%)</title><rect x="441.8" y="725" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="444.76" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1227.8" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1230.75" y="815.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.20%)</title><rect x="1070.0" y="741" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1073.01" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="891.5" y="709" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="894.54" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.33%)</title><rect x="1240.4" y="757" width="4.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1243.37" y="767.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="421" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1084.73" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.07%)</title><rect x="915.0" y="469" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="917.98" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="303.8" y="517" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="306.85" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="150.6" y="709" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="153.61" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1193.5" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1196.50" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="1014.1" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1017.13" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="985.3" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="988.28" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="983.5" y="581" width="1.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="986.48" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="900.6" y="757" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="903.56" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="964.6" y="709" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="967.55" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="780.7" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="783.67" y="719.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (20,202,020 samples, 0.13%)</title><rect x="783.4" y="613" width="1.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="786.38" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.07%)</title><rect x="1220.5" y="693" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1223.54" y="703.5" ></text>
+</g>
+<g >
+<title>git_remote_create_with_opts (606,060,600 samples, 3.92%)</title><rect x="797.8" y="853" width="54.1" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="800.80" y="863.5" >git_r..</text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="470.6" y="501" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="473.60" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="920.4" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="923.39" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1238.6" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1241.57" y="719.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.07%)</title><rect x="555.3" y="693" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="558.33" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_rearm_rto (10,101,010 samples, 0.07%)</title><rect x="1335.9" y="677" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1338.92" y="687.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="1070.0" y="645" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1073.01" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,808,080 samples, 0.52%)</title><rect x="509.4" y="741" width="7.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="512.36" y="751.5" ></text>
+</g>
+<g >
+<title>validate_xmit_skb (10,101,010 samples, 0.07%)</title><rect x="64.1" y="421" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="67.08" y="431.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.33%)</title><rect x="457.1" y="645" width="4.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="460.08" y="655.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="807.7" y="581" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="810.71" y="591.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.07%)</title><rect x="776.2" y="469" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="779.17" y="479.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.07%)</title><rect x="1000.6" y="581" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1003.61" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.46%)</title><rect x="890.6" y="821" width="6.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="893.64" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (20,202,020 samples, 0.13%)</title><rect x="93.8" y="757" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="96.83" y="767.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.13%)</title><rect x="550.8" y="837" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="553.82" y="847.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="49.7" y="837" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="52.66" y="847.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.07%)</title><rect x="1082.6" y="405" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1085.63" y="415.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.07%)</title><rect x="138.9" y="725" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="141.90" y="735.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="1375.6" y="789" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1378.58" y="799.5" ></text>
+</g>
+<g >
+<title>d_walk (10,101,010 samples, 0.07%)</title><rect x="198.4" y="565" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="201.39" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.07%)</title><rect x="613.0" y="741" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="616.02" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_release_dir (10,101,010 samples, 0.07%)</title><rect x="253.4" y="629" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="256.37" y="639.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (10,101,010 samples, 0.07%)</title><rect x="1126.8" y="437" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="1129.80" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.07%)</title><rect x="675.2" y="453" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="678.21" y="463.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="869.0" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="872.01" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.07%)</title><rect x="228.1" y="437" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="231.13" y="447.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (50,505,050 samples, 0.33%)</title><rect x="979.0" y="709" width="4.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="981.97" y="719.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.07%)</title><rect x="398.5" y="773" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="401.49" y="783.5" ></text>
+</g>
+<g >
+<title>d_delete (10,101,010 samples, 0.07%)</title><rect x="270.5" y="645" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="273.50" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (20,202,020 samples, 0.13%)</title><rect x="131.7" y="773" width="1.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="134.69" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_release_io_end (10,101,010 samples, 0.07%)</title><rect x="672.5" y="517" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="675.51" y="527.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="495.8" y="741" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="498.84" y="751.5" ></text>
+</g>
+<g >
+<title>git_branch_upstream_remote (20,202,020 samples, 0.13%)</title><rect x="919.5" y="821" width="1.8" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="922.48" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.46%)</title><rect x="730.2" y="757" width="6.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="733.20" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="794.2" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="797.19" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="872.6" y="789" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="875.61" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="971.8" y="789" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="974.76" y="799.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.07%)</title><rect x="1242.2" y="613" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1245.18" y="623.5" ></text>
+</g>
+<g >
+<title>write (50,505,050 samples, 0.33%)</title><rect x="704.1" y="709" width="4.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="707.06" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_rename (151,515,150 samples, 0.98%)</title><rect x="666.2" y="677" width="13.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="669.20" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (20,202,020 samples, 0.13%)</title><rect x="769.9" y="565" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="772.86" y="575.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.07%)</title><rect x="763.5" y="709" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="766.55" y="719.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.07%)</title><rect x="198.4" y="485" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="201.39" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="667.1" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="670.10" y="623.5" ></text>
+</g>
+<g >
+<title>should_failslab (10,101,010 samples, 0.07%)</title><rect x="1300.8" y="709" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1303.76" y="719.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="853" width="3.6" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1374.97" y="863.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (10,101,010 samples, 0.07%)</title><rect x="765.3" y="501" width="1.0" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="768.35" y="511.5" ></text>
+</g>
+<g >
+<title>set_cpus_allowed_ptr (10,101,010 samples, 0.07%)</title><rect x="1257.5" y="725" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1260.50" y="735.5" ></text>
+</g>
+<g >
+<title>unlink (70,707,070 samples, 0.46%)</title><rect x="1043.0" y="805" width="6.3" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1045.97" y="815.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.07%)</title><rect x="642.8" y="581" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="645.76" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mb_prefetch (10,101,010 samples, 0.07%)</title><rect x="948.3" y="453" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="951.33" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.65%)</title><rect x="1247.6" y="853" width="9.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1250.58" y="863.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (50,505,050 samples, 0.33%)</title><rect x="905.1" y="629" width="4.5" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="908.06" y="639.5" ></text>
+</g>
+<g >
+<title>sock_def_wakeup (10,101,010 samples, 0.07%)</title><rect x="1376.5" y="709" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1379.48" y="719.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="901.5" y="549" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="904.46" y="559.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (20,202,020 samples, 0.13%)</title><rect x="912.3" y="389" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="915.27" y="399.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="192.1" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="195.08" y="687.5" ></text>
+</g>
+<g >
+<title>free_unref_page (10,101,010 samples, 0.07%)</title><rect x="293.9" y="357" width="0.9" height="15.0" fill="rgb(0,238,205)" rx="2" ry="2" />
+<text x="296.93" y="367.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="824.8" y="773" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="827.84" y="783.5" ></text>
+</g>
+<g >
+<title>mktime (10,101,010 samples, 0.07%)</title><rect x="794.2" y="789" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="797.19" y="799.5" ></text>
+</g>
+<g >
+<title>git_reference_foreach_name (131,313,130 samples, 0.85%)</title><rect x="857.3" y="805" width="11.7" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="860.29" y="815.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.07%)</title><rect x="614.8" y="661" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="617.82" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="476.0" y="789" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="479.01" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="870.8" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="873.81" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.07%)</title><rect x="1248.5" y="725" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1251.48" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="770.8" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="773.76" y="543.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.07%)</title><rect x="430.9" y="805" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="433.94" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (565,656,560 samples, 3.66%)</title><rect x="1256.6" y="837" width="50.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1259.60" y="847.5" >do_sy..</text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.07%)</title><rect x="954.6" y="533" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="957.64" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.07%)</title><rect x="762.6" y="517" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="765.65" y="527.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="88.4" y="805" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="91.42" y="815.5" ></text>
+</g>
+<g >
+<title>ip_output (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="501" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1368.66" y="511.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="157.8" y="837" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="160.82" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (30,303,030 samples, 0.20%)</title><rect x="590.5" y="533" width="2.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="593.48" y="543.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.07%)</title><rect x="248.9" y="549" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="251.86" y="559.5" ></text>
+</g>
+<g >
+<title>log_entry_end (10,101,010 samples, 0.07%)</title><rect x="74.0" y="949" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="77.00" y="959.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.07%)</title><rect x="1353.0" y="853" width="0.9" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="1356.04" y="863.5" ></text>
+</g>
+<g >
+<title>__tcp_close (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="709" width="3.6" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1374.97" y="719.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="705.9" y="437" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="708.86" y="447.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="764.4" y="581" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="767.45" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (50,505,050 samples, 0.33%)</title><rect x="129.0" y="805" width="4.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="131.98" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="971.8" y="629" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="974.76" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="813.1" y="469" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="816.12" y="479.5" ></text>
+</g>
+<g >
+<title>file_modified (10,101,010 samples, 0.07%)</title><rect x="904.2" y="629" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="907.16" y="639.5" ></text>
+</g>
+<g >
+<title>d_lookup (10,101,010 samples, 0.07%)</title><rect x="1107.0" y="629" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="1109.97" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1195.3" y="757" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1198.30" y="767.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.07%)</title><rect x="995.2" y="629" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="998.20" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="968.2" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="971.16" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="842.0" y="485" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="844.97" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.07%)</title><rect x="854.6" y="677" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="857.59" y="687.5" ></text>
+</g>
+<g >
+<title>__sock_release (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="757" width="3.6" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1374.97" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="1359.4" y="805" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1362.35" y="815.5" ></text>
+</g>
+<g >
+<title>__strdup (10,101,010 samples, 0.07%)</title><rect x="775.3" y="645" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="778.26" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="999.7" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1002.71" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="794.2" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="797.19" y="623.5" ></text>
+</g>
+<g >
+<title>__release_sock (20,202,020 samples, 0.13%)</title><rect x="55.1" y="629" width="1.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="58.07" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1216.0" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1219.04" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="517.5" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="520.47" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="754.5" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="757.53" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1199.8" y="757" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1202.81" y="767.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.07%)</title><rect x="366.9" y="549" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="369.94" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.59%)</title><rect x="1201.6" y="757" width="8.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1204.61" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (151,515,150 samples, 0.98%)</title><rect x="1376.5" y="917" width="13.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1379.48" y="927.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="901.5" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="904.46" y="687.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="760.8" y="485" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="763.84" y="495.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="464.3" y="581" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="467.29" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.07%)</title><rect x="829.3" y="661" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="832.35" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="708.6" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="711.56" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.59%)</title><rect x="1094.4" y="741" width="8.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1097.35" y="751.5" ></text>
+</g>
+<g >
+<title>vm_area_dup (101,010,100 samples, 0.65%)</title><rect x="1293.6" y="725" width="9.0" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1296.55" y="735.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (131,313,130 samples, 0.85%)</title><rect x="53.3" y="805" width="11.7" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="56.27" y="815.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="541.8" y="693" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="544.81" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (454,545,450 samples, 2.94%)</title><rect x="41.5" y="1013" width="40.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="44.55" y="1023.5" >[li..</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (222,222,220 samples, 1.44%)</title><rect x="997.0" y="773" width="19.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1000.00" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="956.4" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="959.44" y="687.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.07%)</title><rect x="1351.2" y="693" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1354.24" y="703.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.07%)</title><rect x="1353.0" y="773" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1356.04" y="783.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.07%)</title><rect x="788.8" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="791.79" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="230.8" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="233.84" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (70,707,070 samples, 0.46%)</title><rect x="872.6" y="805" width="6.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="875.61" y="815.5" ></text>
+</g>
+<g >
+<title>libjson_recv (90,909,090 samples, 0.59%)</title><rect x="1359.4" y="885" width="8.1" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1362.35" y="895.5" ></text>
+</g>
+<g >
+<title>inflateInit2_ (10,101,010 samples, 0.07%)</title><rect x="966.4" y="677" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="969.36" y="687.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="239.8" y="613" width="1.0" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="242.85" y="623.5" ></text>
+</g>
+<g >
+<title>git_repository_free (60,606,060 samples, 0.39%)</title><rect x="176.8" y="901" width="5.4" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="179.75" y="911.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.07%)</title><rect x="284.9" y="597" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="287.92" y="607.5" ></text>
+</g>
+<g >
+<title>ext4fs_dirhash (10,101,010 samples, 0.07%)</title><rect x="343.5" y="645" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="346.51" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (20,202,020 samples, 0.13%)</title><rect x="513.0" y="597" width="1.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="515.97" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="894.2" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="897.25" y="623.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.07%)</title><rect x="734.7" y="453" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="737.70" y="463.5" ></text>
+</g>
+<g >
+<title>free_unref_page_commit (10,101,010 samples, 0.07%)</title><rect x="815.8" y="517" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="818.83" y="527.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="757" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1233.46" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (70,707,070 samples, 0.46%)</title><rect x="944.7" y="581" width="6.3" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="947.72" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="685.1" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="688.13" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.07%)</title><rect x="413.8" y="581" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="416.81" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="1062.8" y="741" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1065.80" y="751.5" ></text>
+</g>
+<g >
+<title>node_dirty_ok (10,101,010 samples, 0.07%)</title><rect x="512.1" y="517" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="515.06" y="527.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.07%)</title><rect x="635.6" y="613" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="638.55" y="623.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (30,303,030 samples, 0.20%)</title><rect x="1372.9" y="533" width="2.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1375.87" y="543.5" ></text>
+</g>
+<g >
+<title>rw_verify_area (10,101,010 samples, 0.07%)</title><rect x="1316.1" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1319.09" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="785.2" y="693" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="788.18" y="703.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.07%)</title><rect x="1053.8" y="741" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1056.79" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.65%)</title><rect x="1209.7" y="773" width="9.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1212.73" y="783.5" ></text>
+</g>
+<g >
+<title>copy_present_pte (20,202,020 samples, 0.13%)</title><rect x="1280.0" y="677" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1283.03" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="1142.1" y="645" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1145.12" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="200.2" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="203.19" y="719.5" ></text>
+</g>
+<g >
+<title>evict (30,303,030 samples, 0.20%)</title><rect x="331.8" y="661" width="2.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="334.79" y="671.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.07%)</title><rect x="599.5" y="645" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="602.50" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1206.1" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1209.12" y="687.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="819.4" y="453" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="822.43" y="463.5" ></text>
+</g>
+<g >
+<title>symlink (20,202,020 samples, 0.13%)</title><rect x="1041.2" y="805" width="1.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1044.17" y="815.5" ></text>
+</g>
+<g >
+<title>process_backlog (40,404,040 samples, 0.26%)</title><rect x="1386.4" y="533" width="3.6" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1389.39" y="543.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.07%)</title><rect x="475.1" y="597" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="478.11" y="607.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_reschedule_ipi (10,101,010 samples, 0.07%)</title><rect x="802.3" y="693" width="0.9" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="805.31" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="1034.9" y="597" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1037.86" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.07%)</title><rect x="890.6" y="629" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="893.64" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1221.74" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="480.5" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="483.52" y="735.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="602.2" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="605.20" y="655.5" ></text>
+</g>
+<g >
+<title>__mmap (10,101,010 samples, 0.07%)</title><rect x="67.7" y="853" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="70.69" y="863.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="491.3" y="613" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="494.33" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (212,121,210 samples, 1.37%)</title><rect x="1154.7" y="709" width="19.0" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1157.74" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="725" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1064.90" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.07%)</title><rect x="472.4" y="645" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="475.40" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="739.2" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="742.21" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="433.6" y="677" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="436.64" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.07%)</title><rect x="576.1" y="597" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="579.06" y="607.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.07%)</title><rect x="878.9" y="677" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="881.92" y="687.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="1044.8" y="565" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1047.77" y="575.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="127.2" y="789" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="130.18" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.07%)</title><rect x="431.8" y="709" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="434.84" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="828.4" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="831.45" y="719.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.07%)</title><rect x="555.3" y="709" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="558.33" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1104.3" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1107.27" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="429.1" y="757" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="432.14" y="767.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (20,202,020 samples, 0.13%)</title><rect x="1210.6" y="597" width="1.8" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="1213.63" y="607.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (10,101,010 samples, 0.07%)</title><rect x="1167.4" y="565" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1170.36" y="575.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.07%)</title><rect x="1162.0" y="581" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1164.95" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.46%)</title><rect x="517.5" y="741" width="6.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="520.47" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_rearm_rto (10,101,010 samples, 0.07%)</title><rect x="18.1" y="725" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="21.11" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="124.5" y="805" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="127.47" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="257.0" y="709" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="259.98" y="719.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.07%)</title><rect x="614.8" y="693" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="617.82" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.07%)</title><rect x="1074.5" y="549" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1077.52" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (20,202,020 samples, 0.13%)</title><rect x="1056.5" y="613" width="1.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1059.49" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="524.7" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="527.68" y="751.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="929.4" y="549" width="1.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="932.40" y="559.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.07%)</title><rect x="1183.6" y="693" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1186.59" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.07%)</title><rect x="1204.3" y="581" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1207.32" y="591.5" ></text>
+</g>
+<g >
+<title>d_splice_alias (20,202,020 samples, 0.13%)</title><rect x="1058.3" y="613" width="1.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1061.30" y="623.5" ></text>
+</g>
+<g >
+<title>__napi_poll (10,101,010 samples, 0.07%)</title><rect x="1371.1" y="469" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1374.07" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="1363.9" y="821" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1366.86" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="543.6" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="546.61" y="815.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="781.6" y="645" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="784.57" y="655.5" ></text>
+</g>
+<g >
+<title>free_rb_tree_fname (10,101,010 samples, 0.07%)</title><rect x="340.8" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="343.80" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="900.6" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="903.56" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_create (111,111,110 samples, 0.72%)</title><rect x="1029.5" y="661" width="9.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1032.45" y="671.5" ></text>
+</g>
+<g >
+<title>__poll (90,909,090 samples, 0.59%)</title><rect x="41.5" y="933" width="8.2" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="44.55" y="943.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="818.5" y="437" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="821.53" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="299.3" y="533" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="302.34" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="141.6" y="773" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="144.60" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="764.4" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="767.45" y="687.5" ></text>
+</g>
+<g >
+<title>server_has_runs (10,101,010 samples, 0.07%)</title><rect x="22.6" y="965" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="25.62" y="975.5" ></text>
+</g>
+<g >
+<title>unlink_cb (575,757,570 samples, 3.72%)</title><rect x="268.7" y="773" width="51.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="271.69" y="783.5" >unlin..</text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="331.8" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="334.79" y="623.5" ></text>
+</g>
+<g >
+<title>filemap_flush (40,404,040 samples, 0.26%)</title><rect x="467.9" y="661" width="3.6" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="470.90" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="851.9" y="805" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="854.88" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="12.7" y="821" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="15.70" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_htree_store_dirent (10,101,010 samples, 0.07%)</title><rect x="893.3" y="597" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="896.34" y="607.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="229.9" y="533" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="232.93" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (30,303,030 samples, 0.20%)</title><rect x="705.0" y="549" width="2.7" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="707.96" y="559.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.07%)</title><rect x="1370.2" y="629" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1373.17" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (90,909,090 samples, 0.59%)</title><rect x="1119.6" y="629" width="8.1" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1122.59" y="639.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.07%)</title><rect x="656.3" y="677" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="659.28" y="687.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="10.9" y="917" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="13.90" y="927.5" ></text>
+</g>
+<g >
+<title>touch_atime (30,303,030 samples, 0.20%)</title><rect x="266.0" y="677" width="2.7" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="268.99" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1194.4" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1197.40" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="412.9" y="581" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="415.91" y="591.5" ></text>
+</g>
+<g >
+<title>free_page_and_swap_cache (10,101,010 samples, 0.07%)</title><rect x="227.2" y="229" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="230.23" y="239.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (30,303,030 samples, 0.20%)</title><rect x="1372.9" y="565" width="2.7" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1375.87" y="575.5" ></text>
+</g>
+<g >
+<title>__wait_on_bit (10,101,010 samples, 0.07%)</title><rect x="279.5" y="549" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="282.51" y="559.5" ></text>
+</g>
+<g >
+<title>new_inode (10,101,010 samples, 0.07%)</title><rect x="951.0" y="517" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="954.03" y="527.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (10,101,010 samples, 0.07%)</title><rect x="803.2" y="485" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="806.21" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.39%)</title><rect x="399.4" y="789" width="5.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="402.39" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (141,414,140 samples, 0.91%)</title><rect x="298.4" y="597" width="12.7" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="301.44" y="607.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (30,303,030 samples, 0.20%)</title><rect x="252.5" y="773" width="2.7" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="255.47" y="783.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="453" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1368.66" y="463.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="365.1" y="549" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="368.14" y="559.5" ></text>
+</g>
+<g >
+<title>open64 (50,505,050 samples, 0.33%)</title><rect x="457.1" y="677" width="4.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="460.08" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mb_complex_scan_group (10,101,010 samples, 0.07%)</title><rect x="95.6" y="741" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="98.63" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="920.4" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="923.39" y="767.5" ></text>
+</g>
+<g >
+<title>create_empty_buffers (10,101,010 samples, 0.07%)</title><rect x="644.6" y="549" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="647.57" y="559.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.07%)</title><rect x="1000.6" y="597" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1003.61" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (464,646,460 samples, 3.00%)</title><rect x="638.3" y="805" width="41.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="641.26" y="815.5" >[li..</text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="1063.7" y="725" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1066.70" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_ack (10,101,010 samples, 0.07%)</title><rect x="1377.4" y="709" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1380.38" y="719.5" ></text>
+</g>
+<g >
+<title>__legitimize_mnt (10,101,010 samples, 0.07%)</title><rect x="1320.6" y="725" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="1323.59" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_filter (10,101,010 samples, 0.07%)</title><rect x="1329.6" y="325" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="1332.61" y="335.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.07%)</title><rect x="198.4" y="421" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="201.39" y="431.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1237.7" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1240.67" y="703.5" ></text>
+</g>
+<g >
+<title>evict (50,505,050 samples, 0.33%)</title><rect x="1002.4" y="581" width="4.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1005.41" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.07%)</title><rect x="582.4" y="597" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="585.37" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="927.6" y="581" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="930.60" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1197.1" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1200.11" y="751.5" ></text>
+</g>
+<g >
+<title>bit_wait_io (10,101,010 samples, 0.07%)</title><rect x="279.5" y="533" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="282.51" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="1078.1" y="485" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1081.13" y="495.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.07%)</title><rect x="802.3" y="565" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="805.31" y="575.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="1102.5" y="613" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1105.46" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="195.7" y="501" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="198.68" y="511.5" ></text>
+</g>
+<g >
+<title>tcp_v6_conn_request (20,202,020 samples, 0.13%)</title><rect x="1387.3" y="373" width="1.8" height="15.0" fill="rgb(0,236,197)" rx="2" ry="2" />
+<text x="1390.30" y="383.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (20,202,020 samples, 0.13%)</title><rect x="1339.5" y="693" width="1.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1342.52" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="765.3" y="693" width="1.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="768.35" y="703.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.07%)</title><rect x="1207.0" y="581" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1210.02" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1325.1" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1328.10" y="799.5" ></text>
+</g>
+<g >
+<title>rename (161,616,160 samples, 1.05%)</title><rect x="1002.4" y="741" width="14.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1005.41" y="751.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.07%)</title><rect x="939.3" y="485" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="942.31" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="545.4" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="548.41" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.20%)</title><rect x="209.2" y="533" width="2.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="212.20" y="543.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.07%)</title><rect x="838.4" y="421" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="841.36" y="431.5" ></text>
+</g>
+<g >
+<title>sk_prot_alloc (10,101,010 samples, 0.07%)</title><rect x="1337.7" y="789" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1340.72" y="799.5" ></text>
+</g>
+<g >
+<title>__libc_start_main (454,545,450 samples, 2.94%)</title><rect x="41.5" y="1029" width="40.6" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="44.55" y="1039.5" >__l..</text>
+</g>
+<g >
+<title>journal_end_buffer_io_sync (10,101,010 samples, 0.07%)</title><rect x="988.9" y="389" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="991.89" y="399.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="245" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1013.52" y="255.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1188.1" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1191.09" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="993.4" y="789" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="996.40" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (60,606,060 samples, 0.39%)</title><rect x="409.3" y="677" width="5.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="412.31" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="335.4" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="338.40" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (40,404,040 samples, 0.26%)</title><rect x="394.0" y="693" width="3.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="396.98" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="956.4" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="959.44" y="703.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_uncharge_list (10,101,010 samples, 0.07%)</title><rect x="423.7" y="629" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="426.73" y="639.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="781.6" y="549" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="784.57" y="559.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.20%)</title><rect x="795.1" y="869" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="798.09" y="879.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="86.6" y="821" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="89.62" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="741.0" y="581" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="744.01" y="591.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="830.2" y="613" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="833.25" y="623.5" ></text>
+</g>
+<g >
+<title>net_rx_action (40,404,040 samples, 0.26%)</title><rect x="1386.4" y="565" width="3.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1389.39" y="575.5" ></text>
+</g>
+<g >
+<title>process_backlog (10,101,010 samples, 0.07%)</title><rect x="1371.1" y="453" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1374.07" y="463.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (40,404,040 samples, 0.26%)</title><rect x="695.9" y="645" width="3.6" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="698.94" y="655.5" ></text>
+</g>
+<g >
+<title>__find_get_block (30,303,030 samples, 0.20%)</title><rect x="260.6" y="549" width="2.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="263.58" y="559.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.07%)</title><rect x="816.7" y="469" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="819.73" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="1251.2" y="677" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1254.19" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="475.1" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="478.11" y="527.5" ></text>
+</g>
+<g >
+<title>__wake_up (10,101,010 samples, 0.07%)</title><rect x="432.7" y="693" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="435.74" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (80,808,080 samples, 0.52%)</title><rect x="1249.4" y="789" width="7.2" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1252.39" y="799.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.07%)</title><rect x="743.7" y="661" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="746.72" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="997.9" y="693" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1000.90" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1018.6" y="645" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1021.63" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.07%)</title><rect x="673.4" y="389" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="676.41" y="399.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (707,070,700 samples, 4.57%)</title><rect x="100.1" y="933" width="63.1" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="103.14" y="943.5" >do_sys..</text>
+</g>
+<g >
+<title>ext4_block_write_begin (20,202,020 samples, 0.13%)</title><rect x="983.5" y="613" width="1.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="986.48" y="623.5" ></text>
+</g>
+<g >
+<title>__tcp_ack_snd_check (30,303,030 samples, 0.20%)</title><rect x="1330.5" y="293" width="2.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1333.51" y="303.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1320.6" y="709" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1323.59" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="863.6" y="629" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="866.60" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="756.3" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="759.34" y="735.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.07%)</title><rect x="832.1" y="773" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="835.05" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="607.6" y="629" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="610.61" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.07%)</title><rect x="1149.3" y="693" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="1152.33" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="842.0" y="469" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="844.97" y="479.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="862.7" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="865.70" y="655.5" ></text>
+</g>
+<g >
+<title>git_reference_create_matching (323,232,320 samples, 2.09%)</title><rect x="449.0" y="869" width="28.8" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="451.97" y="879.5" >gi..</text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="1134.9" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1137.91" y="687.5" ></text>
+</g>
+<g >
+<title>os_xsave (10,101,010 samples, 0.07%)</title><rect x="135.3" y="741" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="138.29" y="751.5" ></text>
+</g>
+<g >
+<title>kprobe_ftrace_handler (70,707,070 samples, 0.46%)</title><rect x="1342.2" y="773" width="6.3" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1345.23" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.07%)</title><rect x="1036.7" y="613" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="1039.66" y="623.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="517" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1064.90" y="527.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (20,202,020 samples, 0.13%)</title><rect x="912.3" y="549" width="1.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="915.27" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.07%)</title><rect x="1069.1" y="565" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1072.11" y="575.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.07%)</title><rect x="533.7" y="709" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="536.70" y="719.5" ></text>
+</g>
+<g >
+<title>blkcg_set_ioprio (10,101,010 samples, 0.07%)</title><rect x="467.9" y="469" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="470.90" y="479.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.39%)</title><rect x="504.0" y="789" width="5.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="506.95" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1314.3" y="821" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1317.28" y="831.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="645" width="2.7" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1381.28" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="887.9" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="890.94" y="703.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (10,101,010 samples, 0.07%)</title><rect x="19.9" y="757" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="22.92" y="767.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.07%)</title><rect x="132.6" y="677" width="0.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="135.59" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="985.3" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="988.28" y="623.5" ></text>
+</g>
+<g >
+<title>fscrypt_file_open (10,101,010 samples, 0.07%)</title><rect x="750.9" y="469" width="0.9" height="15.0" fill="rgb(0,198,33)" rx="2" ry="2" />
+<text x="753.93" y="479.5" ></text>
+</g>
+<g >
+<title>mntget (10,101,010 samples, 0.07%)</title><rect x="446.3" y="629" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="449.26" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="596.8" y="645" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="599.79" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (212,121,210 samples, 1.37%)</title><rect x="932.1" y="613" width="18.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="935.10" y="623.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="716.7" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="719.68" y="655.5" ></text>
+</g>
+<g >
+<title>task_work_run (20,202,020 samples, 0.13%)</title><rect x="253.4" y="677" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="256.37" y="687.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="461.6" y="645" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="464.59" y="655.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="610.3" y="565" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="613.31" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="1044.8" y="629" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1047.77" y="639.5" ></text>
+</g>
+<g >
+<title>__folio_batch_release (10,101,010 samples, 0.07%)</title><rect x="846.5" y="517" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="849.47" y="527.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="869" width="3.6" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1374.97" y="879.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="1197.1" y="597" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1200.11" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (70,707,070 samples, 0.46%)</title><rect x="1096.2" y="629" width="6.3" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1099.15" y="639.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1176.4" y="709" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1179.37" y="719.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.07%)</title><rect x="132.6" y="693" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="135.59" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.07%)</title><rect x="1316.1" y="741" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1319.09" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_rename (121,212,120 samples, 0.78%)</title><rect x="1118.7" y="645" width="10.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1121.69" y="655.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (10,101,010 samples, 0.07%)</title><rect x="51.5" y="661" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="54.46" y="671.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="687.8" y="677" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="690.83" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_empty_dir (10,101,010 samples, 0.07%)</title><rect x="217.3" y="597" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="220.32" y="607.5" ></text>
+</g>
+<g >
+<title>ip_rcv (80,808,080 samples, 0.52%)</title><rect x="1327.8" y="405" width="7.2" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1330.81" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="364.2" y="549" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="367.24" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.13%)</title><rect x="275.9" y="597" width="1.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="278.90" y="607.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct (30,303,030 samples, 0.20%)</title><rect x="839.3" y="501" width="2.7" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="842.26" y="511.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.07%)</title><rect x="536.4" y="581" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="539.40" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="857.3" y="693" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="860.29" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="549.0" y="709" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="552.02" y="719.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.07%)</title><rect x="817.6" y="373" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="820.63" y="383.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.07%)</title><rect x="794.2" y="565" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="797.19" y="575.5" ></text>
+</g>
+<g >
+<title>filp_close (10,101,010 samples, 0.07%)</title><rect x="252.5" y="693" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="255.47" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.07%)</title><rect x="700.5" y="357" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="703.45" y="367.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="691.4" y="661" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="694.44" y="671.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.07%)</title><rect x="403.9" y="741" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="406.90" y="751.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_from_slab_obj (10,101,010 samples, 0.07%)</title><rect x="312.9" y="565" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="315.86" y="575.5" ></text>
+</g>
+<g >
+<title>folio_mark_accessed (10,101,010 samples, 0.07%)</title><rect x="996.1" y="517" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="999.10" y="527.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="550.8" y="501" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="553.82" y="511.5" ></text>
+</g>
+<g >
+<title>remove (90,909,090 samples, 0.59%)</title><rect x="421.0" y="837" width="8.1" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="424.03" y="847.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (20,202,020 samples, 0.13%)</title><rect x="1364.8" y="581" width="1.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1367.76" y="591.5" ></text>
+</g>
+<g >
+<title>end_bio_bh_io_sync (10,101,010 samples, 0.07%)</title><rect x="988.9" y="405" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="991.89" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="761.7" y="597" width="1.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="764.74" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="754.5" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="757.53" y="607.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.07%)</title><rect x="700.5" y="437" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="703.45" y="447.5" ></text>
+</g>
+<g >
+<title>evict (80,808,080 samples, 0.52%)</title><rect x="1110.6" y="597" width="7.2" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1113.57" y="607.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (10,101,010 samples, 0.07%)</title><rect x="1082.6" y="421" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1085.63" y="431.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="700.5" y="565" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="703.45" y="575.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="340.8" y="613" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="343.80" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (30,303,030 samples, 0.20%)</title><rect x="129.0" y="725" width="2.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="131.98" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (121,212,120 samples, 0.78%)</title><rect x="1326.0" y="853" width="10.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1329.00" y="863.5" ></text>
+</g>
+<g >
+<title>pthread_getspecific (10,101,010 samples, 0.07%)</title><rect x="1178.2" y="789" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1181.18" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.07%)</title><rect x="307.5" y="469" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="310.45" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="295.7" y="533" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="298.73" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.07%)</title><rect x="1018.6" y="661" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1021.63" y="671.5" ></text>
+</g>
+<g >
+<title>do_mmap (10,101,010 samples, 0.07%)</title><rect x="67.7" y="757" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="70.69" y="767.5" ></text>
+</g>
+<g >
+<title>iput (40,404,040 samples, 0.26%)</title><rect x="421.9" y="741" width="3.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="424.93" y="751.5" ></text>
+</g>
+<g >
+<title>json_object_put (10,101,010 samples, 0.07%)</title><rect x="1322.4" y="917" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="1325.40" y="927.5" ></text>
+</g>
+<g >
+<title>__napi_poll (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="453" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1343.42" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.13%)</title><rect x="432.7" y="741" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="435.74" y="751.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="1105.2" y="597" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1108.17" y="607.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="764.4" y="565" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="767.45" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1236.8" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1239.77" y="639.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.07%)</title><rect x="1216.0" y="629" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1219.04" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="607.6" y="613" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="610.61" y="623.5" ></text>
+</g>
+<g >
+<title>generic_fillattr (10,101,010 samples, 0.07%)</title><rect x="1227.8" y="645" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1230.75" y="655.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (20,202,020 samples, 0.13%)</title><rect x="1308.0" y="821" width="1.8" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1310.98" y="831.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.07%)</title><rect x="973.6" y="677" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="976.57" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (222,222,220 samples, 1.44%)</title><rect x="997.0" y="757" width="19.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1000.00" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="1174.6" y="805" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1177.57" y="815.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct (10,101,010 samples, 0.07%)</title><rect x="670.7" y="485" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="673.71" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="650.0" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="652.97" y="719.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (50,505,050 samples, 0.33%)</title><rect x="526.5" y="837" width="4.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="529.49" y="847.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="935.7" y="485" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="938.71" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="437.3" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="440.25" y="527.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.07%)</title><rect x="818.5" y="245" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="821.53" y="255.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.46%)</title><rect x="185.8" y="645" width="6.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="188.77" y="655.5" ></text>
+</g>
+<g >
+<title>git_index_add (90,909,090 samples, 0.59%)</title><rect x="531.0" y="853" width="8.1" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="533.99" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_create (20,202,020 samples, 0.13%)</title><rect x="951.0" y="549" width="1.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="954.03" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.07%)</title><rect x="762.6" y="533" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="765.65" y="543.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="818.5" y="341" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="821.53" y="351.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="96.5" y="869" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="99.53" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.07%)</title><rect x="893.3" y="645" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="896.34" y="655.5" ></text>
+</g>
+<g >
+<title>__submit_bio (30,303,030 samples, 0.20%)</title><rect x="839.3" y="469" width="2.7" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="842.26" y="479.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (50,505,050 samples, 0.33%)</title><rect x="168.6" y="869" width="4.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="171.64" y="879.5" ></text>
+</g>
+<g >
+<title>list_lru_del (10,101,010 samples, 0.07%)</title><rect x="375.1" y="613" width="0.9" height="15.0" fill="rgb(0,216,113)" rx="2" ry="2" />
+<text x="378.06" y="623.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.13%)</title><rect x="1207.9" y="741" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1210.92" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.07%)</title><rect x="465.2" y="565" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="468.19" y="575.5" ></text>
+</g>
+<g >
+<title>d_same_name (10,101,010 samples, 0.07%)</title><rect x="351.6" y="645" width="0.9" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="354.62" y="655.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (20,202,020 samples, 0.13%)</title><rect x="962.7" y="677" width="1.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="965.75" y="687.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (30,303,030 samples, 0.20%)</title><rect x="79.4" y="885" width="2.7" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="82.41" y="895.5" ></text>
+</g>
+<g >
+<title>git_object_peel (70,707,070 samples, 0.46%)</title><rect x="544.5" y="885" width="6.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="547.51" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.07%)</title><rect x="1171.0" y="661" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1173.97" y="671.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (90,909,090 samples, 0.59%)</title><rect x="1327.8" y="661" width="8.1" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1330.81" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="583.3" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="586.27" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (60,606,060 samples, 0.39%)</title><rect x="1082.6" y="517" width="5.4" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1085.63" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="659.9" y="485" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="662.89" y="495.5" ></text>
+</g>
+<g >
+<title>open64 (30,303,030 samples, 0.20%)</title><rect x="851.9" y="709" width="2.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="854.88" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (50,505,050 samples, 0.33%)</title><rect x="399.4" y="725" width="4.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="402.39" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="739.2" y="709" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="742.21" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="785.2" y="645" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="788.18" y="655.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="1059.2" y="565" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1062.20" y="575.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="621.1" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="624.13" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="805.9" y="757" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="808.91" y="767.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (10,101,010 samples, 0.07%)</title><rect x="1349.4" y="485" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1352.44" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="490.4" y="741" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="493.43" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (20,202,020 samples, 0.13%)</title><rect x="1036.7" y="629" width="1.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1039.66" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="728.4" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="731.39" y="687.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (80,808,080 samples, 0.52%)</title><rect x="1327.8" y="549" width="7.2" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1330.81" y="559.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.07%)</title><rect x="817.6" y="437" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="820.63" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="667.1" y="565" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="670.10" y="575.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (80,808,080 samples, 0.52%)</title><rect x="1110.6" y="645" width="7.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1113.57" y="655.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.07%)</title><rect x="315.6" y="549" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="318.56" y="559.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="236.2" y="661" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="239.24" y="671.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.07%)</title><rect x="214.6" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="217.61" y="639.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.07%)</title><rect x="991.6" y="597" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="994.59" y="607.5" ></text>
+</g>
+<g >
+<title>do_writepages (30,303,030 samples, 0.20%)</title><rect x="817.6" y="581" width="2.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="820.63" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="751.8" y="613" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="754.83" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.07%)</title><rect x="583.3" y="565" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="586.27" y="575.5" ></text>
+</g>
+<g >
+<title>d_delete (10,101,010 samples, 0.07%)</title><rect x="215.5" y="613" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="218.51" y="623.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.07%)</title><rect x="453.5" y="597" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="456.47" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="863.6" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="866.60" y="719.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_double_unlock (10,101,010 samples, 0.07%)</title><rect x="1351.2" y="661" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1354.24" y="671.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="597.7" y="613" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="600.69" y="623.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="550.8" y="533" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="553.82" y="543.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="1320.6" y="773" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1323.59" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="780.7" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="783.67" y="703.5" ></text>
+</g>
+<g >
+<title>git_reference_iterator_new (131,313,130 samples, 0.85%)</title><rect x="857.3" y="789" width="11.7" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="860.29" y="799.5" ></text>
+</g>
+<g >
+<title>lookup_dcache (10,101,010 samples, 0.07%)</title><rect x="319.2" y="661" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="322.17" y="671.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.07%)</title><rect x="340.8" y="741" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="343.80" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="307.5" y="437" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="310.45" y="447.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (30,303,030 samples, 0.20%)</title><rect x="168.6" y="805" width="2.7" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="171.64" y="815.5" ></text>
+</g>
+<g >
+<title>lh_table_free (10,101,010 samples, 0.07%)</title><rect x="1358.5" y="853" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1361.45" y="863.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.07%)</title><rect x="164.1" y="1013" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="167.13" y="1023.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="877.1" y="677" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="880.12" y="687.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.07%)</title><rect x="988.9" y="437" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="991.89" y="447.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="421" width="2.7" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1381.28" y="431.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.46%)</title><rect x="1096.2" y="709" width="6.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1099.15" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="564.3" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="567.34" y="767.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1320.6" y="677" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1323.59" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_file_getattr (10,101,010 samples, 0.07%)</title><rect x="1233.2" y="677" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1236.16" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (60,606,060 samples, 0.39%)</title><rect x="1082.6" y="533" width="5.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1085.63" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.07%)</title><rect x="432.7" y="725" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="435.74" y="735.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="406.6" y="565" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="409.60" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.59%)</title><rect x="641.0" y="741" width="8.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="643.96" y="751.5" ></text>
+</g>
+<g >
+<title>do_faccessat (40,404,040 samples, 0.26%)</title><rect x="1240.4" y="709" width="3.6" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1243.37" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="550.8" y="725" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="553.82" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="553.5" y="805" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="556.53" y="815.5" ></text>
+</g>
+<g >
+<title>__fdget (20,202,020 samples, 0.13%)</title><rect x="42.4" y="837" width="1.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="45.45" y="847.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.07%)</title><rect x="1073.6" y="517" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1076.62" y="527.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.07%)</title><rect x="162.3" y="917" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="165.33" y="927.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.07%)</title><rect x="512.1" y="597" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="515.06" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (40,404,040 samples, 0.26%)</title><rect x="411.1" y="661" width="3.6" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="414.11" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="273.2" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="276.20" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="793.3" y="565" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="796.29" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.07%)</title><rect x="1162.9" y="581" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1165.85" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="920.4" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="923.39" y="703.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (20,202,020 samples, 0.13%)</title><rect x="253.4" y="709" width="1.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="256.37" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.20%)</title><rect x="266.0" y="629" width="2.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="268.99" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (494,949,490 samples, 3.20%)</title><rect x="1130.4" y="773" width="44.2" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1133.40" y="783.5" >__x6..</text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.07%)</title><rect x="507.6" y="581" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="510.56" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="68.6" y="853" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="71.59" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="741" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1064.90" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="1042.1" y="725" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1045.07" y="735.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.07%)</title><rect x="258.8" y="645" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="261.78" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.07%)</title><rect x="673.4" y="469" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="676.41" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="727.5" y="645" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="730.49" y="655.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="671.6" y="485" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="674.61" y="495.5" ></text>
+</g>
+<g >
+<title>readdir64 (80,808,080 samples, 0.52%)</title><rect x="622.0" y="789" width="7.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="625.03" y="799.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1237.7" y="645" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1240.67" y="655.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="971.8" y="565" width="1.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="974.76" y="575.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.07%)</title><rect x="769.0" y="677" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="771.95" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="659.9" y="517" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="662.89" y="527.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="241.7" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="244.65" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (20,202,020 samples, 0.13%)</title><rect x="641.9" y="677" width="1.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="644.86" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (30,303,030 samples, 0.20%)</title><rect x="386.8" y="597" width="2.7" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="389.77" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="970.0" y="565" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="972.96" y="575.5" ></text>
+</g>
+<g >
+<title>git_config_get_string_buf (20,202,020 samples, 0.13%)</title><rect x="919.5" y="805" width="1.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="922.48" y="815.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.07%)</title><rect x="901.5" y="645" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="904.46" y="655.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.07%)</title><rect x="1175.5" y="709" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1178.47" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1181.8" y="757" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1184.78" y="767.5" ></text>
+</g>
+<g >
+<title>__rseq_handle_notify_resume (10,101,010 samples, 0.07%)</title><rect x="613.9" y="693" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="616.92" y="703.5" ></text>
+</g>
+<g >
+<title>__dma_map_sg_attrs (10,101,010 samples, 0.07%)</title><rect x="1082.6" y="277" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="1085.63" y="287.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="372.4" y="453" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="375.35" y="463.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.07%)</title><rect x="1053.8" y="709" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1056.79" y="719.5" ></text>
+</g>
+<g >
+<title>should_failslab (10,101,010 samples, 0.07%)</title><rect x="56.9" y="597" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="59.87" y="607.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.07%)</title><rect x="340.8" y="677" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="343.80" y="687.5" ></text>
+</g>
+<g >
+<title>git_checkout_tree (838,383,830 samples, 5.42%)</title><rect x="478.7" y="901" width="74.8" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="481.71" y="911.5" >git_chec..</text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="871.7" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="874.71" y="751.5" ></text>
+</g>
+<g >
+<title>do_readlinkat (10,101,010 samples, 0.07%)</title><rect x="1040.3" y="709" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1043.27" y="719.5" ></text>
+</g>
+<g >
+<title>elv_rb_del (10,101,010 samples, 0.07%)</title><rect x="1121.4" y="341" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1124.39" y="351.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="780.7" y="565" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="783.67" y="575.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.07%)</title><rect x="176.8" y="837" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="179.75" y="847.5" ></text>
+</g>
+<g >
+<title>do_wp_page (10,101,010 samples, 0.07%)</title><rect x="177.7" y="693" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="180.66" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="1113.3" y="549" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1116.28" y="559.5" ></text>
+</g>
+<g >
+<title>iterate_dir (30,303,030 samples, 0.20%)</title><rect x="681.5" y="741" width="2.7" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="684.52" y="751.5" ></text>
+</g>
+<g >
+<title>getdents64 (101,010,100 samples, 0.65%)</title><rect x="259.7" y="757" width="9.0" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="262.68" y="767.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.07%)</title><rect x="432.7" y="709" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="435.74" y="719.5" ></text>
+</g>
+<g >
+<title>ima_file_check (10,101,010 samples, 0.07%)</title><rect x="701.4" y="581" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="704.35" y="591.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.07%)</title><rect x="1157.4" y="613" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1160.45" y="623.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="169.5" y="741" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="172.54" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.07%)</title><rect x="559.8" y="757" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="562.84" y="767.5" ></text>
+</g>
+<g >
+<title>start_this_handle (20,202,020 samples, 0.13%)</title><rect x="120.0" y="789" width="1.8" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="122.97" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="973.6" y="805" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="976.57" y="815.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.07%)</title><rect x="893.3" y="581" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="896.34" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (40,404,040 samples, 0.26%)</title><rect x="467.9" y="597" width="3.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="470.90" y="607.5" ></text>
+</g>
+<g >
+<title>hv_send_ipi_self (40,404,040 samples, 0.26%)</title><rect x="1342.2" y="629" width="3.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1345.23" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="523.8" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="526.78" y="687.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.07%)</title><rect x="794.2" y="549" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="797.19" y="559.5" ></text>
+</g>
+<g >
+<title>_copy_from_iter (10,101,010 samples, 0.07%)</title><rect x="1368.4" y="725" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1371.37" y="735.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="793.3" y="549" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="796.29" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1078.1" y="453" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1081.13" y="463.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1320.6" y="693" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1323.59" y="703.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.07%)</title><rect x="92.0" y="773" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="95.02" y="783.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="1186.3" y="581" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1189.29" y="591.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="92.0" y="821" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="95.02" y="831.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="753.6" y="581" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="756.63" y="591.5" ></text>
+</g>
+<g >
+<title>folio_test_hugetlb (10,101,010 samples, 0.07%)</title><rect x="594.1" y="501" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="597.09" y="511.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.07%)</title><rect x="493.1" y="613" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="496.14" y="623.5" ></text>
+</g>
+<g >
+<title>inet_stream_connect (151,515,150 samples, 0.98%)</title><rect x="1339.5" y="837" width="13.5" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1342.52" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.13%)</title><rect x="1199.8" y="725" width="1.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1202.81" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="541.8" y="805" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="544.81" y="815.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.07%)</title><rect x="315.6" y="565" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="318.56" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.20%)</title><rect x="795.1" y="789" width="2.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="798.09" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.65%)</title><rect x="900.6" y="773" width="9.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="903.56" y="783.5" ></text>
+</g>
+<g >
+<title>unlink (121,212,120 samples, 0.78%)</title><rect x="330.0" y="757" width="10.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="332.99" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="828.4" y="693" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="831.45" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="475.1" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="478.11" y="495.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="758.1" y="677" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="761.14" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="430.0" y="853" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="433.04" y="863.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="497.6" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="500.64" y="735.5" ></text>
+</g>
+<g >
+<title>find_lock_entries (10,101,010 samples, 0.07%)</title><rect x="1080.8" y="517" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1083.83" y="527.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="672.5" y="437" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="675.51" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.07%)</title><rect x="664.4" y="453" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="667.40" y="463.5" ></text>
+</g>
+<g >
+<title>atime_needs_update (10,101,010 samples, 0.07%)</title><rect x="444.5" y="613" width="0.9" height="15.0" fill="rgb(0,202,51)" rx="2" ry="2" />
+<text x="447.46" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (10,101,010 samples, 0.07%)</title><rect x="665.3" y="677" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="668.30" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.07%)</title><rect x="354.3" y="645" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="357.32" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="496.7" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="499.74" y="767.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="134.4" y="805" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="137.39" y="815.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (101,010,100 samples, 0.65%)</title><rect x="838.4" y="597" width="9.0" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="841.36" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (434,343,430 samples, 2.81%)</title><rect x="1090.7" y="773" width="38.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1093.74" y="783.5" >[li..</text>
+</g>
+<g >
+<title>__file_remove_privs (10,101,010 samples, 0.07%)</title><rect x="704.1" y="549" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="707.06" y="559.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.13%)</title><rect x="205.6" y="597" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="208.60" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="977.2" y="837" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="980.17" y="847.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="759.9" y="693" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="762.94" y="703.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="645" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1233.46" y="655.5" ></text>
+</g>
+<g >
+<title>memccpy (10,101,010 samples, 0.07%)</title><rect x="65.9" y="885" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="68.89" y="895.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (494,949,490 samples, 3.20%)</title><rect x="1130.4" y="789" width="44.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1133.40" y="799.5" >do_s..</text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.07%)</title><rect x="546.3" y="613" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="549.32" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="468.8" y="437" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="471.80" y="447.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.07%)</title><rect x="610.3" y="501" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="613.31" y="511.5" ></text>
+</g>
+<g >
+<title>fd_install (10,101,010 samples, 0.07%)</title><rect x="1062.8" y="629" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1065.80" y="639.5" ></text>
+</g>
+<g >
+<title>__tcp_close (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="709" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1339.82" y="719.5" ></text>
+</g>
+<g >
+<title>add_transaction_credits (10,101,010 samples, 0.07%)</title><rect x="1073.6" y="501" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1076.62" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (40,404,040 samples, 0.26%)</title><rect x="624.7" y="693" width="3.6" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="627.74" y="703.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.07%)</title><rect x="1237.7" y="709" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1240.67" y="719.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.07%)</title><rect x="441.8" y="869" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="444.76" y="879.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.07%)</title><rect x="1073.6" y="533" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1076.62" y="543.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (40,404,040 samples, 0.26%)</title><rect x="27.1" y="949" width="3.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="30.13" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.07%)</title><rect x="403.9" y="709" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="406.90" y="719.5" ></text>
+</g>
+<g >
+<title>cmd_dispatcher_handle_conn_internal (101,010,100 samples, 0.65%)</title><rect x="1358.5" y="917" width="9.0" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1361.45" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (20,202,020 samples, 0.13%)</title><rect x="636.5" y="629" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="639.45" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (30,303,030 samples, 0.20%)</title><rect x="1078.1" y="517" width="2.7" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1081.13" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.07%)</title><rect x="475.1" y="645" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="478.11" y="655.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.13%)</title><rect x="890.6" y="741" width="1.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="893.64" y="751.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.07%)</title><rect x="1106.1" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1109.07" y="687.5" ></text>
+</g>
+<g >
+<title>get_obj_cgroup_from_current (10,101,010 samples, 0.07%)</title><rect x="991.6" y="565" width="0.9" height="15.0" fill="rgb(0,206,71)" rx="2" ry="2" />
+<text x="994.59" y="575.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1212.4" y="501" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1215.43" y="511.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="647.3" y="549" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="650.27" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="483.2" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="486.22" y="703.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.07%)</title><rect x="863.6" y="549" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="866.60" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="1190.8" y="693" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1193.80" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="1182.7" y="741" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1185.68" y="751.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.07%)</title><rect x="1114.2" y="501" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1117.18" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="659.0" y="549" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="661.99" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (111,111,110 samples, 0.72%)</title><rect x="745.5" y="709" width="9.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="748.52" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (10,101,010 samples, 0.07%)</title><rect x="1371.1" y="341" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1374.07" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (30,303,030 samples, 0.20%)</title><rect x="539.1" y="613" width="2.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="542.11" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (1,777,777,760 samples, 11.50%)</title><rect x="182.2" y="805" width="158.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="185.16" y="815.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>ext4_truncate (20,202,020 samples, 0.13%)</title><rect x="834.8" y="581" width="1.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="837.76" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="523.8" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="526.78" y="655.5" ></text>
+</g>
+<g >
+<title>__mutex_lock_slowpath (10,101,010 samples, 0.07%)</title><rect x="191.2" y="501" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="194.18" y="511.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.07%)</title><rect x="777.1" y="725" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="780.07" y="735.5" ></text>
+</g>
+<g >
+<title>dentry_kill (60,606,060 samples, 0.39%)</title><rect x="833.0" y="677" width="5.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="835.95" y="687.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.07%)</title><rect x="971.8" y="501" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="974.76" y="511.5" ></text>
+</g>
+<g >
+<title>folio_wait_writeback (10,101,010 samples, 0.07%)</title><rect x="816.7" y="533" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="819.73" y="543.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="1314.3" y="773" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1317.28" y="783.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="1051.1" y="565" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1054.08" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="552.6" y="821" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="555.63" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (40,404,040 samples, 0.26%)</title><rect x="1049.3" y="693" width="3.6" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1052.28" y="703.5" ></text>
+</g>
+<g >
+<title>open64 (30,303,030 samples, 0.20%)</title><rect x="445.4" y="789" width="2.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="448.36" y="799.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.07%)</title><rect x="595.0" y="565" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="597.99" y="575.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.07%)</title><rect x="565.2" y="581" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="568.24" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.33%)</title><rect x="595.9" y="757" width="4.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="598.89" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (30,303,030 samples, 0.20%)</title><rect x="681.5" y="757" width="2.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="684.52" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="131.7" y="789" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="134.69" y="799.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="202.0" y="581" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="204.99" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="721.2" y="725" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="724.18" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.07%)</title><rect x="609.4" y="597" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="612.41" y="607.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1099.8" y="453" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1102.76" y="463.5" ></text>
+</g>
+<g >
+<title>inflate (10,101,010 samples, 0.07%)</title><rect x="686.9" y="725" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="689.93" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.07%)</title><rect x="1052.0" y="629" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1054.99" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="1032.2" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1035.16" y="623.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="165" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1013.52" y="175.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (10,101,010 samples, 0.07%)</title><rect x="668.9" y="437" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="671.90" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_link (10,101,010 samples, 0.07%)</title><rect x="542.7" y="725" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="545.71" y="735.5" ></text>
+</g>
+<g >
+<title>mutex_lock (10,101,010 samples, 0.07%)</title><rect x="191.2" y="517" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="194.18" y="527.5" ></text>
+</g>
+<g >
+<title>git_reference_symbolic_create (222,222,220 samples, 1.44%)</title><rect x="757.2" y="821" width="19.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="760.24" y="831.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.07%)</title><rect x="241.7" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="244.65" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="307.5" y="453" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="310.45" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="773.5" y="677" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="776.46" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.26%)</title><rect x="378.7" y="821" width="3.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="381.66" y="831.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="736.5" y="725" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="739.51" y="735.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="406.6" y="581" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="409.60" y="591.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (20,202,020 samples, 0.13%)</title><rect x="261.5" y="533" width="1.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="264.48" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="759.0" y="581" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="762.04" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="773" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1233.46" y="783.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (20,202,020 samples, 0.13%)</title><rect x="912.3" y="453" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="915.27" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1175.5" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1178.47" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.07%)</title><rect x="710.4" y="565" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="713.37" y="575.5" ></text>
+</g>
+<g >
+<title>cap_inode_need_killpriv (10,101,010 samples, 0.07%)</title><rect x="761.7" y="501" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="764.74" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (20,202,020 samples, 0.13%)</title><rect x="1046.6" y="677" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1049.58" y="687.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.07%)</title><rect x="429.1" y="773" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="432.14" y="783.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="328.2" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="331.18" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="521.1" y="693" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="524.08" y="703.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="127.2" y="805" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="130.18" y="815.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.07%)</title><rect x="757.2" y="469" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="760.24" y="479.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.07%)</title><rect x="769.0" y="661" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="771.95" y="671.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (121,212,120 samples, 0.78%)</title><rect x="240.8" y="661" width="10.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="243.75" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (40,404,040 samples, 0.26%)</title><rect x="1045.7" y="725" width="3.6" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="1048.68" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="751.8" y="661" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="754.83" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (303,030,300 samples, 1.96%)</title><rect x="797.8" y="837" width="27.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="800.80" y="847.5" >[..</text>
+</g>
+<g >
+<title>block_invalidate_folio (10,101,010 samples, 0.07%)</title><rect x="424.6" y="629" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="427.63" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="455.3" y="709" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="458.28" y="719.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="198.4" y="469" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="201.39" y="479.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1325.1" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1328.10" y="783.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="902.4" y="677" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="905.36" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="656.3" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="659.28" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.07%)</title><rect x="645.5" y="501" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="648.47" y="511.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.07%)</title><rect x="293.9" y="421" width="0.9" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="296.93" y="431.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="373" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1013.52" y="383.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.07%)</title><rect x="547.2" y="613" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="550.22" y="623.5" ></text>
+</g>
+<g >
+<title>sock_read_iter (20,202,020 samples, 0.13%)</title><rect x="1364.8" y="741" width="1.8" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1367.76" y="751.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.07%)</title><rect x="198.4" y="501" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="201.39" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (50,505,050 samples, 0.33%)</title><rect x="1076.3" y="533" width="4.5" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="1079.32" y="543.5" ></text>
+</g>
+<g >
+<title>__release_sock (30,303,030 samples, 0.20%)</title><rect x="1339.5" y="773" width="2.7" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1342.52" y="783.5" ></text>
+</g>
+<g >
+<title>generic_write_end (10,101,010 samples, 0.07%)</title><rect x="647.3" y="565" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="650.27" y="575.5" ></text>
+</g>
+<g >
+<title>file_close (20,202,020 samples, 0.13%)</title><rect x="1308.0" y="885" width="1.8" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1310.98" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="1002.4" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1005.41" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="776.2" y="597" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="779.17" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (30,303,030 samples, 0.20%)</title><rect x="1097.1" y="549" width="2.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1100.05" y="559.5" ></text>
+</g>
+<g >
+<title>folio_alloc_buffers (10,101,010 samples, 0.07%)</title><rect x="644.6" y="517" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="647.57" y="527.5" ></text>
+</g>
+<g >
+<title>alloc_fd (10,101,010 samples, 0.07%)</title><rect x="982.6" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="985.58" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (40,404,040 samples, 0.26%)</title><rect x="247.1" y="613" width="3.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="250.06" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="412.0" y="629" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="415.01" y="639.5" ></text>
+</g>
+<g >
+<title>task_work_run (20,202,020 samples, 0.13%)</title><rect x="1308.0" y="773" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1310.98" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.07%)</title><rect x="788.8" y="645" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="791.79" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="743.7" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="746.72" y="719.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.07%)</title><rect x="530.1" y="773" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="533.09" y="783.5" ></text>
+</g>
+<g >
+<title>d_instantiate (10,101,010 samples, 0.07%)</title><rect x="73.1" y="757" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="76.10" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="1077.2" y="469" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1080.22" y="479.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="517" width="2.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1381.28" y="527.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (20,202,020 samples, 0.13%)</title><rect x="50.6" y="837" width="1.8" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="53.56" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="49.7" y="869" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="52.66" y="879.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.07%)</title><rect x="1187.2" y="597" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="1190.19" y="607.5" ></text>
+</g>
+<g >
+<title>unlock_buffer (10,101,010 samples, 0.07%)</title><rect x="988.9" y="373" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="991.89" y="383.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="951.0" y="677" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="954.03" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="411.1" y="565" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="414.11" y="575.5" ></text>
+</g>
+<g >
+<title>do_writepages (111,111,110 samples, 0.72%)</title><rect x="668.9" y="565" width="9.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="671.90" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1100.7" y="485" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1103.66" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="273.2" y="613" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="276.20" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mb_free_metadata (10,101,010 samples, 0.07%)</title><rect x="197.5" y="421" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="200.49" y="431.5" ></text>
+</g>
+<g >
+<title>vmbus_on_event (10,101,010 samples, 0.07%)</title><rect x="654.5" y="517" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="657.48" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="824.8" y="757" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="827.84" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.07%)</title><rect x="1098.0" y="501" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1100.96" y="511.5" ></text>
+</g>
+<g >
+<title>__anon_inode_getfile (10,101,010 samples, 0.07%)</title><rect x="71.3" y="789" width="0.9" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="74.29" y="799.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.07%)</title><rect x="802.3" y="613" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="805.31" y="623.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="1042.1" y="709" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1045.07" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="833.0" y="565" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="835.95" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="298.4" y="501" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="301.44" y="511.5" ></text>
+</g>
+<g >
+<title>git_signature_now (10,101,010 samples, 0.07%)</title><rect x="794.2" y="805" width="0.9" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="797.19" y="815.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.07%)</title><rect x="555.3" y="661" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="558.33" y="671.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="385.0" y="629" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="387.97" y="639.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="1015.0" y="485" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1018.03" y="495.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.07%)</title><rect x="492.2" y="613" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="495.23" y="623.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (80,808,080 samples, 0.52%)</title><rect x="1181.8" y="821" width="7.2" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1184.78" y="831.5" ></text>
+</g>
+<g >
+<title>client_destroy_handler (171,717,170 samples, 1.11%)</title><rect x="49.7" y="933" width="15.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="52.66" y="943.5" ></text>
+</g>
+<g >
+<title>git_repository_open_ext (212,121,210 samples, 1.37%)</title><rect x="736.5" y="789" width="18.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="739.51" y="799.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (10,101,010 samples, 0.07%)</title><rect x="1388.2" y="261" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1391.20" y="271.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (20,202,020 samples, 0.13%)</title><rect x="1308.0" y="789" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1310.98" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="937.5" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="940.51" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (40,404,040 samples, 0.26%)</title><rect x="1049.3" y="757" width="3.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1052.28" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="888.8" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="891.84" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (20,202,020 samples, 0.13%)</title><rect x="718.5" y="677" width="1.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="721.48" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="152.4" y="757" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="155.42" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1176.4" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1179.37" y="831.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_revoke (10,101,010 samples, 0.07%)</title><rect x="227.2" y="453" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="230.23" y="463.5" ></text>
+</g>
+<g >
+<title>mb_mark_used (10,101,010 samples, 0.07%)</title><rect x="1166.5" y="549" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1169.46" y="559.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.07%)</title><rect x="177.7" y="741" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="180.66" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.59%)</title><rect x="857.3" y="741" width="8.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="860.29" y="751.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.07%)</title><rect x="314.7" y="581" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="317.66" y="591.5" ></text>
+</g>
+<g >
+<title>iput (60,606,060 samples, 0.39%)</title><rect x="833.0" y="629" width="5.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="835.95" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (30,303,030 samples, 0.20%)</title><rect x="1115.1" y="565" width="2.7" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1118.08" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (40,404,040 samples, 0.26%)</title><rect x="1317.0" y="773" width="3.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1319.99" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="900.6" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="903.56" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="897.9" y="821" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="900.85" y="831.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (20,202,020 samples, 0.13%)</title><rect x="1349.4" y="501" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1352.44" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1217.8" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1220.84" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1156.5" y="645" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1159.54" y="655.5" ></text>
+</g>
+<g >
+<title>link (50,505,050 samples, 0.33%)</title><rect x="1106.1" y="757" width="4.5" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1109.07" y="767.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.07%)</title><rect x="1024.0" y="661" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1027.04" y="671.5" ></text>
+</g>
+<g >
+<title>filp_close (10,101,010 samples, 0.07%)</title><rect x="1220.5" y="661" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1223.54" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (373,737,370 samples, 2.42%)</title><rect x="562.5" y="773" width="33.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="565.54" y="783.5" >[l..</text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.07%)</title><rect x="497.6" y="741" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="500.64" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_info (10,101,010 samples, 0.07%)</title><rect x="1255.7" y="629" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1258.70" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1210.6" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1213.63" y="703.5" ></text>
+</g>
+<g >
+<title>____fput (20,202,020 samples, 0.13%)</title><rect x="253.4" y="661" width="1.8" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="256.37" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="714.0" y="613" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="716.97" y="623.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="1070.9" y="613" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1073.91" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.07%)</title><rect x="625.6" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="628.64" y="623.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.07%)</title><rect x="229.9" y="549" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="232.93" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.07%)</title><rect x="760.8" y="517" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="763.84" y="527.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="783.4" y="741" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="786.38" y="751.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.07%)</title><rect x="453.5" y="613" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="456.47" y="623.5" ></text>
+</g>
+<g >
+<title>submit_bio_wait_endio (10,101,010 samples, 0.07%)</title><rect x="818.5" y="197" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="821.53" y="207.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.20%)</title><rect x="121.8" y="805" width="2.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="124.77" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mmap (10,101,010 samples, 0.07%)</title><rect x="67.7" y="805" width="0.9" height="15.0" fill="rgb(0,208,75)" rx="2" ry="2" />
+<text x="70.69" y="815.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (50,505,050 samples, 0.33%)</title><rect x="526.5" y="853" width="4.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="529.49" y="863.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.07%)</title><rect x="394.9" y="597" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="397.89" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (20,202,020 samples, 0.13%)</title><rect x="171.3" y="853" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="174.35" y="863.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="460.7" y="629" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="463.69" y="639.5" ></text>
+</g>
+<g >
+<title>should_failslab (10,101,010 samples, 0.07%)</title><rect x="1181.8" y="677" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1184.78" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.07%)</title><rect x="890.6" y="613" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="893.64" y="623.5" ></text>
+</g>
+<g >
+<title>dput (50,505,050 samples, 0.33%)</title><rect x="462.5" y="725" width="4.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="465.49" y="735.5" ></text>
+</g>
+<g >
+<title>put_cred_rcu (10,101,010 samples, 0.07%)</title><rect x="198.4" y="373" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="201.39" y="383.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="497.6" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="500.64" y="783.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.07%)</title><rect x="842.0" y="341" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="844.97" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.07%)</title><rect x="951.9" y="485" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="954.93" y="495.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="663.5" y="453" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="666.49" y="463.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (20,202,020 samples, 0.13%)</title><rect x="1384.6" y="693" width="1.8" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1387.59" y="703.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="842.0" y="453" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="844.97" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (30,303,030 samples, 0.20%)</title><rect x="129.0" y="757" width="2.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="131.98" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inc_count (10,101,010 samples, 0.07%)</title><rect x="87.5" y="885" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="90.52" y="895.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.20%)</title><rect x="238.0" y="677" width="2.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="241.05" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="1201.6" y="725" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1204.61" y="735.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="198.4" y="453" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="201.39" y="463.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.07%)</title><rect x="467.0" y="677" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="470.00" y="687.5" ></text>
+</g>
+<g >
+<title>cgroup_css_set_fork (10,101,010 samples, 0.07%)</title><rect x="34.3" y="917" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="37.34" y="927.5" ></text>
+</g>
+<g >
+<title>__rb_insert_augmented (10,101,010 samples, 0.07%)</title><rect x="1303.5" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1306.47" y="719.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (10,101,010 samples, 0.07%)</title><rect x="1371.1" y="549" width="0.9" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1374.07" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="89.3" y="805" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="92.32" y="815.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (10,101,010 samples, 0.07%)</title><rect x="1371.1" y="533" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1374.07" y="543.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.07%)</title><rect x="174.0" y="869" width="1.0" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="177.05" y="879.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.07%)</title><rect x="376.9" y="709" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="379.86" y="719.5" ></text>
+</g>
+<g >
+<title>ext4fs_dirhash (20,202,020 samples, 0.13%)</title><rect x="626.5" y="629" width="1.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="629.54" y="639.5" ></text>
+</g>
+<g >
+<title>fib_lookup_good_nhc (10,101,010 samples, 0.07%)</title><rect x="1348.5" y="741" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1351.54" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1063.7" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1066.70" y="719.5" ></text>
+</g>
+<g >
+<title>libjson_send (90,909,090 samples, 0.59%)</title><rect x="12.7" y="965" width="8.1" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="15.70" y="975.5" ></text>
+</g>
+<g >
+<title>__d_add (20,202,020 samples, 0.13%)</title><rect x="1058.3" y="597" width="1.8" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="1061.30" y="607.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="1099.8" y="437" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1102.76" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="1146.6" y="645" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1149.63" y="655.5" ></text>
+</g>
+<g >
+<title>__alloc_percpu_gfp (10,101,010 samples, 0.07%)</title><rect x="1305.3" y="709" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="1308.27" y="719.5" ></text>
+</g>
+<g >
+<title>path_openat (60,606,060 samples, 0.39%)</title><rect x="504.0" y="725" width="5.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="506.95" y="735.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="751.8" y="501" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="754.83" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="414.7" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="417.72" y="799.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="507.6" y="597" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="510.56" y="607.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.07%)</title><rect x="1309.8" y="821" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1312.78" y="831.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.07%)</title><rect x="1066.4" y="661" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1069.41" y="671.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.07%)</title><rect x="549.0" y="725" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="552.02" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="877.1" y="693" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="880.12" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="483.2" y="661" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="486.22" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.07%)</title><rect x="441.8" y="757" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="444.76" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.07%)</title><rect x="431.8" y="773" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="434.84" y="783.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.07%)</title><rect x="1050.2" y="645" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1053.18" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="433.6" y="693" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="436.64" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="865.4" y="725" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="868.40" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="412.9" y="565" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="415.91" y="575.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.07%)</title><rect x="414.7" y="725" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="417.72" y="735.5" ></text>
+</g>
+<g >
+<title>do_poll.constprop.0 (80,808,080 samples, 0.52%)</title><rect x="41.5" y="853" width="7.3" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="44.55" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="410.2" y="645" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="413.21" y="655.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (10,101,010 samples, 0.07%)</title><rect x="1370.2" y="581" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1373.17" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (20,202,020 samples, 0.13%)</title><rect x="207.4" y="533" width="1.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="210.40" y="543.5" ></text>
+</g>
+<g >
+<title>kfree (10,101,010 samples, 0.07%)</title><rect x="340.8" y="629" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="343.80" y="639.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="842.0" y="389" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="844.97" y="399.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="855.5" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="858.49" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (20,202,020 samples, 0.13%)</title><rect x="190.3" y="533" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="193.27" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="937.5" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="940.51" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="715.8" y="725" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="718.77" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (40,404,040 samples, 0.26%)</title><rect x="467.9" y="581" width="3.6" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="470.90" y="591.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.07%)</title><rect x="894.2" y="661" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="897.25" y="671.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (101,010,100 samples, 0.65%)</title><rect x="879.8" y="773" width="9.0" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="882.82" y="783.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.07%)</title><rect x="555.3" y="645" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="558.33" y="655.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="953.7" y="581" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="956.74" y="591.5" ></text>
+</g>
+<g >
+<title>iput (90,909,090 samples, 0.59%)</title><rect x="384.1" y="709" width="8.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="387.07" y="719.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.07%)</title><rect x="320.1" y="741" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="323.07" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (161,616,160 samples, 1.05%)</title><rect x="27.1" y="1013" width="14.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="30.13" y="1023.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="1048.4" y="677" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1051.38" y="687.5" ></text>
+</g>
+<g >
+<title>_IO_default_xsputn (10,101,010 samples, 0.07%)</title><rect x="997.0" y="661" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1000.00" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1069.1" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1072.11" y="687.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="565" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1368.66" y="575.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1207.0" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1210.02" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="326.4" y="693" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="329.38" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="407.5" y="645" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="410.50" y="655.5" ></text>
+</g>
+<g >
+<title>read (20,202,020 samples, 0.13%)</title><rect x="1310.7" y="869" width="1.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1313.68" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="890.6" y="789" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="893.64" y="799.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="832.1" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="835.05" y="687.5" ></text>
+</g>
+<g >
+<title>__schedule (20,202,020 samples, 0.13%)</title><rect x="1310.7" y="741" width="1.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1313.68" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="975.4" y="645" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="978.37" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="757.2" y="565" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="760.24" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1077.2" y="485" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1080.22" y="495.5" ></text>
+</g>
+<g >
+<title>git_remote_download (80,808,080 samples, 0.52%)</title><rect x="890.6" y="853" width="7.3" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="893.64" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="865.4" y="693" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="868.40" y="703.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="901.5" y="501" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="904.46" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="210.1" y="517" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="213.10" y="527.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (10,101,010 samples, 0.07%)</title><rect x="1371.1" y="565" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1374.07" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="366.0" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="369.04" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (80,808,080 samples, 0.52%)</title><rect x="1249.4" y="773" width="7.2" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1252.39" y="783.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="372.4" y="517" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="375.35" y="527.5" ></text>
+</g>
+<g >
+<title>clear_inode (10,101,010 samples, 0.07%)</title><rect x="434.5" y="661" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="437.55" y="671.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.07%)</title><rect x="1131.3" y="677" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1134.31" y="687.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="877.1" y="597" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="880.12" y="607.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.07%)</title><rect x="684.2" y="757" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="687.23" y="767.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.07%)</title><rect x="477.8" y="837" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="480.81" y="847.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (10,101,010 samples, 0.07%)</title><rect x="603.1" y="597" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="606.10" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (30,303,030 samples, 0.20%)</title><rect x="696.8" y="517" width="2.7" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="699.85" y="527.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.07%)</title><rect x="876.2" y="677" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="879.22" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_superblock_csum_set (10,101,010 samples, 0.07%)</title><rect x="297.5" y="581" width="0.9" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" />
+<text x="300.54" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="690.5" y="709" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="693.54" y="719.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.07%)</title><rect x="796.9" y="757" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="799.90" y="767.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.07%)</title><rect x="339.0" y="565" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="342.00" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="494.0" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="497.04" y="735.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (70,707,070 samples, 0.46%)</title><rect x="185.8" y="597" width="6.3" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="188.77" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1066.4" y="693" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1069.41" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (141,414,140 samples, 0.91%)</title><rect x="1158.3" y="645" width="12.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1161.35" y="655.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.07%)</title><rect x="858.2" y="565" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="861.19" y="575.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="588.7" y="533" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="591.68" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="220.9" y="549" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="223.92" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_open (20,202,020 samples, 0.13%)</title><rect x="750.0" y="517" width="1.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="753.03" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="1251.2" y="709" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1254.19" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_create (474,747,470 samples, 3.07%)</title><rect x="116.4" y="853" width="42.3" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="119.36" y="863.5" >ext..</text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1198.0" y="693" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1201.01" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="1116.0" y="533" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1118.98" y="543.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.07%)</title><rect x="701.4" y="597" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="704.35" y="607.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.07%)</title><rect x="475.1" y="741" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="478.11" y="751.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.07%)</title><rect x="547.2" y="677" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="550.22" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.07%)</title><rect x="957.3" y="613" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="960.34" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_da_reserve_space (10,101,010 samples, 0.07%)</title><rect x="1052.0" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1054.99" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_mstamp_refresh (10,101,010 samples, 0.07%)</title><rect x="55.1" y="597" width="0.9" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="58.07" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_push (101,010,100 samples, 0.65%)</title><rect x="1327.8" y="741" width="9.0" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1330.81" y="751.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (10,101,010 samples, 0.07%)</title><rect x="838.4" y="517" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="841.36" y="527.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="619.3" y="677" width="1.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="622.33" y="687.5" ></text>
+</g>
+<g >
+<title>ip_output (80,808,080 samples, 0.52%)</title><rect x="1327.8" y="629" width="7.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1330.81" y="639.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.07%)</title><rect x="98.3" y="805" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="101.33" y="815.5" ></text>
+</g>
+<g >
+<title>_raw_write_lock (10,101,010 samples, 0.07%)</title><rect x="812.2" y="549" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="815.22" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (151,515,150 samples, 0.98%)</title><rect x="1157.4" y="661" width="13.6" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1160.45" y="671.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="962.7" y="565" width="1.0" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="965.75" y="575.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.07%)</title><rect x="668.9" y="405" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="671.90" y="415.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="677" width="3.6" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1374.97" y="687.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="98.3" y="869" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="101.33" y="879.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.07%)</title><rect x="1112.4" y="533" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1115.38" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1217.8" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1220.84" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.07%)</title><rect x="484.1" y="709" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="487.12" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (50,505,050 samples, 0.33%)</title><rect x="1376.5" y="757" width="4.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1379.48" y="767.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="378.7" y="709" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="381.66" y="719.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.13%)</title><rect x="550.8" y="773" width="1.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="553.82" y="783.5" ></text>
+</g>
+<g >
+<title>bit_wait_io (10,101,010 samples, 0.07%)</title><rect x="571.6" y="549" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="574.55" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1233.2" y="757" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1236.16" y="767.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.07%)</title><rect x="703.2" y="581" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="706.15" y="591.5" ></text>
+</g>
+<g >
+<title>__d_lookup_unhash (10,101,010 samples, 0.07%)</title><rect x="782.5" y="501" width="0.9" height="15.0" fill="rgb(0,215,109)" rx="2" ry="2" />
+<text x="785.48" y="511.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="1197.1" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1200.11" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="958.2" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="961.24" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="482.3" y="709" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="485.32" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="550.8" y="869" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="553.82" y="879.5" ></text>
+</g>
+<g >
+<title>security_d_instantiate (10,101,010 samples, 0.07%)</title><rect x="73.1" y="741" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="76.10" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (222,222,220 samples, 1.44%)</title><rect x="997.0" y="789" width="19.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1000.00" y="799.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1084.4" y="437" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1087.44" y="447.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.07%)</title><rect x="1056.5" y="565" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1059.49" y="575.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.07%)</title><rect x="1269.2" y="661" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1272.22" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="96.5" y="981" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="99.53" y="991.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="613" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1064.90" y="623.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (10,101,010 samples, 0.07%)</title><rect x="558.9" y="885" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="561.94" y="895.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="10.9" y="965" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="13.90" y="975.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.33%)</title><rect x="704.1" y="693" width="4.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="707.06" y="703.5" ></text>
+</g>
+<g >
+<title>filemap_flush (101,010,100 samples, 0.65%)</title><rect x="838.4" y="629" width="9.0" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="841.36" y="639.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (30,303,030 samples, 0.20%)</title><rect x="691.4" y="549" width="2.7" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="694.44" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.07%)</title><rect x="1224.1" y="629" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="1227.15" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="732.0" y="677" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="735.00" y="687.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="870.8" y="597" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="873.81" y="607.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="734.7" y="469" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="737.70" y="479.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.07%)</title><rect x="1372.0" y="581" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1374.97" y="591.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="654.5" y="565" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="657.48" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1193.5" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1196.50" y="735.5" ></text>
+</g>
+<g >
+<title>anon_vma_clone (80,808,080 samples, 0.52%)</title><rect x="1262.9" y="709" width="7.2" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1265.91" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="997.0" y="725" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1000.00" y="735.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (10,101,010 samples, 0.07%)</title><rect x="1379.2" y="293" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1382.18" y="303.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="753.6" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="756.63" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="964.6" y="725" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="967.55" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.07%)</title><rect x="1017.7" y="677" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1020.73" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="654.5" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="657.48" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (434,343,430 samples, 2.81%)</title><rect x="1090.7" y="805" width="38.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1093.74" y="815.5" >[li..</text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="819.4" y="421" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="822.43" y="431.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.07%)</title><rect x="778.0" y="677" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="780.97" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1178.2" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1181.18" y="815.5" ></text>
+</g>
+<g >
+<title>__folio_batch_release (10,101,010 samples, 0.07%)</title><rect x="677.0" y="501" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="680.02" y="511.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="501.2" y="677" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="504.25" y="687.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="406.6" y="645" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="409.60" y="655.5" ></text>
+</g>
+<g >
+<title>libgit_clone_to_tmp (7,797,979,720 samples, 50.42%)</title><rect x="560.7" y="917" width="695.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="563.74" y="927.5" >libgit_clone_to_tmp</text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1062.8" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1065.80" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (20,202,020 samples, 0.13%)</title><rect x="1004.2" y="501" width="1.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1007.21" y="511.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.07%)</title><rect x="406.6" y="549" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="409.60" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1034.9" y="629" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1037.86" y="639.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (20,202,020 samples, 0.13%)</title><rect x="970.0" y="741" width="1.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="972.96" y="751.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (30,303,030 samples, 0.20%)</title><rect x="769.9" y="677" width="2.7" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="772.86" y="687.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.07%)</title><rect x="15.4" y="645" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="18.41" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="791.5" y="693" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="794.49" y="703.5" ></text>
+</g>
+<g >
+<title>eventfd (10,101,010 samples, 0.07%)</title><rect x="71.3" y="885" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="74.29" y="895.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="805.9" y="773" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="808.91" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.07%)</title><rect x="388.6" y="549" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="391.58" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.65%)</title><rect x="517.5" y="805" width="9.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="520.47" y="815.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.07%)</title><rect x="177.7" y="757" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="180.66" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.46%)</title><rect x="185.8" y="629" width="6.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="188.77" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="667.1" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="670.10" y="607.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (60,606,060 samples, 0.39%)</title><rect x="311.1" y="645" width="5.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="314.06" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="867.2" y="517" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="870.20" y="527.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="782.5" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="785.48" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1067.3" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1070.31" y="703.5" ></text>
+</g>
+<g >
+<title>mas_split.isra.0 (20,202,020 samples, 0.13%)</title><rect x="1289.0" y="645" width="1.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1292.05" y="655.5" ></text>
+</g>
+<g >
+<title>new_inode (30,303,030 samples, 0.20%)</title><rect x="138.0" y="821" width="2.7" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="140.99" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.07%)</title><rect x="992.5" y="629" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="995.50" y="639.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.07%)</title><rect x="1031.3" y="533" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1034.25" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.07%)</title><rect x="662.6" y="501" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="665.59" y="511.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="272.3" y="565" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="275.30" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (40,404,040 samples, 0.26%)</title><rect x="787.0" y="725" width="3.6" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="789.98" y="735.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.07%)</title><rect x="700.5" y="453" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="703.45" y="463.5" ></text>
+</g>
+<g >
+<title>futex_wake (10,101,010 samples, 0.07%)</title><rect x="74.0" y="853" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="77.00" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1375.6" y="901" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1378.58" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="764.4" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="767.45" y="703.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="92.0" y="789" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="95.02" y="799.5" ></text>
+</g>
+<g >
+<title>__inet_hash_connect (10,101,010 samples, 0.07%)</title><rect x="1382.8" y="773" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1385.79" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (90,909,090 samples, 0.59%)</title><rect x="260.6" y="709" width="8.1" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="263.58" y="719.5" ></text>
+</g>
+<g >
+<title>scsi_dma_unmap (10,101,010 samples, 0.07%)</title><rect x="127.2" y="693" width="0.9" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="130.18" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.07%)</title><rect x="247.1" y="597" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="250.06" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1314.3" y="885" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1317.28" y="895.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.07%)</title><rect x="1114.2" y="517" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1117.18" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1308.0" y="853" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1310.98" y="863.5" ></text>
+</g>
+<g >
+<title>lockref_put_return (10,101,010 samples, 0.07%)</title><rect x="258.8" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="261.78" y="639.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (20,202,020 samples, 0.13%)</title><rect x="1268.3" y="693" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1271.31" y="703.5" ></text>
+</g>
+<g >
+<title>mas_node_count_gfp (10,101,010 samples, 0.07%)</title><rect x="1284.5" y="709" width="0.9" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="1287.54" y="719.5" ></text>
+</g>
+<g >
+<title>git_repository__cleanup (10,101,010 samples, 0.07%)</title><rect x="977.2" y="853" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="980.17" y="863.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (10,101,010 samples, 0.07%)</title><rect x="957.3" y="533" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="960.34" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="565.2" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="568.24" y="719.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (80,808,080 samples, 0.52%)</title><rect x="1327.8" y="565" width="7.2" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1330.81" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="71.3" y="869" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="74.29" y="879.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="705.9" y="421" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="708.86" y="431.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="560.7" y="837" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="563.74" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (20,202,020 samples, 0.13%)</title><rect x="974.5" y="661" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="977.47" y="671.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.07%)</title><rect x="477.8" y="773" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="480.81" y="783.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="586.9" y="421" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="589.88" y="431.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="960.9" y="709" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="963.95" y="719.5" ></text>
+</g>
+<g >
+<title>ci_run_git_repo (12,848,484,720 samples, 83.08%)</title><rect x="175.9" y="949" width="1146.5" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="178.85" y="959.5" >ci_run_git_repo</text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.07%)</title><rect x="1062.8" y="645" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1065.80" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.07%)</title><rect x="609.4" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="612.41" y="623.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.07%)</title><rect x="1082.6" y="389" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1085.63" y="399.5" ></text>
+</g>
+<g >
+<title>lockref_put_return (20,202,020 samples, 0.13%)</title><rect x="392.2" y="709" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="395.18" y="719.5" ></text>
+</g>
+<g >
+<title>d_splice_alias (10,101,010 samples, 0.07%)</title><rect x="172.2" y="821" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="175.25" y="831.5" ></text>
+</g>
+<g >
+<title>funlockfile (10,101,010 samples, 0.07%)</title><rect x="558.0" y="885" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="561.03" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="964.6" y="693" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="967.55" y="703.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_ipv4 (10,101,010 samples, 0.07%)</title><rect x="57.8" y="485" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="60.77" y="495.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (30,303,030 samples, 0.20%)</title><rect x="15.4" y="709" width="2.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="18.41" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="1116.0" y="469" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1118.98" y="479.5" ></text>
+</g>
+<g >
+<title>tcp_stream_alloc_skb (10,101,010 samples, 0.07%)</title><rect x="19.9" y="773" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="22.92" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="890.6" y="773" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="893.64" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="74.9" y="901" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="77.90" y="911.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.07%)</title><rect x="567.0" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="570.05" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="122.7" y="773" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="125.67" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="1017.7" y="661" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1020.73" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="975.4" y="629" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="978.37" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_bread (30,303,030 samples, 0.20%)</title><rect x="260.6" y="597" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="263.58" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_server_accept (80,808,080 samples, 0.52%)</title><rect x="66.8" y="917" width="7.2" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="69.79" y="927.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="887.0" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="890.03" y="671.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.07%)</title><rect x="778.0" y="693" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="780.97" y="703.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="122.7" y="709" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="125.67" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="908.7" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="911.67" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (20,202,020 samples, 0.13%)</title><rect x="116.4" y="837" width="1.8" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="119.36" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="732.0" y="613" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="735.00" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="444.5" y="853" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="447.46" y="863.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1354.8" y="885" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1357.85" y="895.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="238.0" y="741" width="2.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="241.05" y="751.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.07%)</title><rect x="779.8" y="709" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="782.77" y="719.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.07%)</title><rect x="246.2" y="645" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="249.16" y="655.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="566.1" y="709" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="569.15" y="719.5" ></text>
+</g>
+<g >
+<title>__irq_work_queue_local (70,707,070 samples, 0.46%)</title><rect x="1342.2" y="661" width="6.3" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="1345.23" y="671.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (40,404,040 samples, 0.26%)</title><rect x="1386.4" y="517" width="3.6" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1389.39" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="832.1" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="835.05" y="767.5" ></text>
+</g>
+<g >
+<title>iterate_dir (10,101,010 samples, 0.07%)</title><rect x="862.7" y="613" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="865.70" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1094.4" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1097.35" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.46%)</title><rect x="14.5" y="869" width="6.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="17.51" y="879.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="1217.8" y="757" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1220.84" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="305.6" y="485" width="1.0" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="308.65" y="495.5" ></text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.13%)</title><rect x="205.6" y="613" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="208.60" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (111,111,110 samples, 0.72%)</title><rect x="668.9" y="533" width="9.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="671.90" y="543.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.07%)</title><rect x="109.2" y="709" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="112.15" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (20,202,020 samples, 0.13%)</title><rect x="814.0" y="501" width="1.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="817.02" y="511.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.07%)</title><rect x="714.9" y="757" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="717.87" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.07%)</title><rect x="1148.4" y="693" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="1151.43" y="703.5" ></text>
+</g>
+<g >
+<title>fprintf (20,202,020 samples, 0.13%)</title><rect x="10.9" y="981" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="13.90" y="991.5" ></text>
+</g>
+<g >
+<title>journal_end_buffer_io_sync (10,101,010 samples, 0.07%)</title><rect x="807.7" y="421" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="810.71" y="431.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.07%)</title><rect x="268.7" y="645" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="271.69" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_setent (10,101,010 samples, 0.07%)</title><rect x="473.3" y="677" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="476.31" y="687.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_handle_packet (20,202,020 samples, 0.13%)</title><rect x="1384.6" y="645" width="1.8" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1387.59" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="629" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1221.74" y="639.5" ></text>
+</g>
+<g >
+<title>git_branch_is_checked_out (303,030,300 samples, 1.96%)</title><rect x="730.2" y="821" width="27.0" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="733.20" y="831.5" >g..</text>
+</g>
+<g >
+<title>__tcp_transmit_skb (10,101,010 samples, 0.07%)</title><rect x="1332.3" y="245" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1335.31" y="255.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="109.2" y="805" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="112.15" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="1233.2" y="709" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1236.16" y="719.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (30,303,030 samples, 0.20%)</title><rect x="941.1" y="565" width="2.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="944.12" y="575.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="1379.2" y="261" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1382.18" y="271.5" ></text>
+</g>
+<g >
+<title>ext4_append (30,303,030 samples, 0.20%)</title><rect x="696.8" y="581" width="2.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="699.85" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="708.6" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="711.56" y="687.5" ></text>
+</g>
+<g >
+<title>server_ready_for_action (10,101,010 samples, 0.07%)</title><rect x="22.6" y="981" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="25.62" y="991.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.07%)</title><rect x="372.4" y="533" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="375.35" y="543.5" ></text>
+</g>
+<g >
+<title>arch_irq_work_raise (70,707,070 samples, 0.46%)</title><rect x="1342.2" y="645" width="6.3" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1345.23" y="655.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.07%)</title><rect x="284.9" y="581" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="287.92" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (40,404,040 samples, 0.26%)</title><rect x="1045.7" y="709" width="3.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1048.68" y="719.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.07%)</title><rect x="398.5" y="757" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="401.49" y="767.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.07%)</title><rect x="886.1" y="629" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="889.13" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="457.1" y="709" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="460.08" y="719.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="1191.7" y="661" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1194.70" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="686.0" y="773" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="689.03" y="783.5" ></text>
+</g>
+<g >
+<title>__destroy_inode (10,101,010 samples, 0.07%)</title><rect x="357.0" y="629" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="360.03" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="721.2" y="757" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="724.18" y="767.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="314.7" y="565" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="317.66" y="575.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="732.9" y="549" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="735.90" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.07%)</title><rect x="216.4" y="597" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="219.41" y="607.5" ></text>
+</g>
+<g >
+<title>iterate_dir (10,101,010 samples, 0.07%)</title><rect x="502.1" y="709" width="1.0" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="505.15" y="719.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.07%)</title><rect x="433.6" y="661" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="436.64" y="671.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="539.1" y="517" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="542.11" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.07%)</title><rect x="249.8" y="581" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="252.76" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (50,505,050 samples, 0.33%)</title><rect x="1009.6" y="517" width="4.5" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1012.62" y="527.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="869.9" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="872.91" y="751.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (20,202,020 samples, 0.13%)</title><rect x="25.3" y="805" width="1.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="28.32" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="730.2" y="725" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="733.20" y="735.5" ></text>
+</g>
+<g >
+<title>submit_bio (30,303,030 samples, 0.20%)</title><rect x="839.3" y="517" width="2.7" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="842.26" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.07%)</title><rect x="334.5" y="629" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="337.49" y="639.5" ></text>
+</g>
+<g >
+<title>filemap_get_pages (10,101,010 samples, 0.07%)</title><rect x="901.5" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="904.46" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="256.1" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="259.07" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="364.2" y="533" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="367.24" y="543.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.07%)</title><rect x="818.5" y="213" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="821.53" y="223.5" ></text>
+</g>
+<g >
+<title>syscall_trace_enter.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="251.6" y="661" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="254.57" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.07%)</title><rect x="412.9" y="597" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="415.91" y="607.5" ></text>
+</g>
+<g >
+<title>release_pages (10,101,010 samples, 0.07%)</title><rect x="819.4" y="469" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="822.43" y="479.5" ></text>
+</g>
+<g >
+<title>git_reference_iterator_new (90,909,090 samples, 0.59%)</title><rect x="1219.6" y="837" width="8.2" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1222.64" y="847.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (80,808,080 samples, 0.52%)</title><rect x="1327.8" y="437" width="7.2" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1330.81" y="447.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.20%)</title><rect x="924.9" y="597" width="2.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="927.89" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1000.6" y="693" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1003.61" y="703.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.07%)</title><rect x="397.6" y="677" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="400.59" y="687.5" ></text>
+</g>
+<g >
+<title>memcg_list_lru_alloc (10,101,010 samples, 0.07%)</title><rect x="170.4" y="773" width="0.9" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="173.44" y="783.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1026.7" y="693" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1029.75" y="703.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_ipv4 (10,101,010 samples, 0.07%)</title><rect x="1370.2" y="597" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1373.17" y="607.5" ></text>
+</g>
+<g >
+<title>remove (70,707,070 samples, 0.46%)</title><rect x="185.8" y="677" width="6.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="188.77" y="687.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.07%)</title><rect x="398.5" y="837" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="401.49" y="847.5" ></text>
+</g>
+<g >
+<title>kernel_clone (565,656,560 samples, 3.66%)</title><rect x="1256.6" y="789" width="50.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1259.60" y="799.5" >kerne..</text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.20%)</title><rect x="928.5" y="565" width="2.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="931.50" y="575.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="717.6" y="661" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="720.58" y="671.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1198.0" y="677" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1201.01" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (10,101,010 samples, 0.07%)</title><rect x="434.5" y="677" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="437.55" y="687.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (20,202,020 samples, 0.13%)</title><rect x="1308.0" y="805" width="1.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1310.98" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="479.6" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="482.61" y="767.5" ></text>
+</g>
+<g >
+<title>realpath (10,101,010 samples, 0.07%)</title><rect x="1231.4" y="821" width="0.9" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="1234.36" y="831.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="159.6" y="853" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="162.63" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.07%)</title><rect x="829.3" y="645" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="832.35" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.13%)</title><rect x="1011.4" y="469" width="1.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1014.42" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1310.7" y="853" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1313.68" y="863.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.07%)</title><rect x="163.2" y="885" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="166.23" y="895.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="1301.7" y="709" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1304.67" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="776.2" y="565" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="779.17" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.07%)</title><rect x="1367.5" y="725" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1370.47" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4fs_dirhash (20,202,020 samples, 0.13%)</title><rect x="402.1" y="661" width="1.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="405.10" y="671.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="533" width="0.9" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="1233.46" y="543.5" ></text>
+</g>
+<g >
+<title>d_lru_del (10,101,010 samples, 0.07%)</title><rect x="312.9" y="597" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="315.86" y="607.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.07%)</title><rect x="473.3" y="629" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="476.31" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="444.5" y="837" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="447.46" y="847.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="737.4" y="741" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="740.41" y="751.5" ></text>
+</g>
+<g >
+<title>pthread_cond_wait (40,404,040 samples, 0.26%)</title><rect x="23.5" y="965" width="3.6" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="26.52" y="975.5" ></text>
+</g>
+<g >
+<title>git_reference_foreach_name (90,909,090 samples, 0.59%)</title><rect x="1219.6" y="853" width="8.2" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1222.64" y="863.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.07%)</title><rect x="1084.4" y="405" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1087.44" y="415.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="474.2" y="757" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="477.21" y="767.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (20,202,020 samples, 0.13%)</title><rect x="912.3" y="533" width="1.8" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="915.27" y="543.5" ></text>
+</g>
+<g >
+<title>folio_mapping (10,101,010 samples, 0.07%)</title><rect x="844.7" y="469" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="847.67" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="372.4" y="437" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="375.35" y="447.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="275.9" y="581" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="278.90" y="591.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.07%)</title><rect x="1357.6" y="757" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1360.55" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.07%)</title><rect x="576.1" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="579.06" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="531.9" y="741" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="534.89" y="751.5" ></text>
+</g>
+<g >
+<title>__socket (10,101,010 samples, 0.07%)</title><rect x="1375.6" y="933" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1378.58" y="943.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.07%)</title><rect x="869.0" y="725" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="872.01" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1052.9" y="789" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1055.89" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="875.3" y="661" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="878.32" y="671.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (20,202,020 samples, 0.13%)</title><rect x="313.8" y="613" width="1.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="316.76" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="320.1" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="323.07" y="783.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="618.4" y="661" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="621.43" y="671.5" ></text>
+</g>
+<g >
+<title>validate_xmit_xfrm (10,101,010 samples, 0.07%)</title><rect x="64.1" y="405" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="67.08" y="415.5" ></text>
+</g>
+<g >
+<title>write (60,606,060 samples, 0.39%)</title><rect x="904.2" y="757" width="5.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="907.16" y="767.5" ></text>
+</g>
+<g >
+<title>mas_walk (10,101,010 samples, 0.07%)</title><rect x="430.9" y="757" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="433.94" y="767.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (10,101,010 samples, 0.07%)</title><rect x="1107.0" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1109.97" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="1188.1" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1191.09" y="655.5" ></text>
+</g>
+<g >
+<title>atime_needs_update (10,101,010 samples, 0.07%)</title><rect x="642.8" y="565" width="0.9" height="15.0" fill="rgb(0,202,51)" rx="2" ry="2" />
+<text x="645.76" y="575.5" ></text>
+</g>
+<g >
+<title>git_repository_open_ext (232,323,230 samples, 1.50%)</title><rect x="1189.0" y="837" width="20.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1191.99" y="847.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (20,202,020 samples, 0.13%)</title><rect x="500.3" y="773" width="1.8" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="503.35" y="783.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="994.3" y="645" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="997.30" y="655.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="1212.4" y="629" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1215.43" y="639.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (10,101,010 samples, 0.07%)</title><rect x="700.5" y="325" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="703.45" y="335.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="607.6" y="645" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="610.61" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="564.3" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="567.34" y="735.5" ></text>
+</g>
+<g >
+<title>dput (90,909,090 samples, 0.59%)</title><rect x="1073.6" y="661" width="8.1" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1076.62" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.07%)</title><rect x="576.1" y="629" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="579.06" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="976.3" y="805" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="979.27" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.20%)</title><rect x="96.5" y="917" width="2.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="99.53" y="927.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.20%)</title><rect x="346.2" y="661" width="2.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="349.21" y="671.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (30,303,030 samples, 0.20%)</title><rect x="1372.9" y="485" width="2.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1375.87" y="495.5" ></text>
+</g>
+<g >
+<title>add_transaction_credits (10,101,010 samples, 0.07%)</title><rect x="120.9" y="773" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="123.87" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="805.9" y="693" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="808.91" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="1189.9" y="757" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1192.90" y="767.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.07%)</title><rect x="503.1" y="821" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="506.05" y="831.5" ></text>
+</g>
+<g >
+<title>jbd2_write_superblock (10,101,010 samples, 0.07%)</title><rect x="1073.6" y="405" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1076.62" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.07%)</title><rect x="812.2" y="581" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="815.22" y="591.5" ></text>
+</g>
+<g >
+<title>__fget_light (20,202,020 samples, 0.13%)</title><rect x="42.4" y="821" width="1.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="45.45" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="552.6" y="837" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="555.63" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="756.3" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="759.34" y="687.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (40,404,040 samples, 0.26%)</title><rect x="842.0" y="533" width="3.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="844.97" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="641.0" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="643.96" y="687.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (525,252,520 samples, 3.40%)</title><rect x="113.7" y="869" width="46.8" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="116.66" y="879.5" >look..</text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="1193.5" y="773" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1196.50" y="783.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1149.3" y="677" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1152.33" y="687.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="501" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1064.90" y="511.5" ></text>
+</g>
+<g >
+<title>iterate_dir (30,303,030 samples, 0.20%)</title><rect x="431.8" y="789" width="2.7" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="434.84" y="799.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="911.4" y="565" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="914.37" y="575.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="629" width="3.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1374.97" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.07%)</title><rect x="1085.3" y="469" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1088.34" y="479.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="437" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1084.73" y="447.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.07%)</title><rect x="1047.5" y="645" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1050.48" y="655.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.07%)</title><rect x="695.9" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="698.94" y="591.5" ></text>
+</g>
+<g >
+<title>__dquot_alloc_space (10,101,010 samples, 0.07%)</title><rect x="907.8" y="533" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="910.77" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (151,515,150 samples, 0.98%)</title><rect x="1376.5" y="901" width="13.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1379.48" y="911.5" ></text>
+</g>
+<g >
+<title>____fput (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="805" width="3.6" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1374.97" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (212,121,210 samples, 1.37%)</title><rect x="932.1" y="661" width="18.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="935.10" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_cwnd_validate (10,101,010 samples, 0.07%)</title><rect x="1369.3" y="709" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1372.27" y="719.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="308.4" y="485" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="311.35" y="495.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.07%)</title><rect x="1247.6" y="773" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1250.58" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="667.1" y="549" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="670.10" y="559.5" ></text>
+</g>
+<g >
+<title>do_linkat (40,404,040 samples, 0.26%)</title><rect x="1106.1" y="693" width="3.6" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1109.07" y="703.5" ></text>
+</g>
+<g >
+<title>inet_sendmsg (111,111,110 samples, 0.72%)</title><rect x="1326.9" y="789" width="9.9" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1329.90" y="799.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.07%)</title><rect x="316.5" y="645" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="319.47" y="655.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (30,303,030 samples, 0.20%)</title><rect x="506.7" y="693" width="2.7" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="509.66" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1001.5" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1004.51" y="719.5" ></text>
+</g>
+<g >
+<title>mnt_drop_write (10,101,010 samples, 0.07%)</title><rect x="1027.6" y="693" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1030.65" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1007.8" y="581" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1010.82" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="764.4" y="645" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="767.45" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.13%)</title><rect x="842.9" y="501" width="1.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="845.87" y="511.5" ></text>
+</g>
+<g >
+<title>__file_remove_privs (10,101,010 samples, 0.07%)</title><rect x="761.7" y="533" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="764.74" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="1031.3" y="629" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1034.25" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="826.6" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="829.64" y="719.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.07%)</title><rect x="697.7" y="421" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="700.75" y="431.5" ></text>
+</g>
+<g >
+<title>remove (131,313,130 samples, 0.85%)</title><rect x="240.8" y="741" width="11.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="243.75" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="577.9" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="580.86" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="457.1" y="693" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="460.08" y="703.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.07%)</title><rect x="1072.7" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1075.72" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="1173.7" y="757" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1176.67" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="901.5" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="904.46" y="751.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="819.4" y="389" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="822.43" y="399.5" ></text>
+</g>
+<g >
+<title>mt_free_rcu (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="517" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1233.46" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (10,101,010 samples, 0.07%)</title><rect x="1057.4" y="549" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1060.39" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (30,303,030 samples, 0.20%)</title><rect x="674.3" y="469" width="2.7" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="677.31" y="479.5" ></text>
+</g>
+<g >
+<title>__x64_sys_readlink (10,101,010 samples, 0.07%)</title><rect x="1040.3" y="725" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="1043.27" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.07%)</title><rect x="536.4" y="629" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="539.40" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="757.2" y="517" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="760.24" y="527.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="341" width="2.7" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1381.28" y="351.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.07%)</title><rect x="972.7" y="533" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="975.66" y="543.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.07%)</title><rect x="838.4" y="373" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="841.36" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="386.8" y="453" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="389.77" y="463.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="184.9" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="187.87" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rt_sigprocmask (10,101,010 samples, 0.07%)</title><rect x="69.5" y="789" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="72.49" y="799.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="1171.9" y="661" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1174.87" y="671.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.07%)</title><rect x="976.3" y="789" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="979.27" y="799.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="517" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1084.73" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="190.3" y="469" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="193.27" y="479.5" ></text>
+</g>
+<g >
+<title>getdents64 (10,101,010 samples, 0.07%)</title><rect x="862.7" y="677" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="865.70" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_append (141,414,140 samples, 0.91%)</title><rect x="583.3" y="629" width="12.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="586.27" y="639.5" ></text>
+</g>
+<g >
+<title>process_backlog (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="437" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1343.42" y="447.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1099.8" y="501" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1102.76" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="461.6" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="464.59" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (20,202,020 samples, 0.13%)</title><rect x="133.5" y="821" width="1.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="136.49" y="831.5" ></text>
+</g>
+<g >
+<title>worker_get_run (353,535,350 samples, 2.29%)</title><rect x="1358.5" y="965" width="31.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1361.45" y="975.5" >wo..</text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.07%)</title><rect x="1253.9" y="629" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1256.89" y="639.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="818.5" y="405" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="821.53" y="415.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1216.0" y="677" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1219.04" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="378.7" y="789" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="381.66" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="176.8" y="869" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="179.75" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.07%)</title><rect x="193.9" y="597" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="196.88" y="607.5" ></text>
+</g>
+<g >
+<title>git_buf_dispose (20,202,020 samples, 0.13%)</title><rect x="959.1" y="725" width="1.8" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="962.14" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (20,202,020 samples, 0.13%)</title><rect x="368.7" y="581" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="371.75" y="591.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (40,404,040 samples, 0.26%)</title><rect x="421.9" y="677" width="3.6" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="424.93" y="687.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="1212.4" y="485" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1215.43" y="495.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1071.8" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1074.82" y="607.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.07%)</title><rect x="1176.4" y="757" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1179.37" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="1100.7" y="501" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1103.66" y="511.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.07%)</title><rect x="320.1" y="725" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="323.07" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="565.2" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="568.24" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="13.6" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="16.61" y="815.5" ></text>
+</g>
+<g >
+<title>end_bio_bh_io_sync (10,101,010 samples, 0.07%)</title><rect x="16.3" y="389" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="19.31" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (50,505,050 samples, 0.33%)</title><rect x="260.6" y="645" width="4.5" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="263.58" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1033.1" y="581" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1036.06" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.20%)</title><rect x="1141.2" y="677" width="2.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1144.22" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.33%)</title><rect x="416.5" y="821" width="4.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="419.52" y="831.5" ></text>
+</g>
+<g >
+<title>perf_event_mmap (10,101,010 samples, 0.07%)</title><rect x="67.7" y="725" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="70.69" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="461.6" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="464.59" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_getattr (10,101,010 samples, 0.07%)</title><rect x="329.1" y="661" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="332.09" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (323,232,320 samples, 2.09%)</title><rect x="567.0" y="709" width="28.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="570.05" y="719.5" >__..</text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="672.5" y="485" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="675.51" y="495.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="837" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1339.82" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="709" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1221.74" y="719.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="988.9" y="341" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="991.89" y="351.5" ></text>
+</g>
+<g >
+<title>__destroy_inode (10,101,010 samples, 0.07%)</title><rect x="283.1" y="597" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="286.12" y="607.5" ></text>
+</g>
+<g >
+<title>alloc_file_pseudo (10,101,010 samples, 0.07%)</title><rect x="1375.6" y="837" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1378.58" y="847.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.07%)</title><rect x="650.0" y="629" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="652.97" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="299.3" y="517" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="302.34" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (171,717,170 samples, 1.11%)</title><rect x="383.2" y="757" width="15.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="386.17" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="710.4" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="713.37" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="863.6" y="645" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="866.60" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="668.0" y="613" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="671.00" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.59%)</title><rect x="321.9" y="773" width="8.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="324.87" y="783.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="549" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1064.90" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (60,606,060 samples, 0.39%)</title><rect x="1043.9" y="757" width="5.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1046.87" y="767.5" ></text>
+</g>
+<g >
+<title>current_time (10,101,010 samples, 0.07%)</title><rect x="979.9" y="597" width="0.9" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="982.88" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.46%)</title><rect x="857.3" y="709" width="6.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="860.29" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="956.4" y="629" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="959.44" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (30,303,030 samples, 0.20%)</title><rect x="209.2" y="565" width="2.7" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="212.20" y="575.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (20,202,020 samples, 0.13%)</title><rect x="507.6" y="629" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="510.56" y="639.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.07%)</title><rect x="473.3" y="517" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="476.31" y="527.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="654.5" y="693" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="657.48" y="703.5" ></text>
+</g>
+<g >
+<title>__es_remove_extent (10,101,010 samples, 0.07%)</title><rect x="366.9" y="581" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="369.94" y="591.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="341" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1013.52" y="351.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1228.7" y="789" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1231.65" y="799.5" ></text>
+</g>
+<g >
+<title>__fput (20,202,020 samples, 0.13%)</title><rect x="1308.0" y="741" width="1.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1310.98" y="751.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="96.5" y="933" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="99.53" y="943.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="1071.8" y="613" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1074.82" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="654.5" y="677" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="657.48" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="453" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1013.52" y="463.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1065.5" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1068.51" y="687.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (20,202,020 samples, 0.13%)</title><rect x="769.9" y="629" width="1.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="772.86" y="639.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.07%)</title><rect x="458.9" y="533" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="461.88" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.07%)</title><rect x="1079.9" y="501" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1082.93" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.07%)</title><rect x="782.5" y="565" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="785.48" y="575.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="533" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1084.73" y="543.5" ></text>
+</g>
+<g >
+<title>mkdir (101,010,100 samples, 0.65%)</title><rect x="1247.6" y="869" width="9.0" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1250.58" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.33%)</title><rect x="616.6" y="741" width="4.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="619.62" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="908.7" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="911.67" y="543.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.07%)</title><rect x="412.0" y="581" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="415.01" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1227.8" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1230.75" y="767.5" ></text>
+</g>
+<g >
+<title>chmod_common (10,101,010 samples, 0.07%)</title><rect x="985.3" y="709" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="988.28" y="719.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.07%)</title><rect x="550.8" y="581" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="553.82" y="591.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="757.2" y="501" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="760.24" y="511.5" ></text>
+</g>
+<g >
+<title>fscrypt_match_name (10,101,010 samples, 0.07%)</title><rect x="695.9" y="533" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="698.94" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="386.8" y="469" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="389.77" y="479.5" ></text>
+</g>
+<g >
+<title>git_repository_free (10,101,010 samples, 0.07%)</title><rect x="977.2" y="869" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="980.17" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (20,202,020 samples, 0.13%)</title><rect x="514.8" y="629" width="1.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="517.77" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (171,717,170 samples, 1.11%)</title><rect x="215.5" y="629" width="15.3" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="218.51" y="639.5" ></text>
+</g>
+<g >
+<title>rmdir (50,505,050 samples, 0.33%)</title><rect x="194.8" y="677" width="4.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="197.78" y="687.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="1352.1" y="757" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1355.14" y="767.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="971.8" y="613" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="974.76" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="861.8" y="581" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="864.80" y="591.5" ></text>
+</g>
+<g >
+<title>mkdir (80,808,080 samples, 0.52%)</title><rect x="1016.8" y="805" width="7.2" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1019.83" y="815.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="1098.0" y="469" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1100.96" y="479.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="795.1" y="725" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="798.09" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1186.3" y="661" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1189.29" y="671.5" ></text>
+</g>
+<g >
+<title>release_sock (10,101,010 samples, 0.07%)</title><rect x="1367.5" y="757" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1370.47" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (141,414,140 samples, 0.91%)</title><rect x="639.2" y="757" width="12.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="642.16" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="958.2" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="961.24" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.07%)</title><rect x="862.7" y="597" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="865.70" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="723.9" y="661" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="726.89" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.20%)</title><rect x="1103.4" y="757" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1106.36" y="767.5" ></text>
+</g>
+<g >
+<title>do_filp_open (181,818,180 samples, 1.18%)</title><rect x="1024.0" y="725" width="16.3" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1027.04" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (20,202,020 samples, 0.13%)</title><rect x="1004.2" y="533" width="1.8" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="1007.21" y="543.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.07%)</title><rect x="769.9" y="501" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="772.86" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.07%)</title><rect x="710.4" y="517" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="713.37" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.85%)</title><rect x="757.2" y="741" width="11.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="760.24" y="751.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="604.0" y="645" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="607.00" y="655.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.07%)</title><rect x="988.9" y="517" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="991.89" y="527.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.20%)</title><rect x="201.1" y="725" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="204.09" y="735.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="1242.2" y="629" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1245.18" y="639.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.07%)</title><rect x="614.8" y="645" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="617.82" y="655.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.07%)</title><rect x="502.1" y="549" width="1.0" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="505.15" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="218.2" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="221.22" y="591.5" ></text>
+</g>
+<g >
+<title>list_lru_add (10,101,010 samples, 0.07%)</title><rect x="350.7" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="353.72" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="822.1" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="825.14" y="815.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="886.1" y="517" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="889.13" y="527.5" ></text>
+</g>
+<g >
+<title>mas_commit_b_node.isra.0 (30,303,030 samples, 0.20%)</title><rect x="1289.0" y="661" width="2.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1292.05" y="671.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.07%)</title><rect x="378.7" y="677" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="381.66" y="687.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.20%)</title><rect x="1212.4" y="661" width="2.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1215.43" y="671.5" ></text>
+</g>
+<g >
+<title>destroy_inode (20,202,020 samples, 0.13%)</title><rect x="1110.6" y="581" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1113.57" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="830.2" y="693" width="1.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="833.25" y="703.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="645" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1339.82" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="1115.1" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1118.08" y="495.5" ></text>
+</g>
+<g >
+<title>worker_do_run (13,262,626,130 samples, 85.76%)</title><rect x="175.0" y="965" width="1183.5" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="177.95" y="975.5" >worker_do_run</text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.07%)</title><rect x="1095.3" y="645" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1098.25" y="655.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (30,303,030 samples, 0.20%)</title><rect x="766.3" y="725" width="2.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="769.25" y="735.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (10,101,010 samples, 0.07%)</title><rect x="405.7" y="693" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="408.70" y="703.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="533" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1221.74" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="985.3" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="988.28" y="639.5" ></text>
+</g>
+<g >
+<title>slab_pre_alloc_hook.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="603.1" y="613" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="606.10" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="556.2" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="559.23" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="772.6" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="775.56" y="687.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="842.0" y="197" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="844.97" y="207.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (10,101,010 samples, 0.07%)</title><rect x="56.9" y="613" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="59.87" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (20,202,020 samples, 0.13%)</title><rect x="906.9" y="597" width="1.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="909.86" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="851.9" y="725" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="854.88" y="735.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="293.9" y="469" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="296.93" y="479.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.07%)</title><rect x="16.3" y="501" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="19.31" y="511.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.07%)</title><rect x="500.3" y="677" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="503.35" y="687.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.07%)</title><rect x="465.2" y="469" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="468.19" y="479.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.13%)</title><rect x="554.4" y="757" width="1.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="557.43" y="767.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.07%)</title><rect x="489.5" y="629" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="492.53" y="639.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="163.2" y="837" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="166.23" y="847.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1314.3" y="837" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1317.28" y="847.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.07%)</title><rect x="475.1" y="661" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="478.11" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="742.8" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="745.82" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="386.8" y="485" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="389.77" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="1226.9" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1229.85" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="789.7" y="709" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="792.69" y="719.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.07%)</title><rect x="635.6" y="629" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="638.55" y="639.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="1213.3" y="597" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1216.33" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.46%)</title><rect x="730.2" y="773" width="6.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="733.20" y="783.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (20,202,020 samples, 0.13%)</title><rect x="1353.9" y="917" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1356.95" y="927.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (90,909,090 samples, 0.59%)</title><rect x="1327.8" y="693" width="8.1" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1330.81" y="703.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.07%)</title><rect x="502.1" y="501" width="1.0" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="505.15" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1191.7" y="709" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1194.70" y="719.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_handle_packet (10,101,010 samples, 0.07%)</title><rect x="1372.0" y="517" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1374.97" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="1212.4" y="709" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1215.43" y="719.5" ></text>
+</g>
+<g >
+<title>adler32_z (10,101,010 samples, 0.07%)</title><rect x="965.5" y="661" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="968.45" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.07%)</title><rect x="1036.7" y="597" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1039.66" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.07%)</title><rect x="901.5" y="629" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="904.46" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1216.0" y="693" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1219.04" y="703.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="169.5" y="757" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="172.54" y="767.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="1226.0" y="581" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1228.95" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1203.4" y="677" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1206.42" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="484.1" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="487.12" y="735.5" ></text>
+</g>
+<g >
+<title>dup_userfaultfd (10,101,010 samples, 0.07%)</title><rect x="1304.4" y="741" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1307.37" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (40,404,040 samples, 0.26%)</title><rect x="226.3" y="501" width="3.6" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="229.33" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.07%)</title><rect x="94.7" y="741" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="97.73" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.07%)</title><rect x="842.0" y="245" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="844.97" y="255.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="654.5" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="657.48" y="655.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="127.2" y="821" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="130.18" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (111,111,110 samples, 0.72%)</title><rect x="585.1" y="581" width="9.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="588.08" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.07%)</title><rect x="334.5" y="613" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="337.49" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="545.4" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="548.41" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="861.8" y="677" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="864.80" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (50,505,050 samples, 0.33%)</title><rect x="739.2" y="757" width="4.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="742.21" y="767.5" ></text>
+</g>
+<g >
+<title>getname (20,202,020 samples, 0.13%)</title><rect x="884.3" y="597" width="1.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="887.33" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1191.7" y="789" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1194.70" y="799.5" ></text>
+</g>
+<g >
+<title>free_page_and_swap_cache (10,101,010 samples, 0.07%)</title><rect x="293.9" y="389" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="296.93" y="399.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.07%)</title><rect x="684.2" y="725" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="687.23" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="830.2" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="833.25" y="671.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (30,303,030 samples, 0.20%)</title><rect x="651.8" y="709" width="2.7" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="654.78" y="719.5" ></text>
+</g>
+<g >
+<title>strerror_l (10,101,010 samples, 0.07%)</title><rect x="923.1" y="645" width="0.9" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="926.09" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="266.0" y="613" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="268.99" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="502.1" y="597" width="1.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="505.15" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_delayed_block (10,101,010 samples, 0.07%)</title><rect x="984.4" y="565" width="0.9" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="987.38" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.13%)</title><rect x="1252.1" y="629" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1255.09" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="969.1" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="972.06" y="735.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.07%)</title><rect x="962.7" y="549" width="1.0" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="965.75" y="559.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="693" width="2.7" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1381.28" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1001.5" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1004.51" y="735.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.07%)</title><rect x="779.8" y="821" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="782.77" y="831.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.26%)</title><rect x="927.6" y="693" width="3.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="930.60" y="703.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="1265.6" y="693" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1268.61" y="703.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (323,232,320 samples, 2.09%)</title><rect x="567.0" y="693" width="28.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="570.05" y="703.5" >do..</text>
+</g>
+<g >
+<title>__lookup_slow (40,404,040 samples, 0.26%)</title><rect x="1056.5" y="661" width="3.6" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="1059.49" y="671.5" ></text>
+</g>
+<g >
+<title>ktime_get_coarse_real_ts64 (10,101,010 samples, 0.07%)</title><rect x="336.3" y="613" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="339.30" y="623.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="238.9" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="241.95" y="623.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.07%)</title><rect x="951.9" y="501" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="954.93" y="511.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="606.7" y="677" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="609.71" y="687.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.07%)</title><rect x="178.6" y="853" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="181.56" y="863.5" ></text>
+</g>
+<g >
+<title>access (30,303,030 samples, 0.20%)</title><rect x="1179.1" y="805" width="2.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1182.08" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_inode_attach_jinode (10,101,010 samples, 0.07%)</title><rect x="505.8" y="645" width="0.9" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="508.75" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="135.3" y="805" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="138.29" y="815.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="743.7" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="746.72" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.20%)</title><rect x="129.0" y="773" width="2.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="131.98" y="783.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="736.5" y="597" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="739.51" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (111,111,110 samples, 0.72%)</title><rect x="780.7" y="789" width="9.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="783.67" y="799.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (20,202,020 samples, 0.13%)</title><rect x="728.4" y="597" width="1.8" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="731.39" y="607.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.07%)</title><rect x="1095.3" y="725" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1098.25" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="896.0" y="741" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="899.05" y="751.5" ></text>
+</g>
+<g >
+<title>folio_create_empty_buffers (10,101,010 samples, 0.07%)</title><rect x="803.2" y="549" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="806.21" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="942.0" y="533" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="945.02" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="563.4" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="566.44" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="1226.9" y="757" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1229.85" y="767.5" ></text>
+</g>
+<g >
+<title>evict (10,101,010 samples, 0.07%)</title><rect x="197.5" y="565" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="200.49" y="575.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="1020.4" y="501" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1023.44" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.07%)</title><rect x="551.7" y="629" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="554.72" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.07%)</title><rect x="1084.4" y="277" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1087.44" y="287.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="871.7" y="773" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="874.71" y="783.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="986.2" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="989.19" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="712.2" y="725" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="715.17" y="735.5" ></text>
+</g>
+<g >
+<title>__kmalloc (20,202,020 samples, 0.13%)</title><rect x="400.3" y="661" width="1.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="403.29" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="927.6" y="661" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="930.60" y="671.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="1198.0" y="645" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1201.01" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="556.2" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="559.23" y="655.5" ></text>
+</g>
+<g >
+<title>git_odb_read (50,505,050 samples, 0.33%)</title><rect x="686.0" y="821" width="4.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="689.03" y="831.5" ></text>
+</g>
+<g >
+<title>pcre_exec (10,101,010 samples, 0.07%)</title><rect x="821.2" y="805" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="824.23" y="815.5" ></text>
+</g>
+<g >
+<title>syscall_trace_enter.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="598.6" y="709" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="601.60" y="719.5" ></text>
+</g>
+<g >
+<title>net_send (70,707,070 samples, 0.46%)</title><rect x="14.5" y="933" width="6.3" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="17.51" y="943.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="632.8" y="613" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="635.85" y="623.5" ></text>
+</g>
+<g >
+<title>json_tokener_new_ex (20,202,020 samples, 0.13%)</title><rect x="1359.4" y="837" width="1.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1362.35" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_find_extent (10,101,010 samples, 0.07%)</title><rect x="843.8" y="485" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="846.77" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (10,101,010 samples, 0.07%)</title><rect x="437.3" y="661" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="440.25" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mb_prefetch (10,101,010 samples, 0.07%)</title><rect x="1168.3" y="581" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="1171.26" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="756.3" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="759.34" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1316.1" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1319.09" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.07%)</title><rect x="818.5" y="517" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="821.53" y="527.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.07%)</title><rect x="960.0" y="709" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="963.05" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="833.0" y="485" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="835.95" y="495.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1322.4" y="885" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1325.40" y="895.5" ></text>
+</g>
+<g >
+<title>file_close (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="933" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1339.82" y="943.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="917.7" y="693" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="920.68" y="703.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="645" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1064.90" y="655.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="1181.8" y="805" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1184.78" y="815.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="1107.9" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1110.87" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1065.5" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1068.51" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (20,202,020 samples, 0.13%)</title><rect x="924.9" y="485" width="1.8" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="927.89" y="495.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.07%)</title><rect x="109.2" y="677" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="112.15" y="687.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (20,202,020 samples, 0.13%)</title><rect x="710.4" y="597" width="1.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="713.37" y="607.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (30,303,030 samples, 0.20%)</title><rect x="292.1" y="565" width="2.7" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="295.13" y="575.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="501" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1233.46" y="511.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.07%)</title><rect x="717.6" y="645" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="720.58" y="655.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (20,202,020 samples, 0.13%)</title><rect x="1086.2" y="485" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1089.24" y="495.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (161,616,160 samples, 1.05%)</title><rect x="1138.5" y="709" width="14.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1141.52" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="499.4" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="502.44" y="751.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.07%)</title><rect x="1194.4" y="613" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1197.40" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.07%)</title><rect x="475.1" y="693" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="478.11" y="703.5" ></text>
+</g>
+<g >
+<title>filemap_get_pages (20,202,020 samples, 0.13%)</title><rect x="1210.6" y="565" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1213.63" y="575.5" ></text>
+</g>
+<g >
+<title>alloc_file (10,101,010 samples, 0.07%)</title><rect x="1375.6" y="821" width="0.9" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="1378.58" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="193.9" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="196.88" y="687.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (60,606,060 samples, 0.39%)</title><rect x="912.3" y="613" width="5.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="915.27" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="794.2" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="797.19" y="639.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (60,606,060 samples, 0.39%)</title><rect x="1043.9" y="741" width="5.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1046.87" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="231.7" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="234.74" y="687.5" ></text>
+</g>
+<g >
+<title>_atomic_dec_and_lock (10,101,010 samples, 0.07%)</title><rect x="462.5" y="645" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="465.49" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="766.3" y="709" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="769.25" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="500.3" y="741" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="503.35" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="723.9" y="677" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="726.89" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.13%)</title><rect x="1099.8" y="533" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1102.76" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_superblock_csum_set (10,101,010 samples, 0.07%)</title><rect x="355.2" y="645" width="0.9" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" />
+<text x="358.23" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_open (50,505,050 samples, 0.33%)</title><rect x="102.8" y="869" width="4.5" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="105.84" y="879.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="494.9" y="725" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="497.94" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="732.9" y="565" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="735.90" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_rename (101,010,100 samples, 0.65%)</title><rect x="838.4" y="661" width="9.0" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="841.36" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_info (10,101,010 samples, 0.07%)</title><rect x="1147.5" y="693" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1150.53" y="703.5" ></text>
+</g>
+<g >
+<title>locks_remove_posix (10,101,010 samples, 0.07%)</title><rect x="613.0" y="709" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="616.02" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="1105.2" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1108.17" y="671.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="421" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1013.52" y="431.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.20%)</title><rect x="883.4" y="629" width="2.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="886.43" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.46%)</title><rect x="757.2" y="709" width="6.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="760.24" y="719.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.07%)</title><rect x="668.9" y="357" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="671.90" y="367.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="539.1" y="805" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="542.11" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1353.0" y="805" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1356.04" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="791.5" y="677" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="794.49" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="1070.0" y="709" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1073.01" y="719.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="426.4" y="661" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="429.43" y="671.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.07%)</title><rect x="469.7" y="437" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="472.70" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="1115.1" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1118.08" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="662.6" y="421" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="665.59" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="266.0" y="549" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="268.99" y="559.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (60,606,060 samples, 0.39%)</title><rect x="1327.8" y="357" width="5.4" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1330.81" y="367.5" ></text>
+</g>
+<g >
+<title>release_sock (30,303,030 samples, 0.20%)</title><rect x="1339.5" y="789" width="2.7" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1342.52" y="799.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="581" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1084.73" y="591.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1037.6" y="581" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1040.56" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="359.7" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="362.73" y="591.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="222.7" y="485" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="225.72" y="495.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="821" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1339.82" y="831.5" ></text>
+</g>
+<g >
+<title>ip_rcv (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="389" width="2.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1381.28" y="399.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (10,101,010 samples, 0.07%)</title><rect x="643.7" y="533" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="646.66" y="543.5" ></text>
+</g>
+<g >
+<title>task_dead_fair (10,101,010 samples, 0.07%)</title><rect x="47.9" y="757" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="50.86" y="767.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1221.74" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.07%)</title><rect x="285.8" y="597" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="288.82" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (60,606,060 samples, 0.39%)</title><rect x="334.5" y="661" width="5.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="337.49" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="869.9" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="872.91" y="735.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1247.6" y="741" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1250.58" y="751.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="787.9" y="629" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="790.88" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.07%)</title><rect x="1021.3" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1024.34" y="671.5" ></text>
+</g>
+<g >
+<title>__memcpy (10,101,010 samples, 0.07%)</title><rect x="211.9" y="581" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="214.91" y="591.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.07%)</title><rect x="340.8" y="693" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="343.80" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="1105.2" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1108.17" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="937.5" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="940.51" y="495.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.07%)</title><rect x="976.3" y="741" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="979.27" y="751.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.07%)</title><rect x="977.2" y="821" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="980.17" y="831.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (30,303,030 samples, 0.20%)</title><rect x="1119.6" y="453" width="2.7" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1122.59" y="463.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (20,202,020 samples, 0.13%)</title><rect x="990.7" y="645" width="1.8" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="993.69" y="655.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (80,808,080 samples, 0.52%)</title><rect x="1110.6" y="629" width="7.2" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1113.57" y="639.5" ></text>
+</g>
+<g >
+<title>sock_alloc_file (10,101,010 samples, 0.07%)</title><rect x="73.1" y="789" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="76.10" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1227.8" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1230.75" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="553.5" y="821" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="556.53" y="831.5" ></text>
+</g>
+<g >
+<title>wp_page_reuse (10,101,010 samples, 0.07%)</title><rect x="1357.6" y="709" width="0.9" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1360.55" y="719.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (10,101,010 samples, 0.07%)</title><rect x="198.4" y="581" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="201.39" y="591.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="341" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1343.42" y="351.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="390.4" y="645" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="393.38" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="851.9" y="773" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="854.88" y="783.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (50,505,050 samples, 0.33%)</title><rect x="1083.5" y="501" width="4.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1086.53" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="871.7" y="725" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="874.71" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (40,404,040 samples, 0.26%)</title><rect x="386.8" y="661" width="3.6" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="389.77" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="474.2" y="789" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="477.21" y="799.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="805.9" y="645" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="808.91" y="655.5" ></text>
+</g>
+<g >
+<title>kprobe_perf_func (20,202,020 samples, 0.13%)</title><rect x="1381.0" y="741" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1383.99" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_in_window (10,101,010 samples, 0.07%)</title><rect x="1372.0" y="501" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1374.97" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.07%)</title><rect x="1204.3" y="629" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1207.32" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (111,111,110 samples, 0.72%)</title><rect x="86.6" y="901" width="9.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="89.62" y="911.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="341.7" y="709" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="344.70" y="719.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_put_journal_head (10,101,010 samples, 0.07%)</title><rect x="227.2" y="421" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="230.23" y="431.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="782.5" y="613" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="785.48" y="623.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.07%)</title><rect x="234.4" y="645" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="237.44" y="655.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (30,303,030 samples, 0.20%)</title><rect x="1119.6" y="469" width="2.7" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1122.59" y="479.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.20%)</title><rect x="973.6" y="773" width="2.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="976.57" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.39%)</title><rect x="1043.9" y="789" width="5.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1046.87" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.07%)</title><rect x="477.8" y="757" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="480.81" y="767.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.07%)</title><rect x="1184.5" y="709" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1187.49" y="719.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (10,101,010 samples, 0.07%)</title><rect x="231.7" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="234.74" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1217.8" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1220.84" y="735.5" ></text>
+</g>
+<g >
+<title>schedule (20,202,020 samples, 0.13%)</title><rect x="25.3" y="837" width="1.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="28.32" y="847.5" ></text>
+</g>
+<g >
+<title>remove (181,818,180 samples, 1.18%)</title><rect x="382.3" y="805" width="16.2" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="385.27" y="815.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (60,606,060 samples, 0.39%)</title><rect x="1327.8" y="373" width="5.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1330.81" y="383.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="416.5" y="789" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="419.52" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (30,303,030 samples, 0.20%)</title><rect x="60.5" y="149" width="2.7" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="63.48" y="159.5" ></text>
+</g>
+<g >
+<title>adler32_z (10,101,010 samples, 0.07%)</title><rect x="520.2" y="709" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="523.18" y="719.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (10,101,010 samples, 0.07%)</title><rect x="1009.6" y="437" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1012.62" y="447.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="869.9" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="872.91" y="719.5" ></text>
+</g>
+<g >
+<title>rename (161,616,160 samples, 1.05%)</title><rect x="833.0" y="773" width="14.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="835.95" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_clone (565,656,560 samples, 3.66%)</title><rect x="1256.6" y="821" width="50.5" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1259.60" y="831.5" >__x64..</text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.07%)</title><rect x="1017.7" y="565" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1020.73" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_rename (101,010,100 samples, 0.65%)</title><rect x="1006.9" y="661" width="9.0" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1009.92" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="1179.1" y="789" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1182.08" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1041.2" y="773" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1044.17" y="783.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.07%)</title><rect x="1307.1" y="869" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1310.07" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (40,404,040 samples, 0.26%)</title><rect x="467.9" y="677" width="3.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="470.90" y="687.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.07%)</title><rect x="398.5" y="709" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="401.49" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.07%)</title><rect x="334.5" y="597" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="337.49" y="607.5" ></text>
+</g>
+<g >
+<title>close_fd (10,101,010 samples, 0.07%)</title><rect x="452.6" y="693" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="455.57" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (343,434,340 samples, 2.22%)</title><rect x="923.1" y="709" width="30.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="926.09" y="719.5" >[l..</text>
+</g>
+<g >
+<title>bpf_ringbuf_submit (20,202,020 samples, 0.13%)</title><rect x="1381.0" y="693" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1383.99" y="703.5" ></text>
+</g>
+<g >
+<title>remove (313,131,310 samples, 2.02%)</title><rect x="349.8" y="789" width="28.0" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="352.82" y="799.5" >r..</text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.07%)</title><rect x="1219.6" y="693" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1222.64" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="403.9" y="677" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="406.90" y="687.5" ></text>
+</g>
+<g >
+<title>path_openat (40,404,040 samples, 0.26%)</title><rect x="979.0" y="677" width="3.6" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="981.97" y="687.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.07%)</title><rect x="1226.9" y="549" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="1229.85" y="559.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.07%)</title><rect x="827.5" y="709" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="830.54" y="719.5" ></text>
+</g>
+<g >
+<title>lru_add_drain_cpu (10,101,010 samples, 0.07%)</title><rect x="846.5" y="501" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="849.47" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="801.4" y="741" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="804.40" y="751.5" ></text>
+</g>
+<g >
+<title>rename (131,313,130 samples, 0.85%)</title><rect x="462.5" y="805" width="11.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="465.49" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.13%)</title><rect x="890.6" y="757" width="1.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="893.64" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.07%)</title><rect x="1205.2" y="645" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1208.22" y="655.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (90,909,090 samples, 0.59%)</title><rect x="1073.6" y="613" width="8.1" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1076.62" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_read (20,202,020 samples, 0.13%)</title><rect x="728.4" y="629" width="1.8" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="731.39" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="1317.0" y="789" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1319.99" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (111,111,110 samples, 0.72%)</title><rect x="1209.7" y="837" width="9.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1212.73" y="847.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="1223.2" y="629" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1226.25" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="958.2" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="961.24" y="639.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.07%)</title><rect x="973.6" y="709" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="976.57" y="719.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (20,202,020 samples, 0.13%)</title><rect x="884.3" y="565" width="1.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="887.33" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (10,101,010 samples, 0.07%)</title><rect x="1255.7" y="645" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1258.70" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.20%)</title><rect x="346.2" y="629" width="2.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="349.21" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_write (30,303,030 samples, 0.20%)</title><rect x="1317.9" y="741" width="2.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1320.89" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_fin (30,303,030 samples, 0.20%)</title><rect x="60.5" y="165" width="2.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="63.48" y="175.5" ></text>
+</g>
+<g >
+<title>do_rmdir (111,111,110 samples, 0.72%)</title><rect x="404.8" y="741" width="9.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="407.80" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.07%)</title><rect x="334.5" y="581" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="337.49" y="591.5" ></text>
+</g>
+<g >
+<title>realpath (10,101,010 samples, 0.07%)</title><rect x="1040.3" y="805" width="0.9" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="1043.27" y="815.5" ></text>
+</g>
+<g >
+<title>git_filter_list_stream_blob (80,808,080 samples, 0.52%)</title><rect x="509.4" y="837" width="7.2" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="512.36" y="847.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.07%)</title><rect x="582.4" y="581" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="585.37" y="591.5" ></text>
+</g>
+<g >
+<title>security_inode_need_killpriv (10,101,010 samples, 0.07%)</title><rect x="704.1" y="533" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="707.06" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="364.2" y="581" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="367.24" y="591.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.20%)</title><rect x="691.4" y="581" width="2.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="694.44" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (40,404,040 samples, 0.26%)</title><rect x="425.5" y="741" width="3.6" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="428.53" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="914.1" y="453" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="917.08" y="463.5" ></text>
+</g>
+<g >
+<title>vfs_link (40,404,040 samples, 0.26%)</title><rect x="607.6" y="693" width="3.6" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="610.61" y="703.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="1200.7" y="629" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1203.71" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="986.2" y="677" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="989.19" y="687.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_uncharge (10,101,010 samples, 0.07%)</title><rect x="406.6" y="469" width="0.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="409.60" y="479.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.07%)</title><rect x="440.9" y="837" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="443.86" y="847.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="940.2" y="565" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="943.22" y="575.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="485" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1221.74" y="495.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.07%)</title><rect x="330.0" y="613" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="332.99" y="623.5" ></text>
+</g>
+<g >
+<title>path_openat (686,868,680 samples, 4.44%)</title><rect x="101.0" y="901" width="61.3" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="104.04" y="911.5" >path_o..</text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.59%)</title><rect x="41.5" y="901" width="8.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="44.55" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.07%)</title><rect x="962.7" y="613" width="1.0" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="965.75" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="452.6" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="455.57" y="751.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="123.6" y="725" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="126.57" y="735.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.07%)</title><rect x="1042.1" y="677" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1045.07" y="687.5" ></text>
+</g>
+<g >
+<title>napi_consume_skb (10,101,010 samples, 0.07%)</title><rect x="1374.7" y="421" width="0.9" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1377.68" y="431.5" ></text>
+</g>
+<g >
+<title>process_backlog (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="437" width="2.7" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1381.28" y="447.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.07%)</title><rect x="625.6" y="581" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="628.64" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1104.3" y="677" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1107.27" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (30,303,030 samples, 0.20%)</title><rect x="242.6" y="597" width="2.7" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="245.55" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (30,303,030 samples, 0.20%)</title><rect x="539.1" y="597" width="2.7" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="542.11" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.07%)</title><rect x="1128.6" y="629" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1131.60" y="639.5" ></text>
+</g>
+<g >
+<title>proc_output_dump (30,303,030 samples, 0.20%)</title><rect x="1353.0" y="949" width="2.7" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="1356.04" y="959.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="855.5" y="629" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="858.49" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="973.6" y="789" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="976.57" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="96.5" y="949" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="99.53" y="959.5" ></text>
+</g>
+<g >
+<title>__submit_bio (10,101,010 samples, 0.07%)</title><rect x="467.9" y="501" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="470.90" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (121,212,120 samples, 0.78%)</title><rect x="272.3" y="645" width="10.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="275.30" y="655.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="339.9" y="693" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="342.90" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="1007.8" y="565" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1010.82" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="524.7" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="527.68" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_faccessat2 (10,101,010 samples, 0.07%)</title><rect x="1193.5" y="709" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1196.50" y="719.5" ></text>
+</g>
+<g >
+<title>readdir64 (10,101,010 samples, 0.07%)</title><rect x="193.9" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="196.88" y="719.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.07%)</title><rect x="807.7" y="549" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="810.71" y="559.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.07%)</title><rect x="878.9" y="693" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="881.92" y="703.5" ></text>
+</g>
+<g >
+<title>net_recv_buf (40,404,040 samples, 0.26%)</title><rect x="1363.9" y="869" width="3.6" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1366.86" y="879.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (50,505,050 samples, 0.33%)</title><rect x="1002.4" y="629" width="4.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1005.41" y="639.5" ></text>
+</g>
+<g >
+<title>common_perm_cond (10,101,010 samples, 0.07%)</title><rect x="523.8" y="597" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="526.78" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_v4_send_synack (20,202,020 samples, 0.13%)</title><rect x="1387.3" y="325" width="1.8" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1390.30" y="335.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="715.8" y="741" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="718.77" y="751.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_from_slab_obj (10,101,010 samples, 0.07%)</title><rect x="375.1" y="597" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="378.06" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.07%)</title><rect x="333.6" y="629" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="336.59" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1032.2" y="533" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1035.16" y="543.5" ></text>
+</g>
+<g >
+<title>readdir64 (40,404,040 samples, 0.26%)</title><rect x="892.4" y="757" width="3.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="895.44" y="767.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.07%)</title><rect x="1131.3" y="693" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1134.31" y="703.5" ></text>
+</g>
+<g >
+<title>mkdtemp (101,010,100 samples, 0.65%)</title><rect x="1247.6" y="901" width="9.0" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1250.58" y="911.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (20,202,020 samples, 0.13%)</title><rect x="974.5" y="709" width="1.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="977.47" y="719.5" ></text>
+</g>
+<g >
+<title>put_pid (10,101,010 samples, 0.07%)</title><rect x="254.3" y="645" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="257.27" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.46%)</title><rect x="1201.6" y="741" width="6.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1204.61" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1014.1" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1017.13" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="77.6" y="869" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="80.60" y="879.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="1040.3" y="661" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1043.27" y="671.5" ></text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.13%)</title><rect x="769.9" y="597" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="772.86" y="607.5" ></text>
+</g>
+<g >
+<title>gettid (10,101,010 samples, 0.07%)</title><rect x="558.9" y="869" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="561.94" y="879.5" ></text>
+</g>
+<g >
+<title>file_modified_flags (10,101,010 samples, 0.07%)</title><rect x="704.1" y="565" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="707.06" y="575.5" ></text>
+</g>
+<g >
+<title>[libpcre.so.3.13.3] (10,101,010 samples, 0.07%)</title><rect x="823.9" y="789" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="826.94" y="799.5" ></text>
+</g>
+<g >
+<title>generic_write_end (20,202,020 samples, 0.13%)</title><rect x="514.8" y="613" width="1.8" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="517.77" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="596.8" y="661" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="599.79" y="671.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="761.7" y="693" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="764.74" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (272,727,270 samples, 1.76%)</title><rect x="352.5" y="693" width="24.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="355.52" y="703.5" >v..</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="896.9" y="805" width="1.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="899.95" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="1197.1" y="789" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1200.11" y="799.5" ></text>
+</g>
+<g >
+<title>filemap_get_folios_tag (10,101,010 samples, 0.07%)</title><rect x="677.9" y="501" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="680.92" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.07%)</title><rect x="1038.5" y="645" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="1041.47" y="655.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (10,101,010 samples, 0.07%)</title><rect x="960.9" y="725" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="963.95" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="513.0" y="581" width="1.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="515.97" y="591.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.07%)</title><rect x="635.6" y="565" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="638.55" y="575.5" ></text>
+</g>
+<g >
+<title>fsnotify (10,101,010 samples, 0.07%)</title><rect x="219.1" y="613" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="222.12" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="983.5" y="789" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="986.48" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.07%)</title><rect x="211.9" y="645" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="214.91" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.07%)</title><rect x="1069.1" y="549" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1072.11" y="559.5" ></text>
+</g>
+<g >
+<title>ksys_write (40,404,040 samples, 0.26%)</title><rect x="1049.3" y="741" width="3.6" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1052.28" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="741" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1233.46" y="751.5" ></text>
+</g>
+<g >
+<title>hook_path_mknod (10,101,010 samples, 0.07%)</title><rect x="158.7" y="853" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="161.73" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="1216.0" y="645" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1219.04" y="655.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (30,303,030 samples, 0.20%)</title><rect x="1119.6" y="485" width="2.7" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1122.59" y="495.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (10,101,010 samples, 0.07%)</title><rect x="1009.6" y="501" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1012.62" y="511.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="688.7" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="691.73" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="1075.4" y="501" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1078.42" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="833.0" y="549" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="835.95" y="559.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.07%)</title><rect x="502.1" y="565" width="1.0" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="505.15" y="575.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="1320.6" y="789" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1323.59" y="799.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (20,202,020 samples, 0.13%)</title><rect x="630.1" y="677" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="633.14" y="687.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.07%)</title><rect x="555.3" y="677" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="558.33" y="687.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1320.6" y="661" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1323.59" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="440.9" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="443.86" y="831.5" ></text>
+</g>
+<g >
+<title>read (40,404,040 samples, 0.26%)</title><rect x="1363.9" y="837" width="3.6" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1366.86" y="847.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.07%)</title><rect x="819.4" y="341" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="822.43" y="351.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="453.5" y="725" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="456.47" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="530.1" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="533.09" y="767.5" ></text>
+</g>
+<g >
+<title>__slab_free (10,101,010 samples, 0.07%)</title><rect x="398.5" y="629" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="401.49" y="639.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.07%)</title><rect x="537.3" y="741" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="540.30" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (30,303,030 samples, 0.20%)</title><rect x="625.6" y="661" width="2.7" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="628.64" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (70,707,070 samples, 0.46%)</title><rect x="1054.7" y="821" width="6.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1057.69" y="831.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.07%)</title><rect x="1240.4" y="645" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1243.37" y="655.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="886.1" y="533" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="889.13" y="543.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.07%)</title><rect x="383.2" y="709" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="386.17" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (121,212,120 samples, 0.78%)</title><rect x="330.0" y="709" width="10.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="332.99" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="211.9" y="709" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="214.91" y="719.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.07%)</title><rect x="909.6" y="789" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="912.57" y="799.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="971.8" y="581" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="974.76" y="591.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (20,202,020 samples, 0.13%)</title><rect x="317.4" y="661" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="320.37" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="654.5" y="709" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="657.48" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (50,505,050 samples, 0.33%)</title><rect x="58.7" y="213" width="4.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="61.67" y="223.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="887.9" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="890.94" y="639.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.07%)</title><rect x="62.3" y="37" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="65.28" y="47.5" ></text>
+</g>
+<g >
+<title>evict (80,808,080 samples, 0.52%)</title><rect x="658.1" y="597" width="7.2" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="661.09" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.07%)</title><rect x="354.3" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="357.32" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (90,909,090 samples, 0.59%)</title><rect x="88.4" y="885" width="8.1" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="91.42" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_find_extent (10,101,010 samples, 0.07%)</title><rect x="710.4" y="501" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="713.37" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1320.6" y="853" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1323.59" y="863.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="109.2" y="629" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="112.15" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="773.5" y="725" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="776.46" y="735.5" ></text>
+</g>
+<g >
+<title>from_vfsgid (10,101,010 samples, 0.07%)</title><rect x="604.9" y="693" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="607.91" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (60,606,060 samples, 0.39%)</title><rect x="904.2" y="709" width="5.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="907.16" y="719.5" ></text>
+</g>
+<g >
+<title>net_send_part (121,212,120 samples, 0.78%)</title><rect x="1326.0" y="885" width="10.8" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1329.00" y="895.5" ></text>
+</g>
+<g >
+<title>__d_lookup (10,101,010 samples, 0.07%)</title><rect x="1107.0" y="613" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1109.97" y="623.5" ></text>
+</g>
+<g >
+<title>iput (30,303,030 samples, 0.20%)</title><rect x="187.6" y="581" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="190.57" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="723.9" y="693" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="726.89" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="476.9" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="479.91" y="735.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="732.9" y="517" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="735.90" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.07%)</title><rect x="440.9" y="789" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="443.86" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (101,010,100 samples, 0.65%)</title><rect x="405.7" y="725" width="9.0" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="408.70" y="735.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.07%)</title><rect x="1017.7" y="533" width="0.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="1020.73" y="543.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.07%)</title><rect x="842.0" y="325" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="844.97" y="335.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.07%)</title><rect x="803.2" y="693" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="806.21" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="732.0" y="549" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="735.00" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.52%)</title><rect x="880.7" y="709" width="7.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="883.73" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (20,202,020 samples, 0.13%)</title><rect x="302.9" y="549" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="305.95" y="559.5" ></text>
+</g>
+<g >
+<title>from_kuid_munged (10,101,010 samples, 0.07%)</title><rect x="1206.1" y="629" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="1209.12" y="639.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.1.0] (10,101,010 samples, 0.07%)</title><rect x="1325.1" y="821" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1328.10" y="831.5" ></text>
+</g>
+<g >
+<title>filemap_flush (60,606,060 samples, 0.39%)</title><rect x="1082.6" y="597" width="5.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1085.63" y="607.5" ></text>
+</g>
+<g >
+<title>open64 (50,505,050 samples, 0.33%)</title><rect x="979.0" y="773" width="4.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="981.97" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="793.3" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="796.29" y="639.5" ></text>
+</g>
+<g >
+<title>process_backlog (50,505,050 samples, 0.33%)</title><rect x="58.7" y="341" width="4.5" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="61.67" y="351.5" ></text>
+</g>
+<g >
+<title>__lll_lock_wake_private (10,101,010 samples, 0.07%)</title><rect x="74.0" y="933" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="77.00" y="943.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1022.2" y="661" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1025.24" y="671.5" ></text>
+</g>
+<g >
+<title>__d_rehash (10,101,010 samples, 0.07%)</title><rect x="714.0" y="517" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="716.97" y="527.5" ></text>
+</g>
+<g >
+<title>insert_inode_locked (10,101,010 samples, 0.07%)</title><rect x="759.9" y="517" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="762.94" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (10,101,010 samples, 0.07%)</title><rect x="437.3" y="677" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="440.25" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="758.1" y="645" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="761.14" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="830.2" y="629" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="833.25" y="639.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.07%)</title><rect x="645.5" y="485" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="648.47" y="495.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (50,505,050 samples, 0.33%)</title><rect x="58.7" y="197" width="4.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="61.67" y="207.5" ></text>
+</g>
+<g >
+<title>ip_route_output_key_hash_rcu (10,101,010 samples, 0.07%)</title><rect x="1348.5" y="773" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1351.54" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.07%)</title><rect x="767.2" y="549" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="770.15" y="559.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1015.0" y="501" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1018.03" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.52%)</title><rect x="857.3" y="725" width="7.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="860.29" y="735.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="275.0" y="597" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="278.00" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.26%)</title><rect x="691.4" y="693" width="3.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="694.44" y="703.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.07%)</title><rect x="599.5" y="709" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="602.50" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1177.3" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1180.28" y="815.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.07%)</title><rect x="1079.9" y="389" width="0.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="1082.93" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="295.7" y="565" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="298.73" y="575.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.07%)</title><rect x="1031.3" y="597" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1034.25" y="607.5" ></text>
+</g>
+<g >
+<title>unlink_cb (313,131,310 samples, 2.02%)</title><rect x="349.8" y="805" width="28.0" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="352.82" y="815.5" >u..</text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (20,202,020 samples, 0.13%)</title><rect x="668.9" y="453" width="1.8" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="671.90" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1236.8" y="709" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1239.77" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (30,303,030 samples, 0.20%)</title><rect x="406.6" y="709" width="2.7" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="409.60" y="719.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="1226.9" y="613" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1229.85" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="1071.8" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1074.82" y="655.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="705.9" y="389" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="708.86" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="813.1" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="816.12" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_eventfd2 (10,101,010 samples, 0.07%)</title><rect x="71.3" y="837" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="74.29" y="847.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.07%)</title><rect x="109.2" y="661" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="112.15" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="528.3" y="773" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="531.29" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="485.9" y="741" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="488.92" y="751.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.07%)</title><rect x="1357.6" y="805" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1360.55" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="983.5" y="661" width="1.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="986.48" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="1221.4" y="661" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1224.44" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="647.3" y="517" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="650.27" y="527.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.07%)</title><rect x="494.0" y="661" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="497.04" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1375.6" y="917" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1378.58" y="927.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.07%)</title><rect x="814.9" y="437" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="817.92" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="889.7" y="789" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="892.74" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="848.3" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="851.28" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="364.2" y="565" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="367.24" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="1113.3" y="517" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1116.28" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="565.2" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="568.24" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="737.4" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="740.41" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="333.6" y="549" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="336.59" y="559.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.07%)</title><rect x="289.4" y="549" width="0.9" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="292.43" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1044.8" y="581" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1047.77" y="591.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.07%)</title><rect x="1042.1" y="693" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1045.07" y="703.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (80,808,080 samples, 0.52%)</title><rect x="658.1" y="645" width="7.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="661.09" y="655.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.07%)</title><rect x="885.2" y="533" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="888.23" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="1017.7" y="645" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1020.73" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="457.1" y="757" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="460.08" y="767.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.07%)</title><rect x="500.3" y="693" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="503.35" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="490.4" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="493.43" y="671.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (10,101,010 samples, 0.07%)</title><rect x="1371.1" y="421" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1374.07" y="431.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.07%)</title><rect x="610.3" y="517" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="613.31" y="527.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.07%)</title><rect x="985.3" y="581" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="988.28" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_try_merge_freed_extent.part.0 (10,101,010 samples, 0.07%)</title><rect x="310.2" y="485" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="313.16" y="495.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="185.8" y="549" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="188.77" y="559.5" ></text>
+</g>
+<g >
+<title>git_object_lookup_prefix (111,111,110 samples, 0.72%)</title><rect x="516.6" y="837" width="9.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="519.57" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,424,242,400 samples, 15.68%)</title><rect x="182.2" y="837" width="216.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="185.16" y="847.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="1116.0" y="453" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1118.98" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="710.4" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="713.37" y="703.5" ></text>
+</g>
+<g >
+<title>alloc_inode (30,303,030 samples, 0.20%)</title><rect x="138.0" y="805" width="2.7" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="140.99" y="815.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (20,202,020 samples, 0.13%)</title><rect x="104.6" y="805" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="107.64" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="874.4" y="741" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="877.42" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="791.5" y="725" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="794.49" y="735.5" ></text>
+</g>
+<g >
+<title>write (40,404,040 samples, 0.26%)</title><rect x="1049.3" y="805" width="3.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1052.28" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.20%)</title><rect x="346.2" y="645" width="2.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="349.21" y="655.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.07%)</title><rect x="875.3" y="645" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="878.32" y="655.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (10,101,010 samples, 0.07%)</title><rect x="515.7" y="565" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="518.67" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="981.7" y="549" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="984.68" y="559.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (60,606,060 samples, 0.39%)</title><rect x="643.7" y="597" width="5.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="646.66" y="607.5" ></text>
+</g>
+<g >
+<title>strcmp (10,101,010 samples, 0.07%)</title><rect x="704.1" y="501" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="707.06" y="511.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.07%)</title><rect x="237.1" y="629" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="240.15" y="639.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.07%)</title><rect x="707.7" y="517" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="710.66" y="527.5" ></text>
+</g>
+<g >
+<title>__block_commit_write.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="711.3" y="533" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="714.27" y="543.5" ></text>
+</g>
+<g >
+<title>_IO_default_xsputn (10,101,010 samples, 0.07%)</title><rect x="564.3" y="693" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="567.34" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="20.8" y="933" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="23.82" y="943.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="77.6" y="901" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="80.60" y="911.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (10,101,010 samples, 0.07%)</title><rect x="374.2" y="645" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="377.15" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="951.0" y="645" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="954.03" y="655.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="971.8" y="597" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="974.76" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="533.7" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="536.70" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.07%)</title><rect x="542.7" y="645" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="545.71" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="407.5" y="661" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="410.50" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="1055.6" y="725" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1058.59" y="735.5" ></text>
+</g>
+<g >
+<title>alloc_buffer_head (10,101,010 samples, 0.07%)</title><rect x="644.6" y="501" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="647.57" y="511.5" ></text>
+</g>
+<g >
+<title>iput (50,505,050 samples, 0.33%)</title><rect x="462.5" y="661" width="4.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="465.49" y="671.5" ></text>
+</g>
+<g >
+<title>__folio_batch_release (10,101,010 samples, 0.07%)</title><rect x="819.4" y="517" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="822.43" y="527.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.07%)</title><rect x="817.6" y="389" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="820.63" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="894.2" y="549" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="897.25" y="559.5" ></text>
+</g>
+<g >
+<title>folio_wait_bit (10,101,010 samples, 0.07%)</title><rect x="816.7" y="517" width="0.9" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="819.73" y="527.5" ></text>
+</g>
+<g >
+<title>net_send_part (70,707,070 samples, 0.46%)</title><rect x="14.5" y="917" width="6.3" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="17.51" y="927.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="74.0" y="901" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="77.00" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="514.8" y="549" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="517.77" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (20,202,020 samples, 0.13%)</title><rect x="1210.6" y="613" width="1.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1213.63" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.07%)</title><rect x="1004.2" y="485" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1007.21" y="495.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.07%)</title><rect x="279.5" y="501" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="282.51" y="511.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.07%)</title><rect x="164.1" y="949" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="167.13" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.07%)</title><rect x="437.3" y="613" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="440.25" y="623.5" ></text>
+</g>
+<g >
+<title>_raw_spin_trylock (10,101,010 samples, 0.07%)</title><rect x="309.3" y="469" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="312.26" y="479.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.07%)</title><rect x="1042.1" y="661" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1045.07" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.07%)</title><rect x="119.1" y="821" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="122.07" y="831.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.07%)</title><rect x="1198.9" y="725" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1201.91" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="842.0" y="517" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="844.97" y="527.5" ></text>
+</g>
+<g >
+<title>io_schedule (10,101,010 samples, 0.07%)</title><rect x="279.5" y="517" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="282.51" y="527.5" ></text>
+</g>
+<g >
+<title>tasklet_action (10,101,010 samples, 0.07%)</title><rect x="43.4" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="46.35" y="735.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (30,303,030 samples, 0.20%)</title><rect x="1386.4" y="453" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1389.39" y="463.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (20,202,020 samples, 0.13%)</title><rect x="613.9" y="725" width="1.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="616.92" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.07%)</title><rect x="1314.3" y="693" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1317.28" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1189.9" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1192.90" y="735.5" ></text>
+</g>
+<g >
+<title>d_instantiate_new (20,202,020 samples, 0.13%)</title><rect x="145.2" y="821" width="1.8" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="148.21" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_bread (50,505,050 samples, 0.33%)</title><rect x="1252.1" y="725" width="4.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1255.09" y="735.5" ></text>
+</g>
+<g >
+<title>git_reference_symbolic_create_matching (161,616,160 samples, 1.05%)</title><rect x="780.7" y="837" width="14.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="783.67" y="847.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.07%)</title><rect x="818.5" y="229" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="821.53" y="239.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="854.6" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="857.59" y="703.5" ></text>
+</g>
+<g >
+<title>mas_descend_adopt (20,202,020 samples, 0.13%)</title><rect x="1289.0" y="613" width="1.8" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1292.05" y="623.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="710.4" y="469" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="713.37" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (20,202,020 samples, 0.13%)</title><rect x="983.5" y="597" width="1.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="986.48" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="732.0" y="661" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="735.00" y="671.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (20,202,020 samples, 0.13%)</title><rect x="1384.6" y="661" width="1.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1387.59" y="671.5" ></text>
+</g>
+<g >
+<title>nf_nat_init (70,707,070 samples, 0.46%)</title><rect x="1342.2" y="789" width="6.3" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1345.23" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1094.4" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1097.35" y="703.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.07%)</title><rect x="358.8" y="597" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="361.83" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.78%)</title><rect x="1092.5" y="757" width="10.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1095.55" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="303.8" y="485" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="306.85" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="475.1" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="478.11" y="735.5" ></text>
+</g>
+<g >
+<title>submit_bio_wait_endio (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="469" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1064.90" y="479.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_create (10,101,010 samples, 0.07%)</title><rect x="113.7" y="853" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="116.66" y="863.5" ></text>
+</g>
+<g >
+<title>rb_next (10,101,010 samples, 0.07%)</title><rect x="683.3" y="709" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="686.32" y="719.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.07%)</title><rect x="444.5" y="773" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="447.46" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.33%)</title><rect x="979.0" y="757" width="4.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="981.97" y="767.5" ></text>
+</g>
+<g >
+<title>mas_expected_entries (10,101,010 samples, 0.07%)</title><rect x="1284.5" y="725" width="0.9" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="1287.54" y="735.5" ></text>
+</g>
+<g >
+<title>json_object_to_json_string_length (20,202,020 samples, 0.13%)</title><rect x="12.7" y="917" width="1.8" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="15.70" y="927.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.07%)</title><rect x="229.0" y="437" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="232.03" y="447.5" ></text>
+</g>
+<g >
+<title>[[vdso]] (10,101,010 samples, 0.07%)</title><rect x="1353.9" y="901" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1356.95" y="911.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="791.5" y="741" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="794.49" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (292,929,290 samples, 1.89%)</title><rect x="1064.6" y="773" width="26.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1067.60" y="783.5" >[..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="684.2" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="687.23" y="831.5" ></text>
+</g>
+<g >
+<title>unlink_cb (202,020,200 samples, 1.31%)</title><rect x="214.6" y="741" width="18.0" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="217.61" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="785.2" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="788.18" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="736.5" y="757" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="739.51" y="767.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="650.0" y="613" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="652.97" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1221.74" y="783.5" ></text>
+</g>
+<g >
+<title>alloc_pages (10,101,010 samples, 0.07%)</title><rect x="1031.3" y="549" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1034.25" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="331.8" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="334.79" y="607.5" ></text>
+</g>
+<g >
+<title>copy_thread (10,101,010 samples, 0.07%)</title><rect x="35.2" y="933" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="38.24" y="943.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="1063.7" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1066.70" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (30,303,030 samples, 0.20%)</title><rect x="696.8" y="533" width="2.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="699.85" y="543.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="743.7" y="613" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="746.72" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="559.8" y="853" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="562.84" y="863.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.07%)</title><rect x="116.4" y="805" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="119.36" y="815.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.07%)</title><rect x="602.2" y="661" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="605.20" y="671.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="894.2" y="645" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="897.25" y="655.5" ></text>
+</g>
+<g >
+<title>git_oid_tostr_s (10,101,010 samples, 0.07%)</title><rect x="448.1" y="885" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="451.07" y="895.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.07%)</title><rect x="353.4" y="613" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="356.42" y="623.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (20,202,020 samples, 0.13%)</title><rect x="613.9" y="741" width="1.8" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="616.92" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="723.0" y="725" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="725.98" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_match.part.0 (10,101,010 samples, 0.07%)</title><rect x="695.9" y="549" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="698.94" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="708.6" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="711.56" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="453" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1064.90" y="463.5" ></text>
+</g>
+<g >
+<title>jbd2_cleanup_journal_tail (10,101,010 samples, 0.07%)</title><rect x="1073.6" y="453" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1076.62" y="463.5" ></text>
+</g>
+<g >
+<title>submit_bh (10,101,010 samples, 0.07%)</title><rect x="1073.6" y="389" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1076.62" y="399.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.1.0] (30,303,030 samples, 0.20%)</title><rect x="1323.3" y="869" width="2.7" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1326.30" y="879.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.13%)</title><rect x="484.1" y="757" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="487.12" y="767.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1186.3" y="741" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1189.29" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="1000.6" y="629" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1003.61" y="639.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="808.6" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="811.62" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="565.2" y="757" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="568.24" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_create_openreq_child (10,101,010 samples, 0.07%)</title><rect x="1378.3" y="261" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1381.28" y="271.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="700.5" y="517" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="703.45" y="527.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (10,101,010 samples, 0.07%)</title><rect x="62.3" y="117" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="65.28" y="127.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (30,303,030 samples, 0.20%)</title><rect x="504.0" y="677" width="2.7" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="506.95" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (90,909,090 samples, 0.59%)</title><rect x="384.1" y="677" width="8.1" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="387.07" y="687.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.07%)</title><rect x="714.0" y="581" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="716.97" y="591.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="650.0" y="645" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="652.97" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="867.2" y="597" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="870.20" y="607.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.07%)</title><rect x="906.0" y="533" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="908.96" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="721.2" y="741" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="724.18" y="751.5" ></text>
+</g>
+<g >
+<title>scsi_dispatch_cmd (10,101,010 samples, 0.07%)</title><rect x="1082.6" y="325" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1085.63" y="335.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (40,404,040 samples, 0.26%)</title><rect x="1386.4" y="677" width="3.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1389.39" y="687.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (20,202,020 samples, 0.13%)</title><rect x="10.9" y="949" width="1.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="13.90" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (80,808,080 samples, 0.52%)</title><rect x="576.1" y="645" width="7.2" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="579.06" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="761.7" y="581" width="1.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="764.74" y="591.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.07%)</title><rect x="1114.2" y="389" width="0.9" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="1117.18" y="399.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.07%)</title><rect x="687.8" y="725" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="690.83" y="735.5" ></text>
+</g>
+<g >
+<title>inet_ehash_insert (10,101,010 samples, 0.07%)</title><rect x="1382.8" y="741" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1385.79" y="751.5" ></text>
+</g>
+<g >
+<title>hook_inode_free_security (10,101,010 samples, 0.07%)</title><rect x="283.1" y="581" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="286.12" y="591.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (20,202,020 samples, 0.13%)</title><rect x="1245.8" y="869" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1248.78" y="879.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="496.7" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="499.74" y="719.5" ></text>
+</g>
+<g >
+<title>git_repository_init_ext (2,595,959,570 samples, 16.79%)</title><rect x="978.1" y="853" width="231.6" height="15.0" fill="rgb(0,235,192)" rx="2" ry="2" />
+<text x="981.07" y="863.5" >git_repository_init_ext</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="863.6" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="866.60" y="703.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.07%)</title><rect x="684.2" y="709" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="687.23" y="719.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.07%)</title><rect x="668.9" y="373" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="671.90" y="383.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.07%)</title><rect x="397.6" y="693" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="400.59" y="703.5" ></text>
+</g>
+<g >
+<title>json_tokener_parse_ex (30,303,030 samples, 0.20%)</title><rect x="1361.2" y="837" width="2.7" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1364.16" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,808,080 samples, 0.52%)</title><rect x="622.0" y="741" width="7.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="625.03" y="751.5" ></text>
+</g>
+<g >
+<title>dentry_kill (10,101,010 samples, 0.07%)</title><rect x="53.3" y="709" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="56.27" y="719.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct (10,101,010 samples, 0.07%)</title><rect x="467.9" y="533" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="470.90" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (10,101,010 samples, 0.07%)</title><rect x="811.3" y="581" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="814.32" y="591.5" ></text>
+</g>
+<g >
+<title>path_openat (40,404,040 samples, 0.26%)</title><rect x="232.6" y="677" width="3.6" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="235.64" y="687.5" ></text>
+</g>
+<g >
+<title>file_modified (10,101,010 samples, 0.07%)</title><rect x="704.1" y="581" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="707.06" y="591.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.07%)</title><rect x="512.1" y="581" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="515.06" y="591.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="341" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1084.73" y="351.5" ></text>
+</g>
+<g >
+<title>readdir64 (101,010,100 samples, 0.65%)</title><rect x="259.7" y="773" width="9.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="262.68" y="783.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.07%)</title><rect x="547.2" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="550.22" y="591.5" ></text>
+</g>
+<g >
+<title>inode_maybe_inc_iversion (10,101,010 samples, 0.07%)</title><rect x="356.1" y="661" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="359.13" y="671.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.07%)</title><rect x="1111.5" y="533" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1114.48" y="543.5" ></text>
+</g>
+<g >
+<title>journal_end_buffer_io_sync (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="309" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="1084.73" y="319.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (10,101,010 samples, 0.07%)</title><rect x="979.9" y="613" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="982.88" y="623.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="664.4" y="437" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="667.40" y="447.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.46%)</title><rect x="205.6" y="677" width="6.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="208.60" y="687.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.07%)</title><rect x="170.4" y="741" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="173.44" y="751.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="86.6" y="837" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="89.62" y="847.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.07%)</title><rect x="768.1" y="613" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="771.05" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (30,303,030 samples, 0.20%)</title><rect x="386.8" y="645" width="2.7" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="389.77" y="655.5" ></text>
+</g>
+<g >
+<title>____fput (30,303,030 samples, 0.20%)</title><rect x="651.8" y="645" width="2.7" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="654.78" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="751.8" y="629" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="754.83" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="997.0" y="709" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1000.00" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (60,606,060 samples, 0.39%)</title><rect x="1008.7" y="533" width="5.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1011.72" y="543.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (80,808,080 samples, 0.52%)</title><rect x="1327.8" y="597" width="7.2" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1330.81" y="607.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited (10,101,010 samples, 0.07%)</title><rect x="510.3" y="629" width="0.9" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="513.26" y="639.5" ></text>
+</g>
+<g >
+<title>list_lru_del (10,101,010 samples, 0.07%)</title><rect x="198.4" y="517" width="0.9" height="15.0" fill="rgb(0,216,113)" rx="2" ry="2" />
+<text x="201.39" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (20,202,020 samples, 0.13%)</title><rect x="644.6" y="565" width="1.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="647.57" y="575.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.07%)</title><rect x="929.4" y="517" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="932.40" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.59%)</title><rect x="1209.7" y="757" width="8.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1212.73" y="767.5" ></text>
+</g>
+<g >
+<title>fstatat64 (101,010,100 samples, 0.65%)</title><rect x="321.0" y="789" width="9.0" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="323.97" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="911.4" y="597" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="914.37" y="607.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="550.8" y="709" width="1.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="553.82" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (50,505,050 samples, 0.33%)</title><rect x="1252.1" y="677" width="4.5" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1255.09" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (20,202,020 samples, 0.13%)</title><rect x="469.7" y="517" width="1.8" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="472.70" y="527.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.07%)</title><rect x="180.4" y="837" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="183.36" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="556.2" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="559.23" y="735.5" ></text>
+</g>
+<g >
+<title>git_signature_default (40,404,040 samples, 0.26%)</title><rect x="790.6" y="805" width="3.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="793.59" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="860.9" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="863.89" y="671.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.07%)</title><rect x="684.2" y="773" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="687.23" y="783.5" ></text>
+</g>
+<g >
+<title>mkdir (50,505,050 samples, 0.33%)</title><rect x="695.9" y="709" width="4.6" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="698.94" y="719.5" ></text>
+</g>
+<g >
+<title>__percpu_counter_init (10,101,010 samples, 0.07%)</title><rect x="1305.3" y="725" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1308.27" y="735.5" ></text>
+</g>
+<g >
+<title>faccessat (10,101,010 samples, 0.07%)</title><rect x="1193.5" y="757" width="0.9" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="1196.50" y="767.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="459.8" y="565" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="462.78" y="575.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.07%)</title><rect x="981.7" y="501" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="984.68" y="511.5" ></text>
+</g>
+<g >
+<title>mpage_prepare_extent_to_map (10,101,010 samples, 0.07%)</title><rect x="819.4" y="533" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="822.43" y="543.5" ></text>
+</g>
+<g >
+<title>d_lookup (10,101,010 samples, 0.07%)</title><rect x="231.7" y="597" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="234.74" y="607.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="428.2" y="661" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="431.24" y="671.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.07%)</title><rect x="652.7" y="613" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="655.68" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.20%)</title><rect x="1240.4" y="677" width="2.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1243.37" y="687.5" ></text>
+</g>
+<g >
+<title>____fput (20,202,020 samples, 0.13%)</title><rect x="50.6" y="773" width="1.8" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="53.56" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (111,111,110 samples, 0.72%)</title><rect x="404.8" y="773" width="9.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="407.80" y="783.5" ></text>
+</g>
+<g >
+<title>ipv4_conntrack_local (10,101,010 samples, 0.07%)</title><rect x="1372.0" y="549" width="0.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1374.97" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (10,101,010 samples, 0.07%)</title><rect x="195.7" y="581" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="198.68" y="591.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.07%)</title><rect x="993.4" y="661" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="996.40" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (101,010,100 samples, 0.65%)</title><rect x="1327.8" y="709" width="9.0" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1330.81" y="719.5" ></text>
+</g>
+<g >
+<title>ip_output (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="613" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1343.42" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (10,101,010 samples, 0.07%)</title><rect x="698.6" y="501" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="701.65" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="787.9" y="645" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="790.88" y="655.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_handle_over_high (10,101,010 samples, 0.07%)</title><rect x="164.1" y="917" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="167.13" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.07%)</title><rect x="413.8" y="549" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="416.81" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="739.2" y="661" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="742.21" y="671.5" ></text>
+</g>
+<g >
+<title>git_index_set_caps (10,101,010 samples, 0.07%)</title><rect x="552.6" y="853" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="555.63" y="863.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (50,505,050 samples, 0.33%)</title><rect x="58.7" y="261" width="4.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="61.67" y="271.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.07%)</title><rect x="109.2" y="757" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="112.15" y="767.5" ></text>
+</g>
+<g >
+<title>mas_wmb_replace (20,202,020 samples, 0.13%)</title><rect x="1289.0" y="629" width="1.8" height="15.0" fill="rgb(0,212,96)" rx="2" ry="2" />
+<text x="1292.05" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (202,020,200 samples, 1.31%)</title><rect x="933.0" y="597" width="18.0" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="936.00" y="607.5" ></text>
+</g>
+<g >
+<title>getname (20,202,020 samples, 0.13%)</title><rect x="619.3" y="693" width="1.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="622.33" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="508.5" y="533" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="511.46" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="776.2" y="629" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="779.17" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="523.8" y="693" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="526.78" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="177.7" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="180.66" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="833.0" y="581" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="835.95" y="591.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.07%)</title><rect x="952.8" y="581" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="955.83" y="591.5" ></text>
+</g>
+<g >
+<title>__socket (20,202,020 samples, 0.13%)</title><rect x="1337.7" y="933" width="1.8" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1340.72" y="943.5" ></text>
+</g>
+<g >
+<title>__jbd2_journal_file_buffer (10,101,010 samples, 0.07%)</title><rect x="577.9" y="565" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="580.86" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (30,303,030 samples, 0.20%)</title><rect x="93.8" y="773" width="2.7" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="96.83" y="783.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (10,101,010 samples, 0.07%)</title><rect x="1364.8" y="565" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1367.76" y="575.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="397.6" y="709" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="400.59" y="719.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.07%)</title><rect x="950.1" y="533" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="953.13" y="543.5" ></text>
+</g>
+<g >
+<title>event_fd_create (10,101,010 samples, 0.07%)</title><rect x="70.4" y="869" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="73.39" y="879.5" ></text>
+</g>
+<g >
+<title>vm_mmap_pgoff (10,101,010 samples, 0.07%)</title><rect x="67.7" y="773" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="70.69" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="559.8" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="562.84" y="783.5" ></text>
+</g>
+<g >
+<title>iput (80,808,080 samples, 0.52%)</title><rect x="658.1" y="613" width="7.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="661.09" y="623.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="580.6" y="565" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="583.57" y="575.5" ></text>
+</g>
+<g >
+<title>ima_file_check (20,202,020 samples, 0.13%)</title><rect x="101.0" y="869" width="1.8" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="104.04" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.07%)</title><rect x="343.5" y="693" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="346.51" y="703.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (20,202,020 samples, 0.13%)</title><rect x="769.9" y="613" width="1.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="772.86" y="623.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="505.8" y="629" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="508.75" y="639.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="805" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1339.82" y="815.5" ></text>
+</g>
+<g >
+<title>mpage_prepare_extent_to_map (20,202,020 samples, 0.13%)</title><rect x="845.6" y="533" width="1.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="848.57" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (40,404,040 samples, 0.26%)</title><rect x="673.4" y="485" width="3.6" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="676.41" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.07%)</title><rect x="1069.1" y="533" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1072.11" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.07%)</title><rect x="595.0" y="597" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="597.99" y="607.5" ></text>
+</g>
+<g >
+<title>getdents64 (30,303,030 samples, 0.20%)</title><rect x="1224.1" y="725" width="2.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1227.15" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="475.1" y="469" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="478.11" y="479.5" ></text>
+</g>
+<g >
+<title>tcp_clean_rtx_queue.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1377.4" y="693" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="1380.38" y="703.5" ></text>
+</g>
+<g >
+<title>open64 (60,606,060 samples, 0.39%)</title><rect x="504.0" y="821" width="5.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="506.95" y="831.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_destroy (10,101,010 samples, 0.07%)</title><rect x="1322.4" y="949" width="0.9" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="1325.40" y="959.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1253.0" y="517" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1255.99" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="473.3" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="476.31" y="671.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.07%)</title><rect x="559.8" y="869" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="562.84" y="879.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.07%)</title><rect x="345.3" y="661" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="348.31" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.07%)</title><rect x="1005.1" y="485" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1008.11" y="495.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="176.8" y="853" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="179.75" y="863.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="794.2" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="797.19" y="767.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.07%)</title><rect x="116.4" y="821" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="119.36" y="831.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.07%)</title><rect x="818.5" y="261" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="821.53" y="271.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.07%)</title><rect x="163.2" y="933" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="166.23" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="1142.1" y="613" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1145.12" y="623.5" ></text>
+</g>
+<g >
+<title>_IO_default_xsputn (10,101,010 samples, 0.07%)</title><rect x="968.2" y="661" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="971.16" y="671.5" ></text>
+</g>
+<g >
+<title>generic_write_end (10,101,010 samples, 0.07%)</title><rect x="707.7" y="549" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="710.66" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_lock_group (10,101,010 samples, 0.07%)</title><rect x="814.0" y="469" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="817.02" y="479.5" ></text>
+</g>
+<g >
+<title>git_repository__cleanup (60,606,060 samples, 0.39%)</title><rect x="176.8" y="885" width="5.4" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="179.75" y="895.5" ></text>
+</g>
+<g >
+<title>inet_stream_connect (151,515,150 samples, 0.98%)</title><rect x="1376.5" y="837" width="13.5" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1379.48" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_rename (141,414,140 samples, 0.91%)</title><rect x="667.1" y="645" width="12.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="670.10" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (90,909,090 samples, 0.59%)</title><rect x="1201.6" y="773" width="8.1" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1204.61" y="783.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="716.7" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="719.68" y="639.5" ></text>
+</g>
+<g >
+<title>strncmp (10,101,010 samples, 0.07%)</title><rect x="1089.8" y="629" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1092.84" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="325" width="2.7" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1381.28" y="335.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.07%)</title><rect x="1239.5" y="677" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1242.47" y="687.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="405" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1368.66" y="415.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="766.3" y="645" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="769.25" y="655.5" ></text>
+</g>
+<g >
+<title>srso_alias_return_thunk (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="661" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1233.46" y="671.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (20,202,020 samples, 0.13%)</title><rect x="192.1" y="709" width="1.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="195.08" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.07%)</title><rect x="452.6" y="709" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="455.57" y="719.5" ></text>
+</g>
+<g >
+<title>slab_pre_alloc_hook.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="138.0" y="757" width="1.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="140.99" y="767.5" ></text>
+</g>
+<g >
+<title>rb_first (10,101,010 samples, 0.07%)</title><rect x="344.4" y="693" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="347.41" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (20,202,020 samples, 0.13%)</title><rect x="248.9" y="597" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="251.86" y="607.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="485" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1064.90" y="495.5" ></text>
+</g>
+<g >
+<title>iput (111,111,110 samples, 0.72%)</title><rect x="220.0" y="613" width="9.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="223.02" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.07%)</title><rect x="1079.9" y="485" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1082.93" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_es_free_extent (10,101,010 samples, 0.07%)</title><rect x="301.1" y="533" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="304.14" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="516.6" y="821" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="519.57" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (232,323,230 samples, 1.50%)</title><rect x="898.8" y="821" width="20.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="901.75" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="1132.2" y="677" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1135.21" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="435.4" y="661" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="438.45" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="824.8" y="741" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="827.84" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.07%)</title><rect x="434.5" y="693" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="437.55" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="901" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1374.97" y="911.5" ></text>
+</g>
+<g >
+<title>select_collect (10,101,010 samples, 0.07%)</title><rect x="312.9" y="613" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="315.86" y="623.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.07%)</title><rect x="340.8" y="757" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="343.80" y="767.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.07%)</title><rect x="493.1" y="597" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="496.14" y="607.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="546.3" y="757" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="549.32" y="767.5" ></text>
+</g>
+<g >
+<title>mas_wr_bnode (30,303,030 samples, 0.20%)</title><rect x="1289.0" y="677" width="2.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1292.05" y="687.5" ></text>
+</g>
+<g >
+<title>__d_rehash (10,101,010 samples, 0.07%)</title><rect x="172.2" y="805" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="175.25" y="815.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.07%)</title><rect x="1171.9" y="645" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1174.87" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="1019.5" y="533" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1022.54" y="543.5" ></text>
+</g>
+<g >
+<title>libjson_from_string (50,505,050 samples, 0.33%)</title><rect x="1359.4" y="869" width="4.5" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1362.35" y="879.5" ></text>
+</g>
+<g >
+<title>dquot_free_inode (10,101,010 samples, 0.07%)</title><rect x="361.5" y="629" width="0.9" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="364.53" y="639.5" ></text>
+</g>
+<g >
+<title>get_obj_cgroup_from_current (10,101,010 samples, 0.07%)</title><rect x="1295.4" y="709" width="0.9" height="15.0" fill="rgb(0,206,71)" rx="2" ry="2" />
+<text x="1298.36" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="970.0" y="709" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="972.96" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="902.4" y="693" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="905.36" y="703.5" ></text>
+</g>
+<g >
+<title>write (60,606,060 samples, 0.39%)</title><rect x="643.7" y="725" width="5.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="646.66" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.07%)</title><rect x="517.5" y="661" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="520.47" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1002.4" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1005.41" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="881.6" y="661" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="884.63" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="710.4" y="629" width="1.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="713.37" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_rename (90,909,090 samples, 0.59%)</title><rect x="910.5" y="709" width="8.1" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="913.47" y="719.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="770.8" y="437" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="773.76" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.59%)</title><rect x="531.0" y="821" width="8.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="533.99" y="831.5" ></text>
+</g>
+<g >
+<title>filemap_get_read_batch (10,101,010 samples, 0.07%)</title><rect x="536.4" y="549" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="539.40" y="559.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="116.4" y="773" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="119.36" y="783.5" ></text>
+</g>
+<g >
+<title>__schedule (20,202,020 samples, 0.13%)</title><rect x="23.5" y="805" width="1.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="26.52" y="815.5" ></text>
+</g>
+<g >
+<title>from_kuid (10,101,010 samples, 0.07%)</title><rect x="225.4" y="437" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="228.43" y="447.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="679.7" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="682.72" y="783.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="975.4" y="549" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="978.37" y="559.5" ></text>
+</g>
+<g >
+<title>mb_find_extent (10,101,010 samples, 0.07%)</title><rect x="593.2" y="501" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="596.19" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (40,404,040 samples, 0.26%)</title><rect x="905.1" y="613" width="3.6" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="908.06" y="623.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="441.8" y="677" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="444.76" y="687.5" ></text>
+</g>
+<g >
+<title>__do_softirq (50,505,050 samples, 0.33%)</title><rect x="58.7" y="389" width="4.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="61.67" y="399.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="988.0" y="773" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="990.99" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="553.5" y="789" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="556.53" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="862.7" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="865.70" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="785.2" y="709" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="788.18" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (60,606,060 samples, 0.39%)</title><rect x="1055.6" y="757" width="5.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1058.59" y="767.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (50,505,050 samples, 0.33%)</title><rect x="102.8" y="853" width="4.5" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="105.84" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_lock_group (10,101,010 samples, 0.07%)</title><rect x="309.3" y="485" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="312.26" y="495.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (30,303,030 samples, 0.20%)</title><rect x="260.6" y="565" width="2.7" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="263.58" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="1002.4" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1005.41" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1236.8" y="661" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1239.77" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.46%)</title><rect x="434.5" y="805" width="6.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="437.55" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (474,747,470 samples, 3.07%)</title><rect x="1131.3" y="725" width="42.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1134.31" y="735.5" >ext..</text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="20.8" y="917" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="23.82" y="927.5" ></text>
+</g>
+<g >
+<title>readdir64 (30,303,030 samples, 0.20%)</title><rect x="431.8" y="869" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="434.84" y="879.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (20,202,020 samples, 0.13%)</title><rect x="190.3" y="549" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="193.27" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.13%)</title><rect x="147.9" y="757" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="150.91" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.20%)</title><rect x="712.2" y="661" width="2.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="715.17" y="671.5" ></text>
+</g>
+<g >
+<title>__fput (30,303,030 samples, 0.20%)</title><rect x="651.8" y="629" width="2.7" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="654.78" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="453.5" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="456.47" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="1196.2" y="821" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1199.21" y="831.5" ></text>
+</g>
+<g >
+<title>_copy_to_user (10,101,010 samples, 0.07%)</title><rect x="483.2" y="613" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="486.22" y="623.5" ></text>
+</g>
+<g >
+<title>evict (40,404,040 samples, 0.26%)</title><rect x="421.9" y="725" width="3.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="424.93" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="550.8" y="821" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="553.82" y="831.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.07%)</title><rect x="1072.7" y="613" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1075.72" y="623.5" ></text>
+</g>
+<g >
+<title>git_remote_lookup (50,505,050 samples, 0.33%)</title><rect x="847.4" y="837" width="4.5" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="850.37" y="847.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="621.1" y="709" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="624.13" y="719.5" ></text>
+</g>
+<g >
+<title>do_filp_open (686,868,680 samples, 4.44%)</title><rect x="101.0" y="917" width="61.3" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="104.04" y="927.5" >do_fil..</text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="757.2" y="645" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="760.24" y="655.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (202,020,200 samples, 1.31%)</title><rect x="1072.7" y="677" width="18.0" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="1075.72" y="687.5" ></text>
+</g>
+<g >
+<title>write (70,707,070 samples, 0.46%)</title><rect x="1096.2" y="725" width="6.3" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1099.15" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (20,202,020 samples, 0.13%)</title><rect x="412.9" y="645" width="1.8" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="415.91" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.07%)</title><rect x="1039.4" y="629" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1042.37" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_fname_setup_filename (10,101,010 samples, 0.07%)</title><rect x="277.7" y="629" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="280.71" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="429.1" y="837" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="432.14" y="847.5" ></text>
+</g>
+<g >
+<title>kfree_skbmem (10,101,010 samples, 0.07%)</title><rect x="1374.7" y="405" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1377.68" y="415.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="539.1" y="821" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="542.11" y="831.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited_flags (10,101,010 samples, 0.07%)</title><rect x="1049.3" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1052.28" y="655.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.07%)</title><rect x="1114.2" y="421" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1117.18" y="431.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.07%)</title><rect x="281.3" y="549" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="284.31" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="866.3" y="613" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="869.30" y="623.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (30,303,030 samples, 0.20%)</title><rect x="15.4" y="693" width="2.7" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="18.41" y="703.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.07%)</title><rect x="475.1" y="613" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="478.11" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.98%)</title><rect x="1232.3" y="837" width="13.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1235.26" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.39%)</title><rect x="1055.6" y="805" width="5.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1058.59" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="523.8" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="526.78" y="719.5" ></text>
+</g>
+<g >
+<title>client_create_thread (40,404,040 samples, 0.26%)</title><rect x="66.8" y="885" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="69.79" y="895.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="23.5" y="901" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="26.52" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (707,070,700 samples, 4.57%)</title><rect x="100.1" y="965" width="63.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="103.14" y="975.5" >do_sys..</text>
+</g>
+<g >
+<title>ext4_evict_inode (40,404,040 samples, 0.26%)</title><rect x="421.9" y="709" width="3.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="424.93" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="1049.3" y="789" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1052.28" y="799.5" ></text>
+</g>
+<g >
+<title>mpage_submit_folio (30,303,030 samples, 0.20%)</title><rect x="1125.0" y="485" width="2.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1128.00" y="495.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="719.4" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="722.38" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (40,404,040 samples, 0.26%)</title><rect x="927.6" y="629" width="3.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="930.60" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.07%)</title><rect x="431.8" y="677" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="434.84" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="588.7" y="469" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="591.68" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="1078.1" y="469" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1081.13" y="479.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.07%)</title><rect x="1067.3" y="709" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1070.31" y="719.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.07%)</title><rect x="858.2" y="597" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="861.19" y="607.5" ></text>
+</g>
+<g >
+<title>ksys_read (20,202,020 samples, 0.13%)</title><rect x="1310.7" y="805" width="1.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1313.68" y="815.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="700.5" y="533" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="703.45" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="768.1" y="581" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="771.05" y="591.5" ></text>
+</g>
+<g >
+<title>jbd2_alloc (10,101,010 samples, 0.07%)</title><rect x="1031.3" y="581" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1034.25" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (10,101,010 samples, 0.07%)</title><rect x="197.5" y="501" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="200.49" y="511.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="70.4" y="837" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="73.39" y="847.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="378.7" y="757" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="381.66" y="767.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="842.0" y="421" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="844.97" y="431.5" ></text>
+</g>
+<g >
+<title>ksys_read (20,202,020 samples, 0.13%)</title><rect x="721.2" y="629" width="1.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="724.18" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (20,202,020 samples, 0.13%)</title><rect x="1135.8" y="661" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1138.81" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="75.8" y="821" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="78.80" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="863.6" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="866.60" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.07%)</title><rect x="950.1" y="565" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="953.13" y="575.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.07%)</title><rect x="1204.3" y="565" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="1207.32" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (343,434,340 samples, 2.22%)</title><rect x="478.7" y="837" width="30.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="481.71" y="847.5" >[l..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.85%)</title><rect x="601.3" y="757" width="11.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="604.30" y="767.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="1243.1" y="645" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1246.08" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_journal_check_start (10,101,010 samples, 0.07%)</title><rect x="1140.3" y="677" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1143.32" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (90,909,090 samples, 0.59%)</title><rect x="1119.6" y="533" width="8.1" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1122.59" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="368.7" y="533" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="371.75" y="543.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.20%)</title><rect x="953.7" y="709" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="956.74" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="736.5" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="739.51" y="655.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="541.8" y="725" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="544.81" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="417.4" y="773" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="420.42" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.07%)</title><rect x="1148.4" y="677" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="1151.43" y="687.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.07%)</title><rect x="164.1" y="933" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="167.13" y="943.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1015.0" y="517" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1018.03" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1052.9" y="805" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1055.89" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="295.7" y="517" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="298.73" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.46%)</title><rect x="1234.1" y="741" width="6.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1237.06" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_attach_jinode (20,202,020 samples, 0.13%)</title><rect x="1024.9" y="629" width="1.8" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="1027.94" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.20%)</title><rect x="491.3" y="677" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="494.33" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.26%)</title><rect x="141.6" y="821" width="3.6" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="144.60" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="800.5" y="757" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="803.50" y="767.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (90,909,090 samples, 0.59%)</title><rect x="1119.6" y="597" width="8.1" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="1122.59" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="887.0" y="645" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="890.03" y="655.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.07%)</title><rect x="1239.5" y="629" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1242.47" y="639.5" ></text>
+</g>
+<g >
+<title>sk_reset_timer (10,101,010 samples, 0.07%)</title><rect x="1335.9" y="661" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="1338.92" y="671.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.07%)</title><rect x="878.9" y="757" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="881.92" y="767.5" ></text>
+</g>
+<g >
+<title>scsi_done (10,101,010 samples, 0.07%)</title><rect x="43.4" y="645" width="0.9" height="15.0" fill="rgb(0,205,63)" rx="2" ry="2" />
+<text x="46.35" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (111,111,110 samples, 0.72%)</title><rect x="165.0" y="965" width="10.0" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="168.04" y="975.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="455.3" y="693" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="458.28" y="703.5" ></text>
+</g>
+<g >
+<title>dentry_kill (80,808,080 samples, 0.52%)</title><rect x="1110.6" y="661" width="7.2" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1113.57" y="671.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="807.7" y="613" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="810.71" y="623.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.07%)</title><rect x="901.5" y="597" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="904.46" y="607.5" ></text>
+</g>
+<g >
+<title>memcg_account_kmem (10,101,010 samples, 0.07%)</title><rect x="406.6" y="421" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="409.60" y="431.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="968.2" y="709" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="971.16" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.07%)</title><rect x="765.3" y="661" width="1.0" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="768.35" y="671.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="613" width="3.6" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1374.97" y="623.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_tcp_packet (10,101,010 samples, 0.07%)</title><rect x="1385.5" y="629" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1388.49" y="639.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.07%)</title><rect x="1105.2" y="581" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1108.17" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="920.4" y="629" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="923.39" y="639.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.07%)</title><rect x="57.8" y="501" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="60.77" y="511.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (40,404,040 samples, 0.26%)</title><rect x="773.5" y="757" width="3.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="776.46" y="767.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="950.1" y="549" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="953.13" y="559.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.07%)</title><rect x="817.6" y="421" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="820.63" y="431.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="316.5" y="661" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="319.47" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_validate_inode_bitmap (10,101,010 samples, 0.07%)</title><rect x="385.9" y="629" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="388.87" y="639.5" ></text>
+</g>
+<g >
+<title>remove (121,212,120 samples, 0.78%)</title><rect x="404.8" y="821" width="10.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="407.80" y="831.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1198.0" y="709" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1201.01" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.07%)</title><rect x="914.1" y="501" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="917.08" y="511.5" ></text>
+</g>
+<g >
+<title>do_faccessat (30,303,030 samples, 0.20%)</title><rect x="1179.1" y="741" width="2.7" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1182.08" y="751.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="616.6" y="645" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="619.62" y="655.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.07%)</title><rect x="330.0" y="661" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="332.99" y="671.5" ></text>
+</g>
+<g >
+<title>generic_write_checks (10,101,010 samples, 0.07%)</title><rect x="1101.6" y="597" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1104.56" y="607.5" ></text>
+</g>
+<g >
+<title>ip_local_out (60,606,060 samples, 0.39%)</title><rect x="1384.6" y="725" width="5.4" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1387.59" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (30,303,030 samples, 0.20%)</title><rect x="147.0" y="805" width="2.7" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="150.01" y="815.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="298.4" y="485" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="301.44" y="495.5" ></text>
+</g>
+<g >
+<title>tcp_connect (40,404,040 samples, 0.26%)</title><rect x="1349.4" y="789" width="3.6" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1352.44" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.07%)</title><rect x="550.8" y="629" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="553.82" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1175.5" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1178.47" y="783.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (70,707,070 samples, 0.46%)</title><rect x="58.7" y="469" width="6.3" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="61.67" y="479.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (10,101,010 samples, 0.07%)</title><rect x="957.3" y="501" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="960.34" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="475.1" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="478.11" y="719.5" ></text>
+</g>
+<g >
+<title>storvsc_on_channel_callback (10,101,010 samples, 0.07%)</title><rect x="43.4" y="677" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="46.35" y="687.5" ></text>
+</g>
+<g >
+<title>d_alloc (20,202,020 samples, 0.13%)</title><rect x="990.7" y="629" width="1.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="993.69" y="639.5" ></text>
+</g>
+<g >
+<title>skb_do_copy_data_nocache (10,101,010 samples, 0.07%)</title><rect x="14.5" y="773" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="17.51" y="783.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.07%)</title><rect x="632.8" y="661" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="635.85" y="671.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="861.8" y="565" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="864.80" y="575.5" ></text>
+</g>
+<g >
+<title>ip_rcv (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="389" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1343.42" y="399.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.07%)</title><rect x="132.6" y="741" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="135.59" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="975.4" y="597" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="978.37" y="607.5" ></text>
+</g>
+<g >
+<title>trace_call_bpf (20,202,020 samples, 0.13%)</title><rect x="1381.0" y="725" width="1.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1383.99" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (80,808,080 samples, 0.52%)</title><rect x="1163.8" y="597" width="7.2" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1166.76" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.07%)</title><rect x="1067.3" y="629" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1070.31" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.59%)</title><rect x="531.0" y="789" width="8.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="533.99" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (30,303,030 samples, 0.20%)</title><rect x="1050.2" y="661" width="2.7" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1053.18" y="671.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.07%)</title><rect x="743.7" y="645" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="746.72" y="655.5" ></text>
+</g>
+<g >
+<title>lockref_put_return (10,101,010 samples, 0.07%)</title><rect x="161.4" y="869" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="164.43" y="879.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.07%)</title><rect x="901.5" y="709" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="904.46" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="537.3" y="645" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="540.30" y="655.5" ></text>
+</g>
+<g >
+<title>lockref_put_return (10,101,010 samples, 0.07%)</title><rect x="1308.0" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1310.98" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (565,656,560 samples, 3.66%)</title><rect x="562.5" y="789" width="50.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="565.54" y="799.5" >[libg..</text>
+</g>
+<g >
+<title>futex_wait_queue (20,202,020 samples, 0.13%)</title><rect x="23.5" y="837" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="26.52" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (131,313,130 samples, 0.85%)</title><rect x="240.8" y="693" width="11.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="243.75" y="703.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_forget (10,101,010 samples, 0.07%)</title><rect x="227.2" y="437" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="230.23" y="447.5" ></text>
+</g>
+<g >
+<title>blk_mq_start_request (10,101,010 samples, 0.07%)</title><rect x="817.6" y="357" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="820.63" y="367.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct_nocheck (10,101,010 samples, 0.07%)</title><rect x="1122.3" y="469" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1125.29" y="479.5" ></text>
+</g>
+<g >
+<title>copy_page_range (111,111,110 samples, 0.72%)</title><rect x="1271.9" y="725" width="9.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1274.92" y="735.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.07%)</title><rect x="863.6" y="533" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="866.60" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1245.8" y="821" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1248.78" y="831.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1002.4" y="453" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1005.41" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="74.0" y="917" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="77.00" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="335.4" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="338.40" y="591.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (30,303,030 samples, 0.20%)</title><rect x="1349.4" y="757" width="2.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1352.44" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.39%)</title><rect x="232.6" y="741" width="5.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="235.64" y="751.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_ipv4 (10,101,010 samples, 0.07%)</title><rect x="15.4" y="629" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="18.41" y="639.5" ></text>
+</g>
+<g >
+<title>log_entry_start (80,808,080 samples, 0.52%)</title><rect x="74.9" y="949" width="7.2" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="77.90" y="959.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="441.8" y="853" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="444.76" y="863.5" ></text>
+</g>
+<g >
+<title>filemap_flush (60,606,060 samples, 0.39%)</title><rect x="912.3" y="645" width="5.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="915.27" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (40,404,040 samples, 0.26%)</title><rect x="773.5" y="741" width="3.6" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="776.46" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.07%)</title><rect x="1205.2" y="565" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1208.22" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_synsent_state_process (20,202,020 samples, 0.13%)</title><rect x="1339.5" y="725" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1342.52" y="735.5" ></text>
+</g>
+<g >
+<title>dentry_free (10,101,010 samples, 0.07%)</title><rect x="229.9" y="565" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="232.93" y="575.5" ></text>
+</g>
+<g >
+<title>half_md4_transform (10,101,010 samples, 0.07%)</title><rect x="402.1" y="645" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="405.10" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="805.9" y="725" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="808.91" y="735.5" ></text>
+</g>
+<g >
+<title>create_empty_buffers (10,101,010 samples, 0.07%)</title><rect x="803.2" y="565" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="806.21" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="867.2" y="581" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="870.20" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="403.9" y="613" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="406.90" y="623.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="1170.1" y="581" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1173.07" y="591.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="988.9" y="597" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="991.89" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (50,505,050 samples, 0.33%)</title><rect x="92.0" y="869" width="4.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="95.02" y="879.5" ></text>
+</g>
+<g >
+<title>git_object_lookup_prefix (60,606,060 samples, 0.39%)</title><rect x="685.1" y="837" width="5.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="688.13" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (737,373,730 samples, 4.77%)</title><rect x="478.7" y="885" width="65.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="481.71" y="895.5" >[libgit..</text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="450.8" y="725" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="453.77" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (40,404,040 samples, 0.26%)</title><rect x="937.5" y="581" width="3.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="940.51" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (272,727,270 samples, 1.76%)</title><rect x="478.7" y="821" width="24.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="481.71" y="831.5" >[..</text>
+</g>
+<g >
+<title>consume_skb (10,101,010 samples, 0.07%)</title><rect x="1386.4" y="373" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1389.39" y="383.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="986.2" y="709" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="989.19" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="1192.6" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1195.60" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.07%)</title><rect x="610.3" y="485" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="613.31" y="495.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="86.6" y="805" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="89.62" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (10,101,010 samples, 0.07%)</title><rect x="812.2" y="565" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="815.22" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1185.4" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1188.39" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_connect (20,202,020 samples, 0.13%)</title><rect x="1381.0" y="805" width="1.8" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1383.99" y="815.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1084.4" y="469" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1087.44" y="479.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="549.0" y="693" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="552.02" y="703.5" ></text>
+</g>
+<g >
+<title>try_to_free_buffers (10,101,010 samples, 0.07%)</title><rect x="424.6" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="427.63" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (50,505,050 samples, 0.33%)</title><rect x="286.7" y="597" width="4.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="289.72" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="252.5" y="741" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="255.47" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_htree_store_dirent (20,202,020 samples, 0.13%)</title><rect x="400.3" y="677" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="403.29" y="687.5" ></text>
+</g>
+<g >
+<title>read (20,202,020 samples, 0.13%)</title><rect x="721.2" y="693" width="1.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="724.18" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="445.4" y="773" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="448.36" y="783.5" ></text>
+</g>
+<g >
+<title>from_kgid_munged (10,101,010 samples, 0.07%)</title><rect x="323.7" y="693" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="326.68" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (131,313,130 samples, 0.85%)</title><rect x="1159.2" y="613" width="11.8" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="1162.25" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="1014.1" y="533" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1017.13" y="543.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="484.1" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="487.12" y="655.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.07%)</title><rect x="736.5" y="581" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="739.51" y="591.5" ></text>
+</g>
+<g >
+<title>anon_vma_interval_tree_insert (20,202,020 samples, 0.13%)</title><rect x="1266.5" y="693" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1269.51" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="621.1" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="624.13" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="726.6" y="821" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="729.59" y="831.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (30,303,030 samples, 0.20%)</title><rect x="1339.5" y="757" width="2.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1342.52" y="767.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.07%)</title><rect x="871.7" y="629" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="874.71" y="639.5" ></text>
+</g>
+<g >
+<title>__napi_poll (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="453" width="2.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1381.28" y="463.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.07%)</title><rect x="976.3" y="725" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="979.27" y="735.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="429.1" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="432.14" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1095.3" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1098.25" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (50,505,050 samples, 0.33%)</title><rect x="247.1" y="629" width="4.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="250.06" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="700.5" y="677" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="703.45" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="1063.7" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1066.70" y="655.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.07%)</title><rect x="814.9" y="421" width="0.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="817.92" y="431.5" ></text>
+</g>
+<g >
+<title>server_listen_thread (454,545,450 samples, 2.94%)</title><rect x="41.5" y="965" width="40.6" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="44.55" y="975.5" >ser..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="718.5" y="741" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="721.48" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="967.3" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="970.26" y="767.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (30,303,030 samples, 0.20%)</title><rect x="791.5" y="789" width="2.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="794.49" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="876.2" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="879.22" y="671.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1064.90" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (181,818,180 samples, 1.18%)</title><rect x="1024.0" y="757" width="16.3" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1027.04" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="320.1" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="323.07" y="799.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="945.6" y="469" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="948.62" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (252,525,250 samples, 1.63%)</title><rect x="824.8" y="821" width="22.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="827.84" y="831.5" >[..</text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.07%)</title><rect x="1197.1" y="613" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1200.11" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="756.3" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="759.34" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.07%)</title><rect x="933.0" y="581" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="936.00" y="591.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="92.0" y="805" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="95.02" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_read_inode_bitmap (10,101,010 samples, 0.07%)</title><rect x="385.9" y="645" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="388.87" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (50,505,050 samples, 0.33%)</title><rect x="278.6" y="629" width="4.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="281.61" y="639.5" ></text>
+</g>
+<g >
+<title>xas_start (10,101,010 samples, 0.07%)</title><rect x="170.4" y="725" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="173.44" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="141.6" y="805" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="144.60" y="815.5" ></text>
+</g>
+<g >
+<title>may_delete (10,101,010 samples, 0.07%)</title><rect x="771.7" y="645" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="774.66" y="655.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.07%)</title><rect x="492.2" y="597" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="495.23" y="607.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.07%)</title><rect x="358.8" y="613" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="361.83" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.07%)</title><rect x="56.0" y="597" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="58.97" y="607.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.07%)</title><rect x="451.7" y="645" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="454.67" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.07%)</title><rect x="1131.3" y="709" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1134.31" y="719.5" ></text>
+</g>
+<g >
+<title>libjson_send (151,515,150 samples, 0.98%)</title><rect x="1323.3" y="933" width="13.5" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1326.30" y="943.5" ></text>
+</g>
+<g >
+<title>__get_obj_cgroup_from_memcg (10,101,010 samples, 0.07%)</title><rect x="991.6" y="549" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="994.59" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (30,303,030 samples, 0.20%)</title><rect x="662.6" y="517" width="2.7" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="665.59" y="527.5" ></text>
+</g>
+<g >
+<title>vmbus_on_event (10,101,010 samples, 0.07%)</title><rect x="127.2" y="709" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="130.18" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1181.8" y="741" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1184.78" y="751.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.07%)</title><rect x="546.3" y="677" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="549.32" y="687.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="109.2" y="821" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="112.15" y="831.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.07%)</title><rect x="732.9" y="469" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="735.90" y="479.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="695.0" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="698.04" y="719.5" ></text>
+</g>
+<g >
+<title>mutex_unlock (10,101,010 samples, 0.07%)</title><rect x="212.8" y="661" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="215.81" y="671.5" ></text>
+</g>
+<g >
+<title>read (20,202,020 samples, 0.13%)</title><rect x="641.9" y="725" width="1.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="644.86" y="735.5" ></text>
+</g>
+<g >
+<title>iput (181,818,180 samples, 1.18%)</title><rect x="357.0" y="677" width="16.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="360.03" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (40,404,040 samples, 0.26%)</title><rect x="307.5" y="501" width="3.6" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="310.45" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="69.5" y="805" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="72.49" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.07%)</title><rect x="979.0" y="645" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="981.97" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (50,505,050 samples, 0.33%)</title><rect x="286.7" y="581" width="4.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="289.72" y="591.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1131.3" y="581" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1134.31" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="956.4" y="661" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="959.44" y="671.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.07%)</title><rect x="414.7" y="741" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="417.72" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1206.1" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1209.12" y="703.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.07%)</title><rect x="13.6" y="821" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="16.61" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1216.0" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1219.04" y="735.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.07%)</title><rect x="163.2" y="997" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="166.23" y="1007.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1227.8" y="741" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1230.75" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.07%)</title><rect x="663.5" y="437" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="666.49" y="447.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="613" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1233.46" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="580.6" y="581" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="583.57" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (121,212,120 samples, 0.78%)</title><rect x="240.8" y="677" width="10.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="243.75" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (50,505,050 samples, 0.33%)</title><rect x="352.5" y="677" width="4.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="355.52" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="613.0" y="773" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="616.02" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="369.6" y="533" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="372.65" y="543.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="51.5" y="677" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="54.46" y="687.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="517" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1221.74" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="583.3" y="597" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="586.27" y="607.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.07%)</title><rect x="193.0" y="661" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="195.98" y="671.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (10,101,010 samples, 0.07%)</title><rect x="53.3" y="693" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="56.27" y="703.5" ></text>
+</g>
+<g >
+<title>net_rx_action (50,505,050 samples, 0.33%)</title><rect x="58.7" y="373" width="4.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="61.67" y="383.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="165.9" y="869" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="168.94" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="975.4" y="613" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="978.37" y="623.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="565" width="2.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1381.28" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="195.7" y="533" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="198.68" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1185.4" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1188.39" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="751.8" y="533" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="754.83" y="543.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.20%)</title><rect x="485.9" y="757" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="488.92" y="767.5" ></text>
+</g>
+<g >
+<title>__wake_up (10,101,010 samples, 0.07%)</title><rect x="116.4" y="789" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="119.36" y="799.5" ></text>
+</g>
+<g >
+<title>do_linkat (30,303,030 samples, 0.20%)</title><rect x="715.8" y="693" width="2.7" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="718.77" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.07%)</title><rect x="1140.3" y="693" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1143.32" y="703.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_put_journal_head (10,101,010 samples, 0.07%)</title><rect x="149.7" y="773" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="152.71" y="783.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="181" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1013.52" y="191.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="821" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1233.46" y="831.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (30,303,030 samples, 0.20%)</title><rect x="990.7" y="725" width="2.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="993.69" y="735.5" ></text>
+</g>
+<g >
+<title>copy_page_to_iter (10,101,010 samples, 0.07%)</title><rect x="641.9" y="581" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="644.86" y="591.5" ></text>
+</g>
+<g >
+<title>readdir64 (30,303,030 samples, 0.20%)</title><rect x="681.5" y="821" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="684.52" y="831.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.07%)</title><rect x="576.1" y="581" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="579.06" y="591.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="110.1" y="869" width="1.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="113.05" y="879.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (60,606,060 samples, 0.39%)</title><rect x="912.3" y="629" width="5.4" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="915.27" y="639.5" ></text>
+</g>
+<g >
+<title>__sys_connect (151,515,150 samples, 0.98%)</title><rect x="1339.5" y="869" width="13.5" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1342.52" y="879.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="487.7" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="490.73" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="727.5" y="693" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="730.49" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.07%)</title><rect x="957.3" y="565" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="960.34" y="575.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1212.4" y="517" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1215.43" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="1233.2" y="725" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1236.16" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="851.9" y="757" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="854.88" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="435.4" y="645" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="438.45" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="338.1" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="341.10" y="623.5" ></text>
+</g>
+<g >
+<title>mb_find_extent (10,101,010 samples, 0.07%)</title><rect x="95.6" y="725" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="98.63" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="766.3" y="693" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="769.25" y="703.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.07%)</title><rect x="1204.3" y="677" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1207.32" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (50,505,050 samples, 0.33%)</title><rect x="945.6" y="485" width="4.5" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="948.62" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="398.5" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="401.49" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1197.1" y="661" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1200.11" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_read (20,202,020 samples, 0.13%)</title><rect x="1210.6" y="629" width="1.8" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1213.63" y="639.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="517" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1343.42" y="527.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.07%)</title><rect x="546.3" y="661" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="549.32" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="983.5" y="757" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="986.48" y="767.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.07%)</title><rect x="272.3" y="613" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="275.30" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.07%)</title><rect x="1246.7" y="709" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1249.68" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (40,404,040 samples, 0.26%)</title><rect x="394.0" y="709" width="3.6" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="396.98" y="719.5" ></text>
+</g>
+<g >
+<title>__inode_attach_wb (10,101,010 samples, 0.07%)</title><rect x="163.2" y="821" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="166.23" y="831.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="818.5" y="373" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="821.53" y="383.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (212,121,210 samples, 1.37%)</title><rect x="932.1" y="629" width="18.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="935.10" y="639.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="743.7" y="581" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="746.72" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="1042.1" y="741" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1045.07" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="681.5" y="773" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="684.52" y="783.5" ></text>
+</g>
+<g >
+<title>__do_softirq (20,202,020 samples, 0.13%)</title><rect x="16.3" y="533" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="19.31" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (60,606,060 samples, 0.39%)</title><rect x="504.0" y="773" width="5.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="506.95" y="783.5" ></text>
+</g>
+<g >
+<title>get_obj_cgroup_from_current (10,101,010 samples, 0.07%)</title><rect x="1305.3" y="693" width="0.9" height="15.0" fill="rgb(0,206,71)" rx="2" ry="2" />
+<text x="1308.27" y="703.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.13%)</title><rect x="890.6" y="805" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="893.64" y="815.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (30,303,030 samples, 0.20%)</title><rect x="15.4" y="725" width="2.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="18.41" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="1197.1" y="629" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1200.11" y="639.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.07%)</title><rect x="109.2" y="725" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="112.15" y="735.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.07%)</title><rect x="489.5" y="677" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="492.53" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (111,111,110 samples, 0.72%)</title><rect x="147.0" y="821" width="9.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="150.01" y="831.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.07%)</title><rect x="1146.6" y="613" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1149.63" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1197.1" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1200.11" y="735.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.07%)</title><rect x="886.1" y="645" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="889.13" y="655.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.07%)</title><rect x="75.8" y="853" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="78.80" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (10,101,010 samples, 0.07%)</title><rect x="1034.0" y="597" width="0.9" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="1036.96" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.07%)</title><rect x="707.7" y="565" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="710.66" y="575.5" ></text>
+</g>
+<g >
+<title>shrink_dentry_list (10,101,010 samples, 0.07%)</title><rect x="229.9" y="597" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="232.93" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="386.8" y="437" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="389.77" y="447.5" ></text>
+</g>
+<g >
+<title>apparmor_file_permission (10,101,010 samples, 0.07%)</title><rect x="623.8" y="693" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="626.83" y="703.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="818.5" y="357" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="821.53" y="367.5" ></text>
+</g>
+<g >
+<title>tcp_connect (70,707,070 samples, 0.46%)</title><rect x="1342.2" y="805" width="6.3" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1345.23" y="815.5" ></text>
+</g>
+<g >
+<title>__libc_start_main (13,616,161,480 samples, 88.05%)</title><rect x="175.0" y="1029" width="1215.0" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="177.95" y="1039.5" >__libc_start_main</text>
+</g>
+<g >
+<title>ext4_remove_blocks (50,505,050 samples, 0.33%)</title><rect x="306.6" y="533" width="4.5" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="309.55" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="826.6" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="829.64" y="735.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="373" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1368.66" y="383.5" ></text>
+</g>
+<g >
+<title>alloc_inode (20,202,020 samples, 0.13%)</title><rect x="938.4" y="549" width="1.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="941.41" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (70,707,070 samples, 0.46%)</title><rect x="1096.2" y="677" width="6.3" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1099.15" y="687.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.07%)</title><rect x="293.9" y="533" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="296.93" y="543.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="985.3" y="661" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="988.28" y="671.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.07%)</title><rect x="769.0" y="613" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="771.95" y="623.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="632.8" y="597" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="635.85" y="607.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="549" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1368.66" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_setattr (10,101,010 samples, 0.07%)</title><rect x="985.3" y="677" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="988.28" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_rename (80,808,080 samples, 0.52%)</title><rect x="467.0" y="725" width="7.2" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="470.00" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_write (30,303,030 samples, 0.20%)</title><rect x="79.4" y="773" width="2.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="82.41" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (20,202,020 samples, 0.13%)</title><rect x="983.5" y="629" width="1.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="986.48" y="639.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.07%)</title><rect x="1084.4" y="357" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1087.44" y="367.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (60,606,060 samples, 0.39%)</title><rect x="643.7" y="677" width="5.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="646.66" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (191,919,190 samples, 1.24%)</title><rect x="214.6" y="693" width="17.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="217.61" y="703.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct (10,101,010 samples, 0.07%)</title><rect x="1122.3" y="485" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="1125.29" y="495.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.07%)</title><rect x="679.7" y="741" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="682.72" y="751.5" ></text>
+</g>
+<g >
+<title>remove (60,606,060 samples, 0.39%)</title><rect x="194.8" y="693" width="5.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="197.78" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (20,202,020 samples, 0.13%)</title><rect x="1364.8" y="629" width="1.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1367.76" y="639.5" ></text>
+</g>
+<g >
+<title>__rq_qos_throttle (10,101,010 samples, 0.07%)</title><rect x="1122.3" y="421" width="0.9" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="1125.29" y="431.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.07%)</title><rect x="842.0" y="373" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="844.97" y="383.5" ></text>
+</g>
+<g >
+<title>open64 (181,818,180 samples, 1.18%)</title><rect x="1024.0" y="805" width="16.3" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1027.04" y="815.5" ></text>
+</g>
+<g >
+<title>git_config_set_int64 (292,929,290 samples, 1.89%)</title><rect x="1064.6" y="821" width="26.1" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1067.60" y="831.5" >g..</text>
+</g>
+<g >
+<title>open_last_lookups (20,202,020 samples, 0.13%)</title><rect x="951.0" y="581" width="1.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="954.03" y="591.5" ></text>
+</g>
+<g >
+<title>__wait_on_bit (10,101,010 samples, 0.07%)</title><rect x="473.3" y="597" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="476.31" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="970.0" y="613" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="972.96" y="623.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1252.1" y="645" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1255.09" y="655.5" ></text>
+</g>
+<g >
+<title>dentry_kill (80,808,080 samples, 0.52%)</title><rect x="810.4" y="677" width="7.2" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="813.42" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="238.0" y="709" width="2.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="241.05" y="719.5" ></text>
+</g>
+<g >
+<title>ip_rcv (10,101,010 samples, 0.07%)</title><rect x="1350.3" y="485" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1353.34" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (20,202,020 samples, 0.13%)</title><rect x="1004.2" y="517" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1007.21" y="527.5" ></text>
+</g>
+<g >
+<title>security_inode_free (20,202,020 samples, 0.13%)</title><rect x="1110.6" y="549" width="1.8" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="1113.57" y="559.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (50,505,050 samples, 0.33%)</title><rect x="1376.5" y="741" width="4.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1379.48" y="751.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.07%)</title><rect x="729.3" y="565" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="732.29" y="575.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (60,606,060 samples, 0.39%)</title><rect x="1384.6" y="757" width="5.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1387.59" y="767.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.07%)</title><rect x="806.8" y="629" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="809.81" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (111,111,110 samples, 0.72%)</title><rect x="1209.7" y="853" width="9.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1212.73" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.20%)</title><rect x="795.1" y="773" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="798.09" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.07%)</title><rect x="1069.1" y="629" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1072.11" y="639.5" ></text>
+</g>
+<g >
+<title>file_modified_flags (10,101,010 samples, 0.07%)</title><rect x="761.7" y="549" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="764.74" y="559.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.07%)</title><rect x="1353.0" y="741" width="0.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1356.04" y="751.5" ></text>
+</g>
+<g >
+<title>__do_softirq (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="485" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1381.28" y="495.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="645" width="3.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1374.97" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="688.7" y="661" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="691.73" y="671.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (20,202,020 samples, 0.13%)</title><rect x="912.3" y="437" width="1.8" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="915.27" y="447.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="661.7" y="533" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="664.69" y="543.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.07%)</title><rect x="202.9" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="205.89" y="623.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="122.7" y="725" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="125.67" y="735.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.07%)</title><rect x="500.3" y="661" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="503.35" y="671.5" ></text>
+</g>
+<g >
+<title>fib_table_lookup (10,101,010 samples, 0.07%)</title><rect x="1348.5" y="757" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1351.54" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,808,080 samples, 0.52%)</title><rect x="322.8" y="757" width="7.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="325.78" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1041.2" y="789" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1044.17" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (60,606,060 samples, 0.39%)</title><rect x="1112.4" y="581" width="5.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1115.38" y="591.5" ></text>
+</g>
+<g >
+<title>down_read (10,101,010 samples, 0.07%)</title><rect x="929.4" y="533" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="932.40" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="257.9" y="677" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="260.88" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1233.46" y="815.5" ></text>
+</g>
+<g >
+<title>copy_page_from_iter (10,101,010 samples, 0.07%)</title><rect x="477.8" y="725" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="480.81" y="735.5" ></text>
+</g>
+<g >
+<title>unlink (70,707,070 samples, 0.46%)</title><rect x="205.6" y="693" width="6.3" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="208.60" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="403.9" y="629" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="406.90" y="639.5" ></text>
+</g>
+<g >
+<title>base64_encode (10,101,010 samples, 0.07%)</title><rect x="1355.7" y="933" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1358.75" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.07%)</title><rect x="1152.9" y="677" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1155.94" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1102.5" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1105.46" y="719.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (10,101,010 samples, 0.07%)</title><rect x="817.6" y="533" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="820.63" y="543.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="386.8" y="549" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="389.77" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="497.6" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="500.64" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="710.4" y="613" width="1.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="713.37" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="1142.1" y="629" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1145.12" y="639.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.07%)</title><rect x="754.5" y="613" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="757.53" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="851.9" y="789" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="854.88" y="799.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.20%)</title><rect x="990.7" y="693" width="2.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="993.69" y="703.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (10,101,010 samples, 0.07%)</title><rect x="711.3" y="517" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="714.27" y="527.5" ></text>
+</g>
+<g >
+<title>libjson_to_string_internal (30,303,030 samples, 0.20%)</title><rect x="1323.3" y="901" width="2.7" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="1326.30" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="412.0" y="613" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="415.01" y="623.5" ></text>
+</g>
+<g >
+<title>net_connect (171,717,170 samples, 1.11%)</title><rect x="1337.7" y="949" width="15.3" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1340.72" y="959.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.07%)</title><rect x="817.6" y="405" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="820.63" y="415.5" ></text>
+</g>
+<g >
+<title>journal_end_buffer_io_sync (10,101,010 samples, 0.07%)</title><rect x="16.3" y="373" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="19.31" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.07%)</title><rect x="437.3" y="565" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="440.25" y="575.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.20%)</title><rect x="691.4" y="565" width="2.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="694.44" y="575.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (161,616,160 samples, 1.05%)</title><rect x="383.2" y="725" width="14.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="386.17" y="735.5" ></text>
+</g>
+<g >
+<title>filemap_flush (30,303,030 samples, 0.20%)</title><rect x="817.6" y="629" width="2.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="820.63" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="494.0" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="497.04" y="719.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_send (50,505,050 samples, 0.33%)</title><rect x="1367.5" y="949" width="4.5" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1370.47" y="959.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="588.7" y="501" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="591.68" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_write (50,505,050 samples, 0.33%)</title><rect x="704.1" y="629" width="4.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="707.06" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (50,505,050 samples, 0.33%)</title><rect x="291.2" y="597" width="4.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="294.23" y="607.5" ></text>
+</g>
+<g >
+<title>__check_heap_object (10,101,010 samples, 0.07%)</title><rect x="397.6" y="645" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="400.59" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_setent (20,202,020 samples, 0.13%)</title><rect x="1014.1" y="613" width="1.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="1017.13" y="623.5" ></text>
+</g>
+<g >
+<title>may_linkat (20,202,020 samples, 0.13%)</title><rect x="605.8" y="693" width="1.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="608.81" y="703.5" ></text>
+</g>
+<g >
+<title>alloc_buffer_head (10,101,010 samples, 0.07%)</title><rect x="803.2" y="517" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="806.21" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1316.1" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1319.09" y="799.5" ></text>
+</g>
+<g >
+<title>net_rx_action (10,101,010 samples, 0.07%)</title><rect x="1371.1" y="485" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1374.07" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.07%)</title><rect x="454.4" y="661" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="457.38" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_read (20,202,020 samples, 0.13%)</title><rect x="641.9" y="645" width="1.8" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="644.86" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="1076.3" y="501" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1079.32" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (272,727,270 samples, 1.76%)</title><rect x="690.5" y="757" width="24.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="693.54" y="767.5" >[..</text>
+</g>
+<g >
+<title>ext4_find_extent (10,101,010 samples, 0.07%)</title><rect x="1158.3" y="613" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="1161.35" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="244.4" y="565" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="247.36" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="962.7" y="725" width="1.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="965.75" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="10.9" y="885" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="13.90" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="830.2" y="725" width="1.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="833.25" y="735.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="610.3" y="549" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="613.31" y="559.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="309" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1368.66" y="319.5" ></text>
+</g>
+<g >
+<title>iterate_dir (60,606,060 samples, 0.39%)</title><rect x="399.4" y="757" width="5.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="402.39" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (80,808,080 samples, 0.52%)</title><rect x="366.0" y="613" width="7.3" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="369.04" y="623.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="863.6" y="581" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="866.60" y="591.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.07%)</title><rect x="656.3" y="693" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="659.28" y="703.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.07%)</title><rect x="779.8" y="789" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="782.77" y="799.5" ></text>
+</g>
+<g >
+<title>set_root (10,101,010 samples, 0.07%)</title><rect x="1187.2" y="565" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1190.19" y="575.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.07%)</title><rect x="1098.0" y="485" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1100.96" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_link (40,404,040 samples, 0.26%)</title><rect x="607.6" y="677" width="3.6" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="610.61" y="687.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.07%)</title><rect x="1084.4" y="293" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1087.44" y="303.5" ></text>
+</g>
+<g >
+<title>iput (80,808,080 samples, 0.52%)</title><rect x="810.4" y="629" width="7.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="813.42" y="639.5" ></text>
+</g>
+<g >
+<title>evict (60,606,060 samples, 0.39%)</title><rect x="833.0" y="613" width="5.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="835.95" y="623.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.07%)</title><rect x="777.1" y="741" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="780.07" y="751.5" ></text>
+</g>
+<g >
+<title>alloc_file_pseudo (10,101,010 samples, 0.07%)</title><rect x="73.1" y="773" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="76.10" y="783.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1339.5" y="661" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1342.52" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.20%)</title><rect x="96.5" y="997" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="99.53" y="1007.5" ></text>
+</g>
+<g >
+<title>ip_local_out (90,909,090 samples, 0.59%)</title><rect x="1327.8" y="645" width="8.1" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1330.81" y="655.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.07%)</title><rect x="951.0" y="501" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="954.03" y="511.5" ></text>
+</g>
+<g >
+<title>proc_capture (636,363,630 samples, 4.11%)</title><rect x="1256.6" y="901" width="56.8" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="1259.60" y="911.5" >proc_c..</text>
+</g>
+<g >
+<title>apparmor_d_instantiate (10,101,010 samples, 0.07%)</title><rect x="146.1" y="789" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="149.11" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="83.9" y="965" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="86.91" y="975.5" ></text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (10,101,010 samples, 0.07%)</title><rect x="609.4" y="565" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="612.41" y="575.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="896.0" y="661" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="899.05" y="671.5" ></text>
+</g>
+<g >
+<title>inet6_release (121,212,120 samples, 0.78%)</title><rect x="54.2" y="693" width="10.8" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="57.17" y="703.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.07%)</title><rect x="1193.5" y="677" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1196.50" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="641.9" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="644.86" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (20,202,020 samples, 0.13%)</title><rect x="362.4" y="629" width="1.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="365.44" y="639.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.07%)</title><rect x="320.1" y="693" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="323.07" y="703.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (10,101,010 samples, 0.07%)</title><rect x="441.8" y="885" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="444.76" y="895.5" ></text>
+</g>
+<g >
+<title>copy_pte_range (70,707,070 samples, 0.46%)</title><rect x="1275.5" y="693" width="6.3" height="15.0" fill="rgb(0,192,11)" rx="2" ry="2" />
+<text x="1278.53" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="552.6" y="789" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="555.63" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (101,010,100 samples, 0.65%)</title><rect x="838.4" y="549" width="9.0" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="841.36" y="559.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="953.7" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="956.74" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (50,505,050 samples, 0.33%)</title><rect x="1030.4" y="645" width="4.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1033.35" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="502.1" y="741" width="1.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="505.15" y="751.5" ></text>
+</g>
+<g >
+<title>__next_zones_zonelist (10,101,010 samples, 0.07%)</title><rect x="906.0" y="517" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="908.96" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (50,505,050 samples, 0.33%)</title><rect x="247.1" y="645" width="4.5" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="250.06" y="655.5" ></text>
+</g>
+<g >
+<title>_atomic_dec_and_lock (10,101,010 samples, 0.07%)</title><rect x="220.0" y="597" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="223.02" y="607.5" ></text>
+</g>
+<g >
+<title>kfree (10,101,010 samples, 0.07%)</title><rect x="198.4" y="341" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="201.39" y="351.5" ></text>
+</g>
+<g >
+<title>xas_start (10,101,010 samples, 0.07%)</title><rect x="132.6" y="645" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="135.59" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="370.5" y="517" width="1.0" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="373.55" y="527.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.07%)</title><rect x="858.2" y="581" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="861.19" y="591.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.07%)</title><rect x="885.2" y="549" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="888.23" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="723.0" y="709" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="725.98" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (50,505,050 samples, 0.33%)</title><rect x="107.3" y="885" width="4.6" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="110.35" y="895.5" ></text>
+</g>
+<g >
+<title>pthread_getspecific (10,101,010 samples, 0.07%)</title><rect x="822.1" y="773" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="825.14" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="924.9" y="629" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="927.89" y="639.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="339.9" y="677" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="342.90" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (20,202,020 samples, 0.13%)</title><rect x="681.5" y="709" width="1.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="684.52" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="299.3" y="549" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="302.34" y="559.5" ></text>
+</g>
+<g >
+<title>git_remote_update_tips (888,888,880 samples, 5.75%)</title><rect x="897.9" y="853" width="79.3" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="900.85" y="863.5" >git_remot..</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (1,373,737,360 samples, 8.88%)</title><rect x="561.6" y="837" width="122.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="564.64" y="847.5" >[libgit2.so.1.1..</text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="863.6" y="565" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="866.60" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_find_entry (10,101,010 samples, 0.07%)</title><rect x="1127.7" y="629" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1130.70" y="639.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.07%)</title><rect x="211.9" y="597" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="214.91" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_find_extent (10,101,010 samples, 0.07%)</title><rect x="1021.3" y="629" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="1024.34" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="545.4" y="837" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="548.41" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="828.4" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="831.45" y="735.5" ></text>
+</g>
+<g >
+<title>__close (141,414,140 samples, 0.91%)</title><rect x="52.4" y="869" width="12.6" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="55.36" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (40,404,040 samples, 0.26%)</title><rect x="425.5" y="725" width="3.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="428.53" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.07%)</title><rect x="388.6" y="533" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="391.58" y="543.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.13%)</title><rect x="1199.8" y="773" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1202.81" y="783.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.07%)</title><rect x="253.4" y="645" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="256.37" y="655.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.07%)</title><rect x="1193.5" y="693" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1196.50" y="703.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="951.0" y="629" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="954.03" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_superblock_csum_set (10,101,010 samples, 0.07%)</title><rect x="428.2" y="677" width="0.9" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" />
+<text x="431.24" y="687.5" ></text>
+</g>
+<g >
+<title>main (13,616,161,480 samples, 88.05%)</title><rect x="175.0" y="997" width="1215.0" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="177.95" y="1007.5" >main</text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.07%)</title><rect x="743.7" y="565" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="746.72" y="575.5" ></text>
+</g>
+<g >
+<title>scsi_target_queue_ready (10,101,010 samples, 0.07%)</title><rect x="913.2" y="373" width="0.9" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="916.17" y="383.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.07%)</title><rect x="807.7" y="469" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="810.71" y="479.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1370.2" y="677" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1373.17" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="1016.8" y="677" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1019.83" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.07%)</title><rect x="852.8" y="597" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="855.78" y="607.5" ></text>
+</g>
+<g >
+<title>inet_recvmsg (20,202,020 samples, 0.13%)</title><rect x="1364.8" y="709" width="1.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1367.76" y="719.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (10,101,010 samples, 0.07%)</title><rect x="1050.2" y="629" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1053.18" y="639.5" ></text>
+</g>
+<g >
+<title>git_refdb_backend_fs (30,303,030 samples, 0.20%)</title><rect x="733.8" y="725" width="2.7" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="736.80" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="83.9" y="981" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="86.91" y="991.5" ></text>
+</g>
+<g >
+<title>folio_alloc_buffers (10,101,010 samples, 0.07%)</title><rect x="1051.1" y="597" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="1054.08" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (171,717,170 samples, 1.11%)</title><rect x="383.2" y="773" width="15.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="386.17" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="911.4" y="581" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="914.37" y="591.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (20,202,020 samples, 0.13%)</title><rect x="1359.4" y="821" width="1.8" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1362.35" y="831.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="708.6" y="613" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="711.56" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="216.4" y="581" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="219.41" y="591.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.07%)</title><rect x="1018.6" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1021.63" y="687.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (20,202,020 samples, 0.13%)</title><rect x="995.2" y="645" width="1.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="998.20" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="549.0" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="552.02" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.85%)</title><rect x="240.8" y="709" width="11.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="243.75" y="719.5" ></text>
+</g>
+<g >
+<title>is_bad_inode (10,101,010 samples, 0.07%)</title><rect x="820.3" y="645" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="823.33" y="655.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="214.6" y="597" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="217.61" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="732.9" y="533" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="735.90" y="543.5" ></text>
+</g>
+<g >
+<title>__sys_accept4 (20,202,020 samples, 0.13%)</title><rect x="72.2" y="821" width="1.8" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="75.19" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="802.3" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="805.31" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (30,303,030 samples, 0.20%)</title><rect x="1135.8" y="677" width="2.7" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1138.81" y="687.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.07%)</title><rect x="754.5" y="629" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="757.53" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="1234.1" y="725" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1237.06" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="902.4" y="661" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="905.36" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="934.8" y="533" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="937.81" y="543.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (10,101,010 samples, 0.07%)</title><rect x="229.9" y="613" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="232.93" y="623.5" ></text>
+</g>
+<g >
+<title>dquot_initialize (10,101,010 samples, 0.07%)</title><rect x="718.5" y="661" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="721.48" y="671.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct_nocheck (30,303,030 samples, 0.20%)</title><rect x="839.3" y="485" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="842.26" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="248.0" y="517" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="250.96" y="527.5" ></text>
+</g>
+<g >
+<title>__memset (20,202,020 samples, 0.13%)</title><rect x="37.0" y="917" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="40.04" y="927.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (30,303,030 samples, 0.20%)</title><rect x="1119.6" y="421" width="2.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1122.59" y="431.5" ></text>
+</g>
+<g >
+<title>cmd_dispatcher_handle_event (101,010,100 samples, 0.65%)</title><rect x="1358.5" y="933" width="9.0" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1361.45" y="943.5" ></text>
+</g>
+<g >
+<title>libjson_to_string (30,303,030 samples, 0.20%)</title><rect x="1323.3" y="917" width="2.7" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1326.30" y="927.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="1196.2" y="773" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1199.21" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.07%)</title><rect x="1095.3" y="677" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1098.25" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="341.7" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="344.70" y="783.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="523.8" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="526.78" y="751.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="794.2" y="581" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="797.19" y="591.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="1176.4" y="741" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1179.37" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="553.5" y="773" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="556.53" y="783.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="206.5" y="533" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="209.50" y="543.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (30,303,030 samples, 0.20%)</title><rect x="1197.1" y="821" width="2.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="1200.11" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (858,585,850 samples, 5.55%)</title><rect x="561.6" y="821" width="76.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="564.64" y="831.5" >[libgit2..</text>
+</g>
+<g >
+<title>__fdget_pos (20,202,020 samples, 0.13%)</title><rect x="534.6" y="629" width="1.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="537.60" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="873.5" y="757" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="876.51" y="767.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.07%)</title><rect x="428.2" y="645" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="431.24" y="655.5" ></text>
+</g>
+<g >
+<title>schedule (20,202,020 samples, 0.13%)</title><rect x="23.5" y="821" width="1.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="26.52" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (20,202,020 samples, 0.13%)</title><rect x="550.8" y="677" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="553.82" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="537.3" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="540.30" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (20,202,020 samples, 0.13%)</title><rect x="338.1" y="629" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="341.10" y="639.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="1012.3" y="309" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1015.33" y="319.5" ></text>
+</g>
+<g >
+<title>git_refdb_backend_fs (40,404,040 samples, 0.26%)</title><rect x="865.4" y="741" width="3.6" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="868.40" y="751.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="1262.0" y="709" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1265.01" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="861.8" y="549" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="864.80" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.07%)</title><rect x="625.6" y="597" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="628.64" y="607.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.07%)</title><rect x="320.1" y="677" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="323.07" y="687.5" ></text>
+</g>
+<g >
+<title>_start (13,616,161,480 samples, 88.05%)</title><rect x="175.0" y="1045" width="1215.0" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="177.95" y="1055.5" >_start</text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="1206.1" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1209.12" y="719.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="610.3" y="597" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="613.31" y="607.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="902.4" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="905.36" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_file_getattr (10,101,010 samples, 0.07%)</title><rect x="887.0" y="565" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="890.03" y="575.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (111,111,110 samples, 0.72%)</title><rect x="165.0" y="933" width="10.0" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="168.04" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="813.1" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="816.12" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (50,505,050 samples, 0.33%)</title><rect x="704.1" y="597" width="4.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="707.06" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="1019.5" y="517" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1022.54" y="527.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1104.3" y="693" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1107.27" y="703.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.07%)</title><rect x="1316.1" y="821" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1319.09" y="831.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (10,101,010 samples, 0.07%)</title><rect x="1080.8" y="533" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1083.83" y="543.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.07%)</title><rect x="444.5" y="661" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="447.46" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="340.8" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="343.80" y="799.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.07%)</title><rect x="759.0" y="485" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="762.04" y="495.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (10,101,010 samples, 0.07%)</title><rect x="643.7" y="549" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="646.66" y="559.5" ></text>
+</g>
+<g >
+<title>git_config_open_default (121,212,120 samples, 0.78%)</title><rect x="1178.2" y="837" width="10.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1181.18" y="847.5" ></text>
+</g>
+<g >
+<title>[libz.so.1.2.11] (10,101,010 samples, 0.07%)</title><rect x="532.8" y="693" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="535.80" y="703.5" ></text>
+</g>
+<g >
+<title>getdents64 (40,404,040 samples, 0.26%)</title><rect x="892.4" y="741" width="3.6" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="895.44" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.07%)</title><rect x="431.8" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="434.84" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (90,909,090 samples, 0.59%)</title><rect x="630.1" y="725" width="8.2" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="633.14" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (20,202,020 samples, 0.13%)</title><rect x="728.4" y="661" width="1.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="731.39" y="671.5" ></text>
+</g>
+<g >
+<title>do_accept (20,202,020 samples, 0.13%)</title><rect x="72.2" y="805" width="1.8" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="75.19" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.07%)</title><rect x="1314.3" y="725" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1317.28" y="735.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.07%)</title><rect x="93.8" y="709" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="96.83" y="719.5" ></text>
+</g>
+<g >
+<title>vmbus_on_event (10,101,010 samples, 0.07%)</title><rect x="1198.0" y="597" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1201.01" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="555.3" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="558.33" y="735.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="510.3" y="565" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="513.26" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="523.8" y="661" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="526.78" y="671.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (10,101,010 samples, 0.07%)</title><rect x="1373.8" y="325" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1376.78" y="335.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (20,202,020 samples, 0.13%)</title><rect x="1152.9" y="709" width="1.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1155.94" y="719.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.07%)</title><rect x="583.3" y="549" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="586.27" y="559.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="818.5" y="181" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="821.53" y="191.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.07%)</title><rect x="1222.3" y="629" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1225.34" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.07%)</title><rect x="833.9" y="581" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="836.85" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (30,303,030 samples, 0.20%)</title><rect x="813.1" y="581" width="2.7" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="816.12" y="591.5" ></text>
+</g>
+<g >
+<title>path_parentat (20,202,020 samples, 0.13%)</title><rect x="185.8" y="565" width="1.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="188.77" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_bread (151,515,150 samples, 0.98%)</title><rect x="1157.4" y="677" width="13.6" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1160.45" y="687.5" ></text>
+</g>
+<g >
+<title>tasklet_action (10,101,010 samples, 0.07%)</title><rect x="1320.6" y="629" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1323.59" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="860.0" y="613" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="862.99" y="623.5" ></text>
+</g>
+<g >
+<title>log_entry_end (10,101,010 samples, 0.07%)</title><rect x="558.0" y="901" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="561.03" y="911.5" ></text>
+</g>
+<g >
+<title>mm_init (10,101,010 samples, 0.07%)</title><rect x="1305.3" y="741" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1308.27" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="732.0" y="645" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="735.00" y="655.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="765.3" y="485" width="1.0" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="768.35" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="886.1" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="889.13" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.07%)</title><rect x="700.5" y="421" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="703.45" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.07%)</title><rect x="765.3" y="613" width="1.0" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="768.35" y="623.5" ></text>
+</g>
+<g >
+<title>__wake_up (10,101,010 samples, 0.07%)</title><rect x="358.8" y="581" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="361.83" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_bio_write_folio (20,202,020 samples, 0.13%)</title><rect x="1125.9" y="469" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1128.90" y="479.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="1055.6" y="693" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1058.59" y="703.5" ></text>
+</g>
+<g >
+<title>unlink_cb (90,909,090 samples, 0.59%)</title><rect x="203.8" y="725" width="8.1" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="206.79" y="735.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.07%)</title><rect x="88.4" y="853" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="91.42" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="242.6" y="517" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="245.55" y="527.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.07%)</title><rect x="341.7" y="677" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="344.70" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="595.9" y="709" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="598.89" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1246.7" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1249.68" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,808,080 samples, 0.52%)</title><rect x="342.6" y="757" width="7.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="345.61" y="767.5" ></text>
+</g>
+<g >
+<title>events_to_string (20,202,020 samples, 0.13%)</title><rect x="65.0" y="933" width="1.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="67.98" y="943.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="778.0" y="725" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="780.97" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.07%)</title><rect x="228.1" y="453" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="231.13" y="463.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.07%)</title><rect x="806.8" y="613" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="809.81" y="623.5" ></text>
+</g>
+<g >
+<title>access (50,505,050 samples, 0.33%)</title><rect x="1240.4" y="773" width="4.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1243.37" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.07%)</title><rect x="901.5" y="613" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="904.46" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1226.9" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1229.85" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="645.5" y="533" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="648.47" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="780.7" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="783.67" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="790.6" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="793.59" y="767.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.07%)</title><rect x="235.3" y="661" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="238.34" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (10,101,010 samples, 0.07%)</title><rect x="1251.2" y="757" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1254.19" y="767.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.07%)</title><rect x="810.4" y="549" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="813.42" y="559.5" ></text>
+</g>
+<g >
+<title>ip_output (70,707,070 samples, 0.46%)</title><rect x="58.7" y="517" width="6.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="61.67" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="333.6" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="336.59" y="623.5" ></text>
+</g>
+<g >
+<title>malloc (20,202,020 samples, 0.13%)</title><rect x="859.1" y="661" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="862.09" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="783.4" y="661" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="786.38" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="989.8" y="773" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="992.79" y="783.5" ></text>
+</g>
+<g >
+<title>calloc@plt (10,101,010 samples, 0.07%)</title><rect x="709.5" y="677" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="712.46" y="687.5" ></text>
+</g>
+<g >
+<title>folio_batch_move_lru (10,101,010 samples, 0.07%)</title><rect x="819.4" y="485" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="822.43" y="495.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="550.8" y="549" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="553.82" y="559.5" ></text>
+</g>
+<g >
+<title>dd_insert_request.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1009.6" y="405" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1012.62" y="415.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="1023.1" y="693" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1026.14" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="894.2" y="533" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="897.25" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_getattr (10,101,010 samples, 0.07%)</title><rect x="1227.8" y="661" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1230.75" y="671.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="92.0" y="837" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="95.02" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="613" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1084.73" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="411.1" y="645" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="414.11" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.52%)</title><rect x="509.4" y="805" width="7.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="512.36" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="1065.5" y="725" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1068.51" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="641.9" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="644.86" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="450.8" y="677" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="453.77" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="861.8" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="864.80" y="671.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.07%)</title><rect x="502.1" y="533" width="1.0" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="505.15" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (20,202,020 samples, 0.13%)</title><rect x="1011.4" y="437" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1014.42" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (20,202,020 samples, 0.13%)</title><rect x="1043.9" y="693" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1046.87" y="703.5" ></text>
+</g>
+<g >
+<title>__strftime_l (10,101,010 samples, 0.07%)</title><rect x="21.7" y="949" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="24.72" y="959.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.07%)</title><rect x="1040.3" y="693" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1043.27" y="703.5" ></text>
+</g>
+<g >
+<title>git_reference_normalize_name (10,101,010 samples, 0.07%)</title><rect x="967.3" y="773" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="970.26" y="783.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.07%)</title><rect x="492.2" y="565" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="495.23" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (60,606,060 samples, 0.39%)</title><rect x="128.1" y="821" width="5.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="131.08" y="831.5" ></text>
+</g>
+<g >
+<title>do_softirq (30,303,030 samples, 0.20%)</title><rect x="1372.9" y="469" width="2.7" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1375.87" y="479.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.07%)</title><rect x="1120.5" y="373" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="1123.49" y="383.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.07%)</title><rect x="819.4" y="373" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="822.43" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.07%)</title><rect x="700.5" y="341" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="703.45" y="351.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (121,212,120 samples, 0.78%)</title><rect x="810.4" y="725" width="10.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="813.42" y="735.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="871.7" y="645" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="874.71" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (80,808,080 samples, 0.52%)</title><rect x="810.4" y="597" width="7.2" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="813.42" y="607.5" ></text>
+</g>
+<g >
+<title>task_work_run (20,202,020 samples, 0.13%)</title><rect x="50.6" y="789" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="53.56" y="799.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1084.4" y="485" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1087.44" y="495.5" ></text>
+</g>
+<g >
+<title>__send (121,212,120 samples, 0.78%)</title><rect x="1326.0" y="869" width="10.8" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1329.00" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="1132.2" y="693" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1135.21" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="1007.8" y="597" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1010.82" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="468.8" y="453" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="471.80" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.07%)</title><rect x="1036.7" y="565" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1039.66" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_v4_connect (50,505,050 samples, 0.33%)</title><rect x="1348.5" y="805" width="4.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1351.54" y="815.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.07%)</title><rect x="1240.4" y="613" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="1243.37" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="1015.9" y="677" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1018.93" y="687.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.07%)</title><rect x="684.2" y="837" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="687.23" y="847.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="16.3" y="581" width="1.8" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="19.31" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1197.1" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1200.11" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.07%)</title><rect x="784.3" y="597" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="787.28" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_dx_find_entry (10,101,010 samples, 0.07%)</title><rect x="1248.5" y="709" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1251.48" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="444.5" y="789" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="447.46" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.07%)</title><rect x="1039.4" y="613" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="1042.37" y="623.5" ></text>
+</g>
+<g >
+<title>inet6_sendmsg (70,707,070 samples, 0.46%)</title><rect x="14.5" y="821" width="6.3" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="17.51" y="831.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.13%)</title><rect x="266.0" y="533" width="1.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="268.99" y="543.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.07%)</title><rect x="1375.6" y="805" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="1378.58" y="815.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="1337.7" y="773" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1340.72" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="975.4" y="565" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="978.37" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (474,747,470 samples, 3.07%)</title><rect x="1131.3" y="741" width="42.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1134.31" y="751.5" >vfs..</text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="284.0" y="597" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="287.02" y="607.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.07%)</title><rect x="262.4" y="485" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="265.38" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="712.2" y="709" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="715.17" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_send_fin (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="693" width="3.6" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1374.97" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_append (40,404,040 samples, 0.26%)</title><rect x="92.9" y="853" width="3.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="95.93" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (50,505,050 samples, 0.33%)</title><rect x="207.4" y="613" width="4.5" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="210.40" y="623.5" ></text>
+</g>
+<g >
+<title>file_free_rcu (10,101,010 samples, 0.07%)</title><rect x="406.6" y="501" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="409.60" y="511.5" ></text>
+</g>
+<g >
+<title>inode_permission (20,202,020 samples, 0.13%)</title><rect x="692.3" y="533" width="1.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="695.34" y="543.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.07%)</title><rect x="1216.9" y="613" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1219.94" y="623.5" ></text>
+</g>
+<g >
+<title>mutex_spin_on_owner (10,101,010 samples, 0.07%)</title><rect x="191.2" y="469" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="194.18" y="479.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.07%)</title><rect x="1053.8" y="725" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1056.79" y="735.5" ></text>
+</g>
+<g >
+<title>do_filp_open (40,404,040 samples, 0.26%)</title><rect x="979.0" y="693" width="3.6" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="981.97" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (50,505,050 samples, 0.33%)</title><rect x="434.5" y="709" width="4.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="437.55" y="719.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="363.3" y="581" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="366.34" y="591.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (131,313,130 samples, 0.85%)</title><rect x="53.3" y="821" width="11.7" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="56.27" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (20,202,020 samples, 0.13%)</title><rect x="980.8" y="597" width="1.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="983.78" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="406.6" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="409.60" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.72%)</title><rect x="86.6" y="965" width="9.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="89.62" y="975.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="759.9" y="629" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="762.94" y="639.5" ></text>
+</g>
+<g >
+<title>git_refdb_backend_fs (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="805" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="1221.74" y="815.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.07%)</title><rect x="1157.4" y="629" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1160.45" y="639.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (10,101,010 samples, 0.07%)</title><rect x="1371.1" y="437" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1374.07" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (10,101,010 samples, 0.07%)</title><rect x="1151.1" y="661" width="0.9" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="1154.14" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.07%)</title><rect x="678.8" y="629" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="681.82" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="433.6" y="709" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="436.64" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="896.0" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="899.05" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (30,303,030 samples, 0.20%)</title><rect x="539.1" y="693" width="2.7" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="542.11" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (30,303,030 samples, 0.20%)</title><rect x="386.8" y="565" width="2.7" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="389.77" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (20,202,020 samples, 0.13%)</title><rect x="607.6" y="597" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="610.61" y="607.5" ></text>
+</g>
+<g >
+<title>libjson_set_internal (10,101,010 samples, 0.07%)</title><rect x="1357.6" y="885" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1360.55" y="895.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="43.4" y="805" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="46.35" y="815.5" ></text>
+</g>
+<g >
+<title>folio_mkclean (10,101,010 samples, 0.07%)</title><rect x="1087.1" y="453" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1090.14" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,808,080 samples, 0.52%)</title><rect x="421.9" y="789" width="7.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="424.93" y="799.5" ></text>
+</g>
+<g >
+<title>folio_clear_dirty_for_io (10,101,010 samples, 0.07%)</title><rect x="916.8" y="501" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="919.78" y="511.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="152.4" y="741" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="155.42" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_desc (10,101,010 samples, 0.07%)</title><rect x="267.8" y="565" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="270.79" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.07%)</title><rect x="200.2" y="693" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="203.19" y="703.5" ></text>
+</g>
+<g >
+<title>net_rx_action (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="469" width="2.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1381.28" y="479.5" ></text>
+</g>
+<g >
+<title>git_odb_read_header (30,303,030 samples, 0.20%)</title><rect x="964.6" y="773" width="2.7" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="967.55" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.52%)</title><rect x="1219.6" y="757" width="7.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1222.64" y="767.5" ></text>
+</g>
+<g >
+<title>ip_rcv_finish_core.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1334.1" y="389" width="0.9" height="15.0" fill="rgb(0,216,113)" rx="2" ry="2" />
+<text x="1337.11" y="399.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="1374.7" y="389" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1377.68" y="399.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.07%)</title><rect x="143.4" y="757" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="146.40" y="767.5" ></text>
+</g>
+<g >
+<title>free@plt (10,101,010 samples, 0.07%)</title><rect x="615.7" y="773" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="618.72" y="783.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="781.6" y="613" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="784.57" y="623.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.07%)</title><rect x="952.8" y="693" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="955.83" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.07%)</title><rect x="582.4" y="613" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="585.37" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="1116.0" y="517" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1118.98" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1320.6" y="869" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1323.59" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="1133.1" y="629" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1136.11" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="850.1" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="853.08" y="719.5" ></text>
+</g>
+<g >
+<title>lockref_put_return (10,101,010 samples, 0.07%)</title><rect x="926.7" y="501" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="929.69" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (202,020,200 samples, 1.31%)</title><rect x="1072.7" y="709" width="18.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1075.72" y="719.5" ></text>
+</g>
+<g >
+<title>__tcp_close (111,111,110 samples, 0.72%)</title><rect x="55.1" y="645" width="9.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="58.07" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (101,010,100 samples, 0.65%)</title><rect x="1006.9" y="645" width="9.0" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1009.92" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_conn_request (20,202,020 samples, 0.13%)</title><rect x="1387.3" y="341" width="1.8" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1390.30" y="351.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.07%)</title><rect x="1015.0" y="373" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1018.03" y="383.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.07%)</title><rect x="918.6" y="773" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="921.58" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.07%)</title><rect x="1316.1" y="773" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1319.09" y="783.5" ></text>
+</g>
+<g >
+<title>mm_account_fault (10,101,010 samples, 0.07%)</title><rect x="176.8" y="773" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="179.75" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="72.2" y="869" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="75.19" y="879.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.07%)</title><rect x="559.8" y="805" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="562.84" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="1016.8" y="693" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1019.83" y="703.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.07%)</title><rect x="349.8" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="352.82" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (40,404,040 samples, 0.26%)</title><rect x="927.6" y="613" width="3.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="930.60" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="945.6" y="437" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="948.62" y="447.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.1.0] (30,303,030 samples, 0.20%)</title><rect x="1323.3" y="853" width="2.7" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1326.30" y="863.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.07%)</title><rect x="961.8" y="597" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="964.85" y="607.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.07%)</title><rect x="878.0" y="549" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="881.02" y="559.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="871.7" y="709" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="874.71" y="719.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (10,101,010 samples, 0.07%)</title><rect x="1223.2" y="613" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1226.25" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.52%)</title><rect x="509.4" y="789" width="7.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="512.36" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.07%)</title><rect x="502.1" y="661" width="1.0" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="505.15" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="935.7" y="517" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="938.71" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="1363.9" y="805" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1366.86" y="815.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="389" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1221.74" y="399.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.07%)</title><rect x="517.5" y="709" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="520.47" y="719.5" ></text>
+</g>
+<g >
+<title>__memset (20,202,020 samples, 0.13%)</title><rect x="1293.6" y="709" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1296.55" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="896.9" y="693" width="1.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="899.95" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.65%)</title><rect x="757.2" y="725" width="9.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="760.24" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="770.8" y="469" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="773.76" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_es_find_extent_range (10,101,010 samples, 0.07%)</title><rect x="1097.1" y="501" width="0.9" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" />
+<text x="1100.05" y="511.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="744.6" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="747.62" y="687.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.07%)</title><rect x="831.1" y="661" width="1.0" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="834.15" y="671.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.07%)</title><rect x="177.7" y="789" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="180.66" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="255.2" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="258.17" y="751.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="330.0" y="629" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="332.99" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (40,404,040 samples, 0.26%)</title><rect x="425.5" y="709" width="3.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="428.53" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.13%)</title><rect x="386.8" y="533" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="389.77" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="712.2" y="693" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="715.17" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="248.0" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="250.96" y="575.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (60,606,060 samples, 0.39%)</title><rect x="1384.6" y="741" width="5.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1387.59" y="751.5" ></text>
+</g>
+<g >
+<title>tasklet_action_common.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1198.0" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1201.01" y="623.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="353.4" y="629" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="356.42" y="639.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="1222.3" y="661" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1225.34" y="671.5" ></text>
+</g>
+<g >
+<title>path_openat (40,404,040 samples, 0.26%)</title><rect x="700.5" y="613" width="3.6" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="703.45" y="623.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1014.1" y="501" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1017.13" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="202.0" y="645" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="204.99" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="656.3" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="659.28" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="546.3" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="549.32" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.07%)</title><rect x="352.5" y="645" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="355.52" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="437" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1013.52" y="447.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.07%)</title><rect x="852.8" y="645" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="855.78" y="655.5" ></text>
+</g>
+<g >
+<title>do_open (30,303,030 samples, 0.20%)</title><rect x="445.4" y="677" width="2.7" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="448.36" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="880.7" y="693" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="883.73" y="703.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (10,101,010 samples, 0.07%)</title><rect x="1371.1" y="373" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1374.07" y="383.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.07%)</title><rect x="193.0" y="645" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="195.98" y="655.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.07%)</title><rect x="988.9" y="421" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="991.89" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_symlink (10,101,010 samples, 0.07%)</title><rect x="1041.2" y="709" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1044.17" y="719.5" ></text>
+</g>
+<g >
+<title>blk_mq_submit_bio (10,101,010 samples, 0.07%)</title><rect x="1122.3" y="437" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1125.29" y="447.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (111,111,110 samples, 0.72%)</title><rect x="86.6" y="933" width="9.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="89.62" y="943.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (10,101,010 samples, 0.07%)</title><rect x="1084.4" y="245" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1087.44" y="255.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1233.2" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1236.16" y="783.5" ></text>
+</g>
+<g >
+<title>__folio_batch_release (30,303,030 samples, 0.20%)</title><rect x="421.9" y="661" width="2.7" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="424.93" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="723.0" y="741" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="725.98" y="751.5" ></text>
+</g>
+<g >
+<title>alloc_inode (20,202,020 samples, 0.13%)</title><rect x="1151.1" y="677" width="1.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="1154.14" y="687.5" ></text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.13%)</title><rect x="1043.9" y="725" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1046.87" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1019.5" y="549" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1022.54" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="193.9" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="196.88" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="539.1" y="773" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="542.11" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_link (10,101,010 samples, 0.07%)</title><rect x="961.8" y="645" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="964.85" y="655.5" ></text>
+</g>
+<g >
+<title>faccessat (10,101,010 samples, 0.07%)</title><rect x="1175.5" y="789" width="0.9" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="1178.47" y="799.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.07%)</title><rect x="1219.6" y="725" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1222.64" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="712.2" y="629" width="1.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="715.17" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.07%)</title><rect x="337.2" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="340.20" y="639.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="886.1" y="549" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="889.13" y="559.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.07%)</title><rect x="700.5" y="597" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="703.45" y="607.5" ></text>
+</g>
+<g >
+<title>path_openat (30,303,030 samples, 0.20%)</title><rect x="973.6" y="725" width="2.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="976.57" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="780.7" y="629" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="783.67" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="970.0" y="629" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="972.96" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="477.8" y="885" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="480.81" y="895.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="705.9" y="405" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="708.86" y="415.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (212,121,210 samples, 1.37%)</title><rect x="1110.6" y="741" width="18.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1113.57" y="751.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="473.3" y="645" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="476.31" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="951.0" y="661" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="954.03" y="671.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="842.0" y="405" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="844.97" y="415.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="710.4" y="677" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="713.37" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="195.7" y="485" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="198.68" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (121,212,120 samples, 0.78%)</title><rect x="810.4" y="757" width="10.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="813.42" y="767.5" ></text>
+</g>
+<g >
+<title>do_fchmodat (30,303,030 samples, 0.20%)</title><rect x="985.3" y="725" width="2.7" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="988.28" y="735.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.07%)</title><rect x="430.9" y="853" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="433.94" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="783.4" y="645" width="1.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="786.38" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="749.1" y="613" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="752.12" y="623.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.07%)</title><rect x="816.7" y="437" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="819.73" y="447.5" ></text>
+</g>
+<g >
+<title>arch_irq_work_raise (20,202,020 samples, 0.13%)</title><rect x="1381.0" y="645" width="1.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1383.99" y="655.5" ></text>
+</g>
+<g >
+<title>skb_release_head_state (10,101,010 samples, 0.07%)</title><rect x="1386.4" y="357" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1389.39" y="367.5" ></text>
+</g>
+<g >
+<title>close_fd (10,101,010 samples, 0.07%)</title><rect x="613.0" y="725" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="616.02" y="735.5" ></text>
+</g>
+<g >
+<title>do_writepages (90,909,090 samples, 0.59%)</title><rect x="1119.6" y="565" width="8.1" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1122.59" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1324.2" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1327.20" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_create (30,303,030 samples, 0.20%)</title><rect x="979.9" y="629" width="2.7" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="982.88" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (30,303,030 samples, 0.20%)</title><rect x="696.8" y="597" width="2.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="699.85" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="333.6" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="336.59" y="591.5" ></text>
+</g>
+<g >
+<title>git_reference_symbolic_create_matching (222,222,220 samples, 1.44%)</title><rect x="757.2" y="805" width="19.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="760.24" y="815.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.07%)</title><rect x="854.6" y="725" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="857.59" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.39%)</title><rect x="1055.6" y="789" width="5.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1058.59" y="799.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="494.9" y="789" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="497.94" y="799.5" ></text>
+</g>
+<g >
+<title>alloc_pages (10,101,010 samples, 0.07%)</title><rect x="1274.6" y="677" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1277.62" y="687.5" ></text>
+</g>
+<g >
+<title>__fput (20,202,020 samples, 0.13%)</title><rect x="50.6" y="757" width="1.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="53.56" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1095.3" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1098.25" y="703.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.07%)</title><rect x="807.7" y="485" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="810.71" y="495.5" ></text>
+</g>
+<g >
+<title>dd_insert_requests (10,101,010 samples, 0.07%)</title><rect x="1009.6" y="421" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1012.62" y="431.5" ></text>
+</g>
+<g >
+<title>do_softirq (20,202,020 samples, 0.13%)</title><rect x="1349.4" y="597" width="1.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1352.44" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="457.1" y="725" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="460.08" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="997.0" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1000.00" y="703.5" ></text>
+</g>
+<g >
+<title>pcre_compile2 (10,101,010 samples, 0.07%)</title><rect x="823.9" y="805" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="826.94" y="815.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="1237.7" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1240.67" y="639.5" ></text>
+</g>
+<g >
+<title>git_odb_backend_pack (50,505,050 samples, 0.33%)</title><rect x="892.4" y="805" width="4.5" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="895.44" y="815.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.07%)</title><rect x="997.9" y="677" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1000.90" y="687.5" ></text>
+</g>
+<g >
+<title>__sock_create (20,202,020 samples, 0.13%)</title><rect x="1337.7" y="853" width="1.8" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1340.72" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="1062.8" y="773" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1065.80" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="553.5" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="556.53" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (30,303,030 samples, 0.20%)</title><rect x="1363.9" y="789" width="2.7" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1366.86" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="813.1" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="816.12" y="527.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.07%)</title><rect x="762.6" y="469" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="765.65" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="668.0" y="597" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="671.00" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_write (60,606,060 samples, 0.39%)</title><rect x="904.2" y="677" width="5.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="907.16" y="687.5" ></text>
+</g>
+<g >
+<title>readlink (10,101,010 samples, 0.07%)</title><rect x="1194.4" y="757" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1197.40" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="953.7" y="613" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="956.74" y="623.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="389" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1013.52" y="399.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.07%)</title><rect x="616.6" y="661" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="619.62" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="359.7" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="362.73" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (10,101,010 samples, 0.07%)</title><rect x="862.7" y="629" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="865.70" y="639.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="901.5" y="565" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="904.46" y="575.5" ></text>
+</g>
+<g >
+<title>crc_pcl (30,303,030 samples, 0.20%)</title><rect x="292.1" y="549" width="2.7" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="295.13" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.20%)</title><rect x="150.6" y="789" width="2.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="153.61" y="799.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="453.5" y="645" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="456.47" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (20,202,020 samples, 0.13%)</title><rect x="385.0" y="661" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="387.97" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1252.1" y="613" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1255.09" y="623.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (252,525,250 samples, 1.63%)</title><rect x="824.8" y="837" width="22.6" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="827.84" y="847.5" >g..</text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="122.7" y="757" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="125.67" y="767.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (50,505,050 samples, 0.33%)</title><rect x="462.5" y="677" width="4.5" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="465.49" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="1189.9" y="805" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1192.90" y="815.5" ></text>
+</g>
+<g >
+<title>kprobe_perf_func (70,707,070 samples, 0.46%)</title><rect x="1342.2" y="741" width="6.3" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1345.23" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="958.2" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="961.24" y="703.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.07%)</title><rect x="571.6" y="485" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="574.55" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (30,303,030 samples, 0.20%)</title><rect x="346.2" y="613" width="2.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="349.21" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="887.0" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="890.03" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (80,808,080 samples, 0.52%)</title><rect x="1016.8" y="725" width="7.2" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1019.83" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,616,161,590 samples, 16.92%)</title><rect x="182.2" y="853" width="233.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="185.16" y="863.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>path_openat (30,303,030 samples, 0.20%)</title><rect x="749.1" y="549" width="2.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="752.12" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (30,303,030 samples, 0.20%)</title><rect x="539.1" y="645" width="2.7" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="542.11" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (171,717,170 samples, 1.11%)</title><rect x="357.9" y="645" width="15.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="360.93" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1128.6" y="597" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1131.60" y="607.5" ></text>
+</g>
+<g >
+<title>sk_filter_trim_cap (10,101,010 samples, 0.07%)</title><rect x="1329.6" y="309" width="0.9" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1332.61" y="319.5" ></text>
+</g>
+<g >
+<title>fprintf (40,404,040 samples, 0.26%)</title><rect x="78.5" y="917" width="3.6" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="81.50" y="927.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="869.0" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="872.01" y="751.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (30,303,030 samples, 0.20%)</title><rect x="990.7" y="661" width="2.7" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="993.69" y="671.5" ></text>
+</g>
+<g >
+<title>__strdup (10,101,010 samples, 0.07%)</title><rect x="970.9" y="677" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="973.86" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="376.9" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="379.86" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="927.6" y="597" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="930.60" y="607.5" ></text>
+</g>
+<g >
+<title>scsi_target_queue_ready (10,101,010 samples, 0.07%)</title><rect x="838.4" y="357" width="0.9" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="841.36" y="367.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="830.2" y="741" width="1.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="833.25" y="751.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.07%)</title><rect x="1309.8" y="869" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1312.78" y="879.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="610.3" y="581" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="613.31" y="591.5" ></text>
+</g>
+<g >
+<title>server_assign_run (131,313,130 samples, 0.85%)</title><rect x="10.9" y="997" width="11.7" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="13.90" y="1007.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (10,101,010 samples, 0.07%)</title><rect x="951.9" y="533" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="954.93" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="1011.4" y="389" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1014.42" y="399.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="184.9" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="187.87" y="687.5" ></text>
+</g>
+<g >
+<title>readlink (10,101,010 samples, 0.07%)</title><rect x="494.0" y="741" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="497.04" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.07%)</title><rect x="818.5" y="469" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="821.53" y="479.5" ></text>
+</g>
+<g >
+<title>alloc_buffer_head (10,101,010 samples, 0.07%)</title><rect x="1051.1" y="581" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1054.08" y="591.5" ></text>
+</g>
+<g >
+<title>__wake_up (10,101,010 samples, 0.07%)</title><rect x="88.4" y="821" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="91.42" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.07%)</title><rect x="133.5" y="805" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="136.49" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="475.1" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="478.11" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_invalidate_folio (10,101,010 samples, 0.07%)</title><rect x="1006.0" y="501" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1009.02" y="511.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="533" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1064.90" y="543.5" ></text>
+</g>
+<g >
+<title>sock_recvmsg (20,202,020 samples, 0.13%)</title><rect x="1364.8" y="725" width="1.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1367.76" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="77.6" y="885" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="80.60" y="895.5" ></text>
+</g>
+<g >
+<title>trace_call_bpf (70,707,070 samples, 0.46%)</title><rect x="1342.2" y="725" width="6.3" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1345.23" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_send_fin (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="693" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1339.82" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (292,929,290 samples, 1.89%)</title><rect x="284.9" y="613" width="26.2" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="287.92" y="623.5" >e..</text>
+</g>
+<g >
+<title>mpage_submit_folio (20,202,020 samples, 0.13%)</title><rect x="1086.2" y="469" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1089.24" y="479.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (10,101,010 samples, 0.07%)</title><rect x="1353.0" y="917" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1356.04" y="927.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="514.8" y="597" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="517.77" y="607.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="559.8" y="677" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="562.84" y="687.5" ></text>
+</g>
+<g >
+<title>git_repository_config_snapshot (111,111,110 samples, 0.72%)</title><rect x="878.9" y="805" width="9.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="881.92" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="1320.6" y="821" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1323.59" y="831.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.07%)</title><rect x="1370.2" y="613" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1373.17" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="731.1" y="709" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="734.10" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="248.0" y="533" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="250.96" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="578.8" y="565" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="581.77" y="575.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="485" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1343.42" y="495.5" ></text>
+</g>
+<g >
+<title>kernel_clone (141,414,140 samples, 0.91%)</title><rect x="27.1" y="965" width="12.6" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="30.13" y="975.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="1025.8" y="613" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1028.85" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1040.3" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1043.27" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1221.4" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1224.44" y="719.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="777.1" y="757" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="780.07" y="767.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.07%)</title><rect x="272.3" y="597" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="275.30" y="607.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (80,808,080 samples, 0.52%)</title><rect x="1327.8" y="533" width="7.2" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1330.81" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="362.4" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="365.44" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (70,707,070 samples, 0.46%)</title><rect x="14.5" y="805" width="6.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="17.51" y="815.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="549" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1221.74" y="559.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="1137.6" y="661" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1140.62" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.59%)</title><rect x="1219.6" y="805" width="8.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1222.64" y="815.5" ></text>
+</g>
+<g >
+<title>__do_softirq (40,404,040 samples, 0.26%)</title><rect x="1386.4" y="581" width="3.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1389.39" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (40,404,040 samples, 0.26%)</title><rect x="1019.5" y="693" width="3.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1022.54" y="703.5" ></text>
+</g>
+<g >
+<title>ipv4_conntrack_local (20,202,020 samples, 0.13%)</title><rect x="1384.6" y="677" width="1.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1387.59" y="687.5" ></text>
+</g>
+<g >
+<title>__memcpy (10,101,010 samples, 0.07%)</title><rect x="399.4" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="402.39" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_link (10,101,010 samples, 0.07%)</title><rect x="961.8" y="661" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="964.85" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_rename (80,808,080 samples, 0.52%)</title><rect x="467.0" y="693" width="7.2" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="470.00" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="403.9" y="661" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="406.90" y="671.5" ></text>
+</g>
+<g >
+<title>pipe_release (10,101,010 samples, 0.07%)</title><rect x="1308.9" y="725" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1311.88" y="735.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.07%)</title><rect x="988.9" y="485" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="991.89" y="495.5" ></text>
+</g>
+<g >
+<title>submit_bh_wbc (10,101,010 samples, 0.07%)</title><rect x="1073.6" y="373" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1076.62" y="383.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="1071.8" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1074.82" y="639.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="228.1" y="405" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="231.13" y="415.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="355.2" y="613" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="358.23" y="623.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_destroy (10,101,010 samples, 0.07%)</title><rect x="1358.5" y="901" width="0.9" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="1361.45" y="911.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="1243.1" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1246.08" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="483.2" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="486.22" y="719.5" ></text>
+</g>
+<g >
+<title>common_perm_cond (10,101,010 samples, 0.07%)</title><rect x="1216.9" y="597" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="1219.94" y="607.5" ></text>
+</g>
+<g >
+<title>_IO_setb (10,101,010 samples, 0.07%)</title><rect x="801.4" y="693" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="804.40" y="703.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.07%)</title><rect x="227.2" y="357" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="230.23" y="367.5" ></text>
+</g>
+<g >
+<title>evict (60,606,060 samples, 0.39%)</title><rect x="409.3" y="693" width="5.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="412.31" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (40,404,040 samples, 0.26%)</title><rect x="23.5" y="949" width="3.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="26.52" y="959.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="545.4" y="805" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="548.41" y="815.5" ></text>
+</g>
+<g >
+<title>insert_revoke_hash (10,101,010 samples, 0.07%)</title><rect x="371.5" y="501" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="374.45" y="511.5" ></text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.07%)</title><rect x="142.5" y="757" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="145.50" y="767.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.07%)</title><rect x="231.7" y="709" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="234.74" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="394.0" y="645" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="396.98" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="872.6" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="875.61" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1183.6" y="709" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1186.59" y="719.5" ></text>
+</g>
+<g >
+<title>remove (80,808,080 samples, 0.52%)</title><rect x="434.5" y="853" width="7.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="437.55" y="863.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="510.3" y="581" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="513.26" y="591.5" ></text>
+</g>
+<g >
+<title>json_tokener_parse_verbose (50,505,050 samples, 0.33%)</title><rect x="1359.4" y="853" width="4.5" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="1362.35" y="863.5" ></text>
+</g>
+<g >
+<title>submit_bio (10,101,010 samples, 0.07%)</title><rect x="1122.3" y="501" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="1125.29" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="1014.1" y="517" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1017.13" y="527.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="650.0" y="661" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="652.97" y="671.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="251.6" y="677" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="254.57" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_check_dir_entry (10,101,010 samples, 0.07%)</title><rect x="153.3" y="773" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="156.32" y="783.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (10,101,010 samples, 0.07%)</title><rect x="1331.4" y="245" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1334.41" y="255.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (40,404,040 samples, 0.26%)</title><rect x="511.2" y="629" width="3.6" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="514.16" y="639.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (50,505,050 samples, 0.33%)</title><rect x="1296.3" y="709" width="4.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1299.26" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="457.1" y="741" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="460.08" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (101,010,100 samples, 0.65%)</title><rect x="1327.8" y="757" width="9.0" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="1330.81" y="767.5" ></text>
+</g>
+<g >
+<title>do_writepages (101,010,100 samples, 0.65%)</title><rect x="838.4" y="581" width="9.0" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="841.36" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="807.7" y="757" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="810.71" y="767.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="458.0" y="565" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="460.98" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="690.5" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="693.54" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.46%)</title><rect x="14.5" y="885" width="6.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="17.51" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_mb_prefetch_fini (10,101,010 samples, 0.07%)</title><rect x="1169.2" y="581" width="0.9" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="1172.16" y="591.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.07%)</title><rect x="972.7" y="549" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="975.66" y="559.5" ></text>
+</g>
+<g >
+<title>__release_sock (10,101,010 samples, 0.07%)</title><rect x="1367.5" y="741" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1370.47" y="751.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (10,101,010 samples, 0.07%)</title><rect x="245.3" y="597" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="248.26" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="453.5" y="773" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="456.47" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="769.0" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="771.95" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="539.1" y="757" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="542.11" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="993.4" y="773" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="996.40" y="783.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.07%)</title><rect x="656.3" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="659.28" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="255.2" y="757" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="258.17" y="767.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.07%)</title><rect x="1017.7" y="517" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="1020.73" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="807.7" y="741" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="810.71" y="751.5" ></text>
+</g>
+<g >
+<title>page_remove_rmap (10,101,010 samples, 0.07%)</title><rect x="1307.1" y="757" width="0.9" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="1310.07" y="767.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="541.8" y="709" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="544.81" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="757.2" y="613" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="760.24" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1196.2" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1199.21" y="815.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (20,202,020 samples, 0.13%)</title><rect x="912.3" y="501" width="1.8" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="915.27" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (20,202,020 samples, 0.13%)</title><rect x="924.9" y="501" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="927.89" y="511.5" ></text>
+</g>
+<g >
+<title>evict (30,303,030 samples, 0.20%)</title><rect x="187.6" y="565" width="2.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="190.57" y="575.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="710.4" y="725" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="713.37" y="735.5" ></text>
+</g>
+<g >
+<title>sock_close (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="773" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="1339.82" y="783.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="709" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1233.46" y="719.5" ></text>
+</g>
+<g >
+<title>git_repository_config_snapshot (131,313,130 samples, 0.85%)</title><rect x="743.7" y="773" width="11.7" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="746.72" y="783.5" ></text>
+</g>
+<g >
+<title>folio_clear_dirty_for_io (10,101,010 samples, 0.07%)</title><rect x="1086.2" y="453" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1089.24" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="1065.5" y="709" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1068.51" y="719.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.07%)</title><rect x="424.6" y="581" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="427.63" y="591.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.07%)</title><rect x="819.4" y="293" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="822.43" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (20,202,020 samples, 0.13%)</title><rect x="427.3" y="693" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="430.34" y="703.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.07%)</title><rect x="193.0" y="613" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="195.98" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.07%)</title><rect x="353.4" y="645" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="356.42" y="655.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.07%)</title><rect x="737.4" y="645" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="740.41" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.07%)</title><rect x="550.8" y="613" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="553.82" y="623.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.07%)</title><rect x="1069.1" y="469" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1072.11" y="479.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.07%)</title><rect x="186.7" y="549" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="189.67" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="514.8" y="565" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="517.77" y="575.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.07%)</title><rect x="793.3" y="501" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="796.29" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="739.2" y="677" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="742.21" y="687.5" ></text>
+</g>
+<g >
+<title>do_rmdir (303,030,300 samples, 1.96%)</title><rect x="349.8" y="709" width="27.1" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="352.82" y="719.5" >d..</text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="550.8" y="805" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="553.82" y="815.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.07%)</title><rect x="1246.7" y="725" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1249.68" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.07%)</title><rect x="1124.1" y="501" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1127.10" y="511.5" ></text>
+</g>
+<g >
+<title>nf_nat_ipv4_local_in (10,101,010 samples, 0.07%)</title><rect x="1333.2" y="373" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1336.21" y="383.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.65%)</title><rect x="979.0" y="805" width="9.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="981.97" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_info (10,101,010 samples, 0.07%)</title><rect x="306.6" y="501" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="309.55" y="511.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="1241.3" y="645" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1244.27" y="655.5" ></text>
+</g>
+<g >
+<title>str2hashbuf_signed (10,101,010 samples, 0.07%)</title><rect x="403.0" y="645" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="406.00" y="655.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="469.7" y="453" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="472.70" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (60,606,060 samples, 0.39%)</title><rect x="904.2" y="645" width="5.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="907.16" y="655.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="455.3" y="661" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="458.28" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="937.5" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="940.51" y="511.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (80,808,080 samples, 0.52%)</title><rect x="810.4" y="645" width="7.2" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="813.42" y="655.5" ></text>
+</g>
+<g >
+<title>get_obj_cgroup_from_current (10,101,010 samples, 0.07%)</title><rect x="1226.9" y="517" width="0.9" height="15.0" fill="rgb(0,206,71)" rx="2" ry="2" />
+<text x="1229.85" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="124.5" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="127.47" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.07%)</title><rect x="1167.4" y="581" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1170.36" y="591.5" ></text>
+</g>
+<g >
+<title>do_open (20,202,020 samples, 0.13%)</title><rect x="1024.9" y="693" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1027.94" y="703.5" ></text>
+</g>
+<g >
+<title>sigprocmask (10,101,010 samples, 0.07%)</title><rect x="69.5" y="773" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="72.49" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="708.6" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="711.56" y="655.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.07%)</title><rect x="1071.8" y="565" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1074.82" y="575.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="533" width="0.9" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1343.42" y="543.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (10,101,010 samples, 0.07%)</title><rect x="351.6" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="354.62" y="703.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="732.9" y="501" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="735.90" y="511.5" ></text>
+</g>
+<g >
+<title>rmdir (191,919,190 samples, 1.24%)</title><rect x="214.6" y="709" width="17.1" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="217.61" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="928.5" y="549" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="931.50" y="559.5" ></text>
+</g>
+<g >
+<title>walk_component (50,505,050 samples, 0.33%)</title><rect x="1056.5" y="677" width="4.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1059.49" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (101,010,100 samples, 0.65%)</title><rect x="1247.6" y="837" width="9.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1250.58" y="847.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="556.2" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="559.23" y="639.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="783.4" y="677" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="786.38" y="687.5" ></text>
+</g>
+<g >
+<title>d_lru_del (10,101,010 samples, 0.07%)</title><rect x="198.4" y="533" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="201.39" y="543.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="856.4" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="859.39" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (404,040,400 samples, 2.61%)</title><rect x="690.5" y="805" width="36.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="693.54" y="815.5" >[li..</text>
+</g>
+<g >
+<title>blk_finish_plug (10,101,010 samples, 0.07%)</title><rect x="838.4" y="533" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="841.36" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="1210.6" y="725" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1213.63" y="735.5" ></text>
+</g>
+<g >
+<title>charge_memcg (10,101,010 samples, 0.07%)</title><rect x="957.3" y="485" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="960.34" y="495.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1007.8" y="517" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1010.82" y="527.5" ></text>
+</g>
+<g >
+<title>futex_wait (20,202,020 samples, 0.13%)</title><rect x="23.5" y="853" width="1.8" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="26.52" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (20,202,020 samples, 0.13%)</title><rect x="721.2" y="645" width="1.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="724.18" y="655.5" ></text>
+</g>
+<g >
+<title>do_softirq (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="389" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1368.66" y="399.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.20%)</title><rect x="521.1" y="661" width="2.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="524.08" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="72.2" y="853" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="75.19" y="863.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.07%)</title><rect x="984.4" y="549" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="987.38" y="559.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="557.1" y="725" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="560.13" y="735.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.07%)</title><rect x="787.0" y="693" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="789.98" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="164.1" y="981" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="167.13" y="991.5" ></text>
+</g>
+<g >
+<title>__strdup (10,101,010 samples, 0.07%)</title><rect x="1357.6" y="853" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1360.55" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="721.2" y="677" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="724.18" y="687.5" ></text>
+</g>
+<g >
+<title>iput (90,909,090 samples, 0.59%)</title><rect x="1073.6" y="597" width="8.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1076.62" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.33%)</title><rect x="616.6" y="757" width="4.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="619.62" y="767.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (90,909,090 samples, 0.59%)</title><rect x="880.7" y="757" width="8.1" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="883.73" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="867.2" y="533" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="870.20" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="733.8" y="693" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="736.80" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="1217.8" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1220.84" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="335.4" y="533" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="338.40" y="543.5" ></text>
+</g>
+<g >
+<title>getdents64 (80,808,080 samples, 0.52%)</title><rect x="622.0" y="773" width="7.2" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="625.03" y="783.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.07%)</title><rect x="176.8" y="821" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="179.75" y="831.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1000.6" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1003.61" y="687.5" ></text>
+</g>
+<g >
+<title>do_writepages (40,404,040 samples, 0.26%)</title><rect x="467.9" y="613" width="3.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="470.90" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (40,404,040 samples, 0.26%)</title><rect x="700.5" y="661" width="3.6" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="703.45" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_socket (10,101,010 samples, 0.07%)</title><rect x="1375.6" y="885" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1378.58" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.07%)</title><rect x="553.5" y="677" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="556.53" y="687.5" ></text>
+</g>
+<g >
+<title>__memcpy (10,101,010 samples, 0.07%)</title><rect x="36.1" y="917" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="39.14" y="927.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.07%)</title><rect x="548.1" y="757" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="551.12" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="190.3" y="517" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="193.27" y="527.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="696.8" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="699.85" y="511.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="65.0" y="901" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="67.98" y="911.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.07%)</title><rect x="779.8" y="773" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="782.77" y="783.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.07%)</title><rect x="979.0" y="629" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="981.97" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="1253.0" y="533" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1255.99" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="502.1" y="629" width="1.0" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="505.15" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1190.8" y="725" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1193.80" y="735.5" ></text>
+</g>
+<g >
+<title>ip_output (10,101,010 samples, 0.07%)</title><rect x="1388.2" y="293" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1391.20" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_match.part.0 (10,101,010 samples, 0.07%)</title><rect x="472.4" y="629" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="475.40" y="639.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="818.5" y="389" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="821.53" y="399.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (50,505,050 samples, 0.33%)</title><rect x="58.7" y="325" width="4.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="61.67" y="335.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1032.2" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1035.16" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (40,404,040 samples, 0.26%)</title><rect x="1049.3" y="709" width="3.6" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1052.28" y="719.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.07%)</title><rect x="1082.6" y="341" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1085.63" y="351.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="776.2" y="517" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="779.17" y="527.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.20%)</title><rect x="924.9" y="565" width="2.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="927.89" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1324.2" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1327.20" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_read_block_bitmap_nowait (10,101,010 samples, 0.07%)</title><rect x="835.7" y="453" width="0.9" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="838.66" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1181.8" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1184.78" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (70,707,070 samples, 0.46%)</title><rect x="434.5" y="757" width="6.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="437.55" y="767.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (10,101,010 samples, 0.07%)</title><rect x="1388.2" y="229" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1391.20" y="239.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="871.7" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="874.71" y="767.5" ></text>
+</g>
+<g >
+<title>ip_rcv (40,404,040 samples, 0.26%)</title><rect x="1386.4" y="485" width="3.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1389.39" y="495.5" ></text>
+</g>
+<g >
+<title>__get_free_pages (10,101,010 samples, 0.07%)</title><rect x="1031.3" y="565" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1034.25" y="575.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (20,202,020 samples, 0.13%)</title><rect x="938.4" y="501" width="1.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="941.41" y="511.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="1238.6" y="725" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1241.57" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="225.4" y="453" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="228.43" y="463.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="1192.6" y="661" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1195.60" y="671.5" ></text>
+</g>
+<g >
+<title>unlink_cb (70,707,070 samples, 0.46%)</title><rect x="185.8" y="693" width="6.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="188.77" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="408.4" y="629" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="411.41" y="639.5" ></text>
+</g>
+<g >
+<title>alloc_file_pseudo (10,101,010 samples, 0.07%)</title><rect x="71.3" y="773" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="74.29" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="968.2" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="971.16" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.07%)</title><rect x="1116.9" y="501" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1119.88" y="511.5" ></text>
+</g>
+<g >
+<title>shrink_dentry_list (30,303,030 samples, 0.20%)</title><rect x="313.8" y="629" width="2.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="316.76" y="639.5" ></text>
+</g>
+<g >
+<title>folio_alloc_buffers (10,101,010 samples, 0.07%)</title><rect x="803.2" y="533" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="806.21" y="543.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.07%)</title><rect x="539.1" y="533" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="542.11" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="410.2" y="629" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="413.21" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="887.0" y="629" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="890.03" y="639.5" ></text>
+</g>
+<g >
+<title>__block_commit_write.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="765.3" y="517" width="1.0" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="768.35" y="527.5" ></text>
+</g>
+<g >
+<title>ima_file_check (10,101,010 samples, 0.07%)</title><rect x="749.1" y="517" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="752.12" y="527.5" ></text>
+</g>
+<g >
+<title>ip_output (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="613" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1381.28" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="878.0" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="881.02" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="1227.8" y="853" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1230.75" y="863.5" ></text>
+</g>
+<g >
+<title>git_reference_create_matching (404,040,400 samples, 2.61%)</title><rect x="690.5" y="821" width="36.1" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="693.54" y="831.5" >git..</text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="762.6" y="453" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="765.65" y="463.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="494.9" y="661" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="497.94" y="671.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1237.7" y="661" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1240.67" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="242.6" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="245.55" y="559.5" ></text>
+</g>
+<g >
+<title>folio_wait_bit_common (10,101,010 samples, 0.07%)</title><rect x="816.7" y="501" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="819.73" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="266.0" y="597" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="268.99" y="607.5" ></text>
+</g>
+<g >
+<title>mb_find_order_for_block (10,101,010 samples, 0.07%)</title><rect x="593.2" y="485" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="596.19" y="495.5" ></text>
+</g>
+<g >
+<title>syscall_trace_enter.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="48.8" y="869" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="51.76" y="879.5" ></text>
+</g>
+<g >
+<title>__set_cpus_allowed_ptr (10,101,010 samples, 0.07%)</title><rect x="1257.5" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1260.50" y="719.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.07%)</title><rect x="668.9" y="389" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="671.90" y="399.5" ></text>
+</g>
+<g >
+<title>[libz.so.1.2.11] (10,101,010 samples, 0.07%)</title><rect x="519.3" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="522.27" y="719.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.07%)</title><rect x="715.8" y="629" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="718.77" y="639.5" ></text>
+</g>
+<g >
+<title>current_time (10,101,010 samples, 0.07%)</title><rect x="10.9" y="789" width="0.9" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="13.90" y="799.5" ></text>
+</g>
+<g >
+<title>__rq_qos_issue (10,101,010 samples, 0.07%)</title><rect x="817.6" y="341" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="820.63" y="351.5" ></text>
+</g>
+<g >
+<title>git_remote_create (606,060,600 samples, 3.92%)</title><rect x="797.8" y="869" width="54.1" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="800.80" y="879.5" >git_r..</text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="1233.2" y="805" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1236.16" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (30,303,030 samples, 0.20%)</title><rect x="941.1" y="581" width="2.7" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="944.12" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (30,303,030 samples, 0.20%)</title><rect x="1097.1" y="565" width="2.7" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1100.05" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1191.7" y="741" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1194.70" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="1007.8" y="549" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1010.82" y="559.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="74.0" y="821" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="77.00" y="831.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.07%)</title><rect x="164.1" y="965" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="167.13" y="975.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="469" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1368.66" y="479.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1042.1" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1045.07" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (80,808,080 samples, 0.52%)</title><rect x="1016.8" y="757" width="7.2" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1019.83" y="767.5" ></text>
+</g>
+<g >
+<title>git_refdb_open (30,303,030 samples, 0.20%)</title><rect x="733.8" y="741" width="2.7" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="736.80" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.85%)</title><rect x="462.5" y="789" width="11.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="465.49" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.07%)</title><rect x="673.4" y="453" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="676.41" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_release_dir (10,101,010 samples, 0.07%)</title><rect x="340.8" y="661" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="343.80" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="758.1" y="661" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="761.14" y="671.5" ></text>
+</g>
+<g >
+<title>do_faccessat (111,111,110 samples, 0.72%)</title><rect x="165.0" y="949" width="10.0" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="168.04" y="959.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="449.0" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="451.97" y="783.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (10,101,010 samples, 0.07%)</title><rect x="1050.2" y="613" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1053.18" y="623.5" ></text>
+</g>
+<g >
+<title>mpage_prepare_extent_to_map (20,202,020 samples, 0.13%)</title><rect x="677.0" y="517" width="1.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="680.02" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.20%)</title><rect x="327.3" y="693" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="330.28" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="150.6" y="741" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="153.61" y="751.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.07%)</title><rect x="1175.5" y="725" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1178.47" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (50,505,050 samples, 0.33%)</title><rect x="979.0" y="725" width="4.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="981.97" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1016.8" y="661" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1019.83" y="671.5" ></text>
+</g>
+<g >
+<title>access@plt (10,101,010 samples, 0.07%)</title><rect x="1244.9" y="773" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1247.88" y="783.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.07%)</title><rect x="433.6" y="645" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="436.64" y="655.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.07%)</title><rect x="722.1" y="565" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="725.08" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="908.7" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="911.67" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.07%)</title><rect x="1005.1" y="469" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="1008.11" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (40,404,040 samples, 0.26%)</title><rect x="274.1" y="629" width="3.6" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="277.10" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="90.2" y="757" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="93.22" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="732.0" y="597" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="735.00" y="607.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (40,404,040 samples, 0.26%)</title><rect x="490.4" y="709" width="3.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="493.43" y="719.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.07%)</title><rect x="1226.9" y="565" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1229.85" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_check_dir_entry (10,101,010 samples, 0.07%)</title><rect x="1224.1" y="597" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1227.15" y="607.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="227.2" y="325" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="230.23" y="335.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="325" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1013.52" y="335.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.07%)</title><rect x="202.0" y="549" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="204.99" y="559.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (10,101,010 samples, 0.07%)</title><rect x="215.5" y="597" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="218.51" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (30,303,030 samples, 0.20%)</title><rect x="1330.5" y="309" width="2.7" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1333.51" y="319.5" ></text>
+</g>
+<g >
+<title>tcp_event_new_data_sent (10,101,010 samples, 0.07%)</title><rect x="1335.9" y="693" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1338.92" y="703.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.07%)</title><rect x="1114.2" y="485" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1117.18" y="495.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="920.4" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="923.39" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (40,404,040 samples, 0.26%)</title><rect x="345.3" y="677" width="3.6" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="348.31" y="687.5" ></text>
+</g>
+<g >
+<title>process_backlog (20,202,020 samples, 0.13%)</title><rect x="1372.9" y="405" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1375.87" y="415.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="822.1" y="789" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="825.14" y="799.5" ></text>
+</g>
+<g >
+<title>[[kernel.kallsyms]] (40,404,040 samples, 0.26%)</title><rect x="1342.2" y="597" width="3.6" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1345.23" y="607.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.07%)</title><rect x="1075.4" y="469" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1078.42" y="479.5" ></text>
+</g>
+<g >
+<title>should_failslab (10,101,010 samples, 0.07%)</title><rect x="19.9" y="725" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="22.92" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (20,202,020 samples, 0.13%)</title><rect x="25.3" y="901" width="1.8" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="28.32" y="911.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="267.8" y="581" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="270.79" y="591.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.07%)</title><rect x="1069.1" y="645" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1072.11" y="655.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.07%)</title><rect x="380.5" y="693" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="383.46" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="621.1" y="725" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="624.13" y="735.5" ></text>
+</g>
+<g >
+<title>free_rb_tree_fname (10,101,010 samples, 0.07%)</title><rect x="398.5" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="401.49" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.07%)</title><rect x="924.9" y="453" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="927.89" y="463.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.07%)</title><rect x="970.9" y="661" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="973.86" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="728.4" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="731.39" y="703.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (20,202,020 samples, 0.13%)</title><rect x="759.9" y="581" width="1.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="762.94" y="591.5" ></text>
+</g>
+<g >
+<title>git_buf_dispose (10,101,010 samples, 0.07%)</title><rect x="529.2" y="757" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="532.19" y="767.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.07%)</title><rect x="1175.5" y="693" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1178.47" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="494.9" y="677" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="497.94" y="687.5" ></text>
+</g>
+<g >
+<title>inet_hash_connect (10,101,010 samples, 0.07%)</title><rect x="1382.8" y="789" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1385.79" y="799.5" ></text>
+</g>
+<g >
+<title>vma_interval_tree_insert_after (10,101,010 samples, 0.07%)</title><rect x="1303.5" y="725" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1306.47" y="735.5" ></text>
+</g>
+<g >
+<title>readdir64 (60,606,060 samples, 0.39%)</title><rect x="399.4" y="837" width="5.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="402.39" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="144.3" y="773" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="147.30" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.07%)</title><rect x="211.9" y="613" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="214.91" y="623.5" ></text>
+</g>
+<g >
+<title>unlink (20,202,020 samples, 0.13%)</title><rect x="962.7" y="741" width="1.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="965.75" y="751.5" ></text>
+</g>
+<g >
+<title>ksys_read (30,303,030 samples, 0.20%)</title><rect x="1363.9" y="773" width="2.7" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1366.86" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="1251.2" y="725" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1254.19" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="550.8" y="741" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="553.82" y="751.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (70,707,070 samples, 0.46%)</title><rect x="1327.8" y="389" width="6.3" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1330.81" y="399.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="1207.0" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1210.02" y="639.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (10,101,010 samples, 0.07%)</title><rect x="1006.0" y="549" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1009.02" y="559.5" ></text>
+</g>
+<g >
+<title>mpage_submit_folio (10,101,010 samples, 0.07%)</title><rect x="1013.2" y="469" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1016.23" y="479.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="211.0" y="501" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="214.01" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="453.5" y="741" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="456.47" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="767.2" y="565" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="770.15" y="575.5" ></text>
+</g>
+<g >
+<title>should_failslab (10,101,010 samples, 0.07%)</title><rect x="490.4" y="645" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="493.43" y="655.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.07%)</title><rect x="492.2" y="549" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="495.23" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (323,232,320 samples, 2.09%)</title><rect x="567.0" y="741" width="28.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="570.05" y="751.5" >en..</text>
+</g>
+<g >
+<title>ext4_da_write_begin (40,404,040 samples, 0.26%)</title><rect x="643.7" y="581" width="3.6" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="646.66" y="591.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.07%)</title><rect x="546.3" y="597" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="549.32" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_nonda_switch (10,101,010 samples, 0.07%)</title><rect x="646.4" y="565" width="0.9" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="649.37" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.07%)</title><rect x="862.7" y="565" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="865.70" y="575.5" ></text>
+</g>
+<g >
+<title>git_repository_item_path (10,101,010 samples, 0.07%)</title><rect x="499.4" y="789" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="502.44" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.33%)</title><rect x="1106.1" y="725" width="4.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1109.07" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_close (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="725" width="3.6" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1374.97" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="654.5" y="757" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="657.48" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (121,212,120 samples, 0.78%)</title><rect x="584.2" y="597" width="10.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="587.17" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_superblock_csum_set (10,101,010 samples, 0.07%)</title><rect x="363.3" y="613" width="0.9" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" />
+<text x="366.34" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="777.1" y="789" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="780.07" y="799.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (30,303,030 samples, 0.20%)</title><rect x="817.6" y="613" width="2.7" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="820.63" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.07%)</title><rect x="946.5" y="469" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="949.53" y="479.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.07%)</title><rect x="1246.7" y="741" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1249.68" y="751.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="994.3" y="661" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="997.30" y="671.5" ></text>
+</g>
+<g >
+<title>__d_lookup (10,101,010 samples, 0.07%)</title><rect x="114.6" y="837" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="117.56" y="847.5" ></text>
+</g>
+<g >
+<title>git_reference_dwim (50,505,050 samples, 0.33%)</title><rect x="553.5" y="853" width="4.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="556.53" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (151,515,150 samples, 0.98%)</title><rect x="1339.5" y="917" width="13.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1342.52" y="927.5" ></text>
+</g>
+<g >
+<title>anon_vma_fork (121,212,120 samples, 0.78%)</title><rect x="1261.1" y="725" width="10.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1264.10" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (20,202,020 samples, 0.13%)</title><rect x="211.9" y="677" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="214.91" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (222,222,220 samples, 1.44%)</title><rect x="757.2" y="789" width="19.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="760.24" y="799.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.07%)</title><rect x="273.2" y="581" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="276.20" y="591.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="90.2" y="741" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="93.22" y="751.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.07%)</title><rect x="173.1" y="869" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="176.15" y="879.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.07%)</title><rect x="1205.2" y="581" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1208.22" y="591.5" ></text>
+</g>
+<g >
+<title>path_lookupat (111,111,110 samples, 0.72%)</title><rect x="165.0" y="901" width="10.0" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="168.04" y="911.5" ></text>
+</g>
+<g >
+<title>d_splice_alias (10,101,010 samples, 0.07%)</title><rect x="714.0" y="533" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="716.97" y="543.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.07%)</title><rect x="1109.7" y="613" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1112.67" y="623.5" ></text>
+</g>
+<g >
+<title>syscall_trace_enter.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1321.5" y="837" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1324.50" y="847.5" ></text>
+</g>
+<g >
+<title>sock_alloc (10,101,010 samples, 0.07%)</title><rect x="1338.6" y="837" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1341.62" y="847.5" ></text>
+</g>
+<g >
+<title>kmalloc_trace (10,101,010 samples, 0.07%)</title><rect x="265.1" y="645" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="268.09" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="805.9" y="661" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="808.91" y="671.5" ></text>
+</g>
+<g >
+<title>git_odb_exists (10,101,010 samples, 0.07%)</title><rect x="896.9" y="837" width="1.0" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="899.95" y="847.5" ></text>
+</g>
+<g >
+<title>open64 (30,303,030 samples, 0.20%)</title><rect x="973.6" y="821" width="2.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="976.57" y="831.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (40,404,040 samples, 0.26%)</title><rect x="373.3" y="677" width="3.6" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="376.25" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (535,353,530 samples, 3.46%)</title><rect x="478.7" y="853" width="47.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="481.71" y="863.5" >[lib..</text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="807.7" y="373" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="810.71" y="383.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (70,707,070 samples, 0.46%)</title><rect x="510.3" y="645" width="6.3" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="513.26" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="727.5" y="757" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="730.49" y="767.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (20,202,020 samples, 0.13%)</title><rect x="641.9" y="613" width="1.8" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="644.86" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.07%)</title><rect x="546.3" y="629" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="549.32" y="639.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.07%)</title><rect x="1253.9" y="597" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1256.89" y="607.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.07%)</title><rect x="350.7" y="693" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="353.72" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="744.6" y="709" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="747.62" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="450.8" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="453.77" y="719.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="598.6" y="725" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="601.60" y="735.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="808.6" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="811.62" y="655.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.07%)</title><rect x="754.5" y="693" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="757.53" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.07%)</title><rect x="1039.4" y="597" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1042.37" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="850.1" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="853.08" y="703.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (30,303,030 samples, 0.20%)</title><rect x="74.9" y="933" width="2.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="77.90" y="943.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.59%)</title><rect x="910.5" y="757" width="8.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="913.47" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1228.7" y="725" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1231.65" y="735.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (10,101,010 samples, 0.07%)</title><rect x="817.6" y="469" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="820.63" y="479.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.07%)</title><rect x="238.0" y="613" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="241.05" y="623.5" ></text>
+</g>
+<g >
+<title>napi_consume_skb (10,101,010 samples, 0.07%)</title><rect x="17.2" y="501" width="0.9" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="20.21" y="511.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (20,202,020 samples, 0.13%)</title><rect x="988.0" y="741" width="1.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="990.99" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="231.7" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="234.74" y="703.5" ></text>
+</g>
+<g >
+<title>process_backlog (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="325" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1368.66" y="335.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (10,101,010 samples, 0.07%)</title><rect x="1009.6" y="485" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1012.62" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="989.8" y="789" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="992.79" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="1249.4" y="741" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1252.39" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="778.9" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="781.87" y="815.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="43.4" y="789" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="46.35" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_connect (151,515,150 samples, 0.98%)</title><rect x="1376.5" y="885" width="13.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1379.48" y="895.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1222.3" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1225.34" y="623.5" ></text>
+</g>
+<g >
+<title>rw_verify_area (10,101,010 samples, 0.07%)</title><rect x="1363.9" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1366.86" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.07%)</title><rect x="197.5" y="437" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="200.49" y="447.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="333.6" y="533" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="336.59" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (131,313,130 samples, 0.85%)</title><rect x="462.5" y="773" width="11.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="465.49" y="783.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="660.8" y="533" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="663.79" y="543.5" ></text>
+</g>
+<g >
+<title>__fsnotify_parent (10,101,010 samples, 0.07%)</title><rect x="976.3" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="979.27" y="703.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.07%)</title><rect x="574.3" y="597" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="577.26" y="607.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.07%)</title><rect x="1207.0" y="549" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="1210.02" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (10,101,010 samples, 0.07%)</title><rect x="502.1" y="725" width="1.0" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="505.15" y="735.5" ></text>
+</g>
+<g >
+<title>net_send (121,212,120 samples, 0.78%)</title><rect x="1326.0" y="901" width="10.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1329.00" y="911.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="246.2" y="629" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="249.16" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.52%)</title><rect x="798.7" y="773" width="7.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="801.70" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.07%)</title><rect x="952.8" y="645" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="955.83" y="655.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.20%)</title><rect x="924.9" y="677" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="927.89" y="687.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (20,202,020 samples, 0.13%)</title><rect x="613.9" y="709" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="616.92" y="719.5" ></text>
+</g>
+<g >
+<title>mpage_submit_folio (10,101,010 samples, 0.07%)</title><rect x="916.8" y="517" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="919.78" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (10,101,010 samples, 0.07%)</title><rect x="465.2" y="613" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="468.19" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1063.7" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1066.70" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (20,202,020 samples, 0.13%)</title><rect x="1270.1" y="709" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1273.12" y="719.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.07%)</title><rect x="1131.3" y="613" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1134.31" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1222.3" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1225.34" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (60,606,060 samples, 0.39%)</title><rect x="944.7" y="533" width="5.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="947.72" y="543.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.07%)</title><rect x="1269.2" y="677" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1272.22" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1233.2" y="741" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1236.16" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.07%)</title><rect x="1069.1" y="661" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1072.11" y="671.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1099.8" y="485" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1102.76" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.07%)</title><rect x="814.9" y="469" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="817.92" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4fs_dirhash (10,101,010 samples, 0.07%)</title><rect x="682.4" y="645" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="685.42" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="1113.3" y="501" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1116.28" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="721.2" y="661" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="724.18" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (60,606,060 samples, 0.39%)</title><rect x="904.2" y="661" width="5.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="907.16" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.07%)</title><rect x="320.1" y="757" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="323.07" y="767.5" ></text>
+</g>
+<g >
+<title>tasklet_action_common.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="43.4" y="709" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="46.35" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="783.4" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="786.38" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (30,303,030 samples, 0.20%)</title><rect x="817.6" y="565" width="2.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="820.63" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="655.4" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="658.38" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1221.74" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="889.7" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="892.74" y="719.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="1125.9" y="453" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1128.90" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="770.8" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="773.76" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.07%)</title><rect x="94.7" y="725" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="97.73" y="735.5" ></text>
+</g>
+<g >
+<title>task_work_run (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="821" width="3.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1374.97" y="831.5" ></text>
+</g>
+<g >
+<title>__slab_free (10,101,010 samples, 0.07%)</title><rect x="227.2" y="389" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="230.23" y="399.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (20,202,020 samples, 0.13%)</title><rect x="893.3" y="693" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="896.34" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.26%)</title><rect x="1141.2" y="693" width="3.6" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1144.22" y="703.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.07%)</title><rect x="487.7" y="645" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="490.73" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (50,505,050 samples, 0.33%)</title><rect x="399.4" y="741" width="4.5" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="402.39" y="751.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="870.8" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="873.81" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="863.6" y="661" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="866.60" y="671.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (20,202,020 samples, 0.13%)</title><rect x="390.4" y="661" width="1.8" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="393.38" y="671.5" ></text>
+</g>
+<g >
+<title>iput (313,131,310 samples, 2.02%)</title><rect x="283.1" y="645" width="28.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="286.12" y="655.5" >i..</text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="743.7" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="746.72" y="639.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.07%)</title><rect x="1062.8" y="709" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1065.80" y="719.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.07%)</title><rect x="128.1" y="805" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="131.08" y="815.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="431.8" y="645" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="434.84" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="863.6" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="866.60" y="687.5" ></text>
+</g>
+<g >
+<title>charge_memcg (10,101,010 samples, 0.07%)</title><rect x="905.1" y="533" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="908.06" y="543.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="547.2" y="645" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="550.22" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="757.2" y="581" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="760.24" y="591.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="759.0" y="549" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="762.04" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="768.1" y="597" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="771.05" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_clone3 (141,414,140 samples, 0.91%)</title><rect x="27.1" y="997" width="12.6" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="30.13" y="1007.5" ></text>
+</g>
+<g >
+<title>mkdir (505,050,500 samples, 3.27%)</title><rect x="1129.5" y="821" width="45.1" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1132.50" y="831.5" >mkdir</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (181,818,180 samples, 1.18%)</title><rect x="757.2" y="773" width="16.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="760.24" y="783.5" ></text>
+</g>
+<g >
+<title>rename (40,404,040 samples, 0.26%)</title><rect x="769.9" y="741" width="3.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="772.86" y="751.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="1000.6" y="613" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1003.61" y="623.5" ></text>
+</g>
+<g >
+<title>__snprintf (10,101,010 samples, 0.07%)</title><rect x="20.8" y="949" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="23.82" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.20%)</title><rect x="129.0" y="789" width="2.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="131.98" y="799.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="373" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1343.42" y="383.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.07%)</title><rect x="543.6" y="757" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="546.61" y="767.5" ></text>
+</g>
+<g >
+<title>uncharge_batch (10,101,010 samples, 0.07%)</title><rect x="423.7" y="613" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="426.73" y="623.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.07%)</title><rect x="603.1" y="629" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="606.10" y="639.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="620.2" y="661" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="623.23" y="671.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (20,202,020 samples, 0.13%)</title><rect x="253.4" y="693" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="256.37" y="703.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.07%)</title><rect x="744.6" y="693" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="747.62" y="703.5" ></text>
+</g>
+<g >
+<title>ext4fs_dirhash (10,101,010 samples, 0.07%)</title><rect x="862.7" y="533" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="865.70" y="543.5" ></text>
+</g>
+<g >
+<title>mas_wr_walk (10,101,010 samples, 0.07%)</title><rect x="1291.8" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1294.75" y="703.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.07%)</title><rect x="1082.6" y="373" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1085.63" y="383.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.07%)</title><rect x="860.9" y="613" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="863.89" y="623.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.07%)</title><rect x="330.0" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="332.99" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="1197.1" y="757" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1200.11" y="767.5" ></text>
+</g>
+<g >
+<title>open64 (30,303,030 samples, 0.20%)</title><rect x="883.4" y="677" width="2.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="886.43" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.07%)</title><rect x="818.5" y="277" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="821.53" y="287.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (30,303,030 samples, 0.20%)</title><rect x="89.3" y="869" width="2.7" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="92.32" y="879.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.07%)</title><rect x="641.0" y="709" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="643.96" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.07%)</title><rect x="1176.4" y="789" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1179.37" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.07%)</title><rect x="1073.6" y="549" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1076.62" y="559.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (30,303,030 samples, 0.20%)</title><rect x="849.2" y="805" width="2.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="852.18" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (40,404,040 samples, 0.26%)</title><rect x="993.4" y="757" width="3.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="996.40" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="366.0" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="369.04" y="591.5" ></text>
+</g>
+<g >
+<title>lockref_put_return (10,101,010 samples, 0.07%)</title><rect x="653.6" y="613" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="656.58" y="623.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (40,404,040 samples, 0.26%)</title><rect x="1349.4" y="773" width="3.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1352.44" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (20,202,020 samples, 0.13%)</title><rect x="513.0" y="613" width="1.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="515.97" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="494.9" y="757" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="497.94" y="767.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.07%)</title><rect x="777.1" y="709" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="780.07" y="719.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.07%)</title><rect x="1167.4" y="517" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="1170.36" y="527.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="661" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1339.82" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.07%)</title><rect x="1015.0" y="597" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1018.03" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.20%)</title><rect x="924.9" y="581" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="927.89" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.07%)</title><rect x="784.3" y="581" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="787.28" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="761.7" y="645" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="764.74" y="655.5" ></text>
+</g>
+<g >
+<title>locked_inode_to_wb_and_lock_list (10,101,010 samples, 0.07%)</title><rect x="189.4" y="533" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="192.37" y="543.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="895.1" y="693" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="898.15" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="953.7" y="677" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="956.74" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="201.1" y="677" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="204.09" y="687.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.07%)</title><rect x="1212.4" y="613" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1215.43" y="623.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.07%)</title><rect x="793.3" y="533" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="796.29" y="543.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.07%)</title><rect x="595.0" y="549" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="597.99" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="410.2" y="613" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="413.21" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="621.1" y="773" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="624.13" y="783.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.07%)</title><rect x="1157.4" y="565" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="1160.45" y="575.5" ></text>
+</g>
+<g >
+<title>unlink_cb (121,212,120 samples, 0.78%)</title><rect x="330.0" y="789" width="10.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="332.99" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="877.1" y="645" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="880.12" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_getattr (10,101,010 samples, 0.07%)</title><rect x="454.4" y="645" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="457.38" y="655.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (10,101,010 samples, 0.07%)</title><rect x="1082.6" y="485" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1085.63" y="495.5" ></text>
+</g>
+<g >
+<title>ip_local_out (20,202,020 samples, 0.13%)</title><rect x="1370.2" y="645" width="1.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1373.17" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.07%)</title><rect x="437.3" y="597" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="440.25" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="729.3" y="517" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="732.29" y="527.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.07%)</title><rect x="545.4" y="741" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="548.41" y="751.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="642.8" y="517" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="645.76" y="527.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="809.5" y="677" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="812.52" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (20,202,020 samples, 0.13%)</title><rect x="274.1" y="613" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="277.10" y="623.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.07%)</title><rect x="559.8" y="821" width="0.9" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="562.84" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="923.1" y="661" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="926.09" y="671.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="1131.3" y="565" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1134.31" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="96.5" y="965" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="99.53" y="975.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1102.5" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1105.46" y="735.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.07%)</title><rect x="363.3" y="565" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="366.34" y="575.5" ></text>
+</g>
+<g >
+<title>json_object_put (10,101,010 samples, 0.07%)</title><rect x="1358.5" y="837" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="1361.45" y="847.5" ></text>
+</g>
+<g >
+<title>access (40,404,040 samples, 0.26%)</title><rect x="989.8" y="805" width="3.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="992.79" y="815.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.07%)</title><rect x="1131.3" y="629" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1134.31" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="21.7" y="917" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="24.72" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="1253.0" y="549" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1255.99" y="559.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="43.4" y="741" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="46.35" y="751.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.07%)</title><rect x="672.5" y="341" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="675.51" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (80,808,080 samples, 0.52%)</title><rect x="467.0" y="709" width="7.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="470.00" y="719.5" ></text>
+</g>
+<g >
+<title>tlb_remove_table_rcu (10,101,010 samples, 0.07%)</title><rect x="293.9" y="405" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="296.93" y="415.5" ></text>
+</g>
+<g >
+<title>__do_sys_clone (565,656,560 samples, 3.66%)</title><rect x="1256.6" y="805" width="50.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1259.60" y="815.5" >__do_..</text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="190.3" y="453" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="193.27" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="508.5" y="581" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="511.46" y="591.5" ></text>
+</g>
+<g >
+<title>inet_ehash_nolisten (10,101,010 samples, 0.07%)</title><rect x="1382.8" y="757" width="0.9" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1385.79" y="767.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.07%)</title><rect x="807.7" y="501" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="810.71" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (60,606,060 samples, 0.39%)</title><rect x="912.3" y="565" width="5.4" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="915.27" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="780.7" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="783.67" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="1317.0" y="805" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1319.99" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (50,505,050 samples, 0.33%)</title><rect x="1002.4" y="565" width="4.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1005.41" y="575.5" ></text>
+</g>
+<g >
+<title>pipe_write (30,303,030 samples, 0.20%)</title><rect x="79.4" y="757" width="2.7" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="82.41" y="767.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.07%)</title><rect x="818.5" y="421" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="821.53" y="431.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1310.7" y="837" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1313.68" y="847.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.07%)</title><rect x="603.1" y="645" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="606.10" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="710.4" y="533" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="713.37" y="543.5" ></text>
+</g>
+<g >
+<title>path_openat (30,303,030 samples, 0.20%)</title><rect x="616.6" y="677" width="2.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="619.62" y="687.5" ></text>
+</g>
+<g >
+<title>git_odb_free (10,101,010 samples, 0.07%)</title><rect x="181.3" y="869" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="184.26" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="1115.1" y="469" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1118.08" y="479.5" ></text>
+</g>
+<g >
+<title>apparmor_file_free_security (10,101,010 samples, 0.07%)</title><rect x="769.0" y="597" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="771.95" y="607.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (30,303,030 samples, 0.20%)</title><rect x="613.0" y="789" width="2.7" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="616.02" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="983.5" y="741" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="986.48" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="733.8" y="661" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="736.80" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (30,303,030 samples, 0.20%)</title><rect x="586.0" y="549" width="2.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="588.98" y="559.5" ></text>
+</g>
+<g >
+<title>new_inode_pseudo (10,101,010 samples, 0.07%)</title><rect x="1338.6" y="821" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1341.62" y="831.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,909,090,880 samples, 18.81%)</title><rect x="182.2" y="901" width="259.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="185.16" y="911.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.07%)</title><rect x="915.0" y="437" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="917.98" y="447.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (50,505,050 samples, 0.33%)</title><rect x="44.3" y="773" width="4.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="47.25" y="783.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.07%)</title><rect x="281.3" y="565" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="284.31" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (878,787,870 samples, 5.68%)</title><rect x="897.9" y="837" width="78.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="900.85" y="847.5" >[libgit2...</text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="958.2" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="961.24" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="583.3" y="581" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="586.27" y="591.5" ></text>
+</g>
+<g >
+<title>evict (10,101,010 samples, 0.07%)</title><rect x="53.3" y="661" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="56.27" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="359.7" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="362.73" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="776.2" y="645" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="779.17" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (252,525,250 samples, 1.63%)</title><rect x="118.2" y="837" width="22.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="121.16" y="847.5" >_..</text>
+</g>
+<g >
+<title>__mutex_init (10,101,010 samples, 0.07%)</title><rect x="951.0" y="485" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="954.03" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.07%)</title><rect x="542.7" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="545.71" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1233.46" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="645" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1221.74" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.07%)</title><rect x="952.8" y="613" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="955.83" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="727.5" y="741" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="730.49" y="751.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.07%)</title><rect x="903.3" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="906.26" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.07%)</title><rect x="1079.9" y="469" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="1082.93" y="479.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.07%)</title><rect x="1063.7" y="565" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1066.70" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.52%)</title><rect x="1189.0" y="821" width="7.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1191.99" y="831.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1102.5" y="629" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1105.46" y="639.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.07%)</title><rect x="802.3" y="709" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="805.31" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (20,202,020 samples, 0.13%)</title><rect x="343.5" y="709" width="1.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="346.51" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (181,818,180 samples, 1.18%)</title><rect x="1024.0" y="789" width="16.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1027.04" y="799.5" ></text>
+</g>
+<g >
+<title>hv_send_ipi_self (20,202,020 samples, 0.13%)</title><rect x="1381.0" y="629" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1383.99" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (80,808,080 samples, 0.52%)</title><rect x="509.4" y="661" width="7.2" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="512.36" y="671.5" ></text>
+</g>
+<g >
+<title>current_check_refer_path (10,101,010 samples, 0.07%)</title><rect x="1117.8" y="661" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="1120.79" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="852.8" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="855.78" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (60,606,060 samples, 0.39%)</title><rect x="1055.6" y="741" width="5.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1058.59" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1204.3" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1207.32" y="671.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (50,505,050 samples, 0.33%)</title><rect x="462.5" y="693" width="4.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="465.49" y="703.5" ></text>
+</g>
+<g >
+<title>kprobe_dispatcher (70,707,070 samples, 0.46%)</title><rect x="1342.2" y="757" width="6.3" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1345.23" y="767.5" ></text>
+</g>
+<g >
+<title>d_lru_add (10,101,010 samples, 0.07%)</title><rect x="350.7" y="677" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="353.72" y="687.5" ></text>
+</g>
+<g >
+<title>git_repository_open_ext (202,020,200 samples, 1.31%)</title><rect x="1227.8" y="869" width="18.0" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1230.75" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="858.2" y="629" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="861.19" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="865.4" y="661" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="868.40" y="671.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="677" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1233.46" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1354.8" y="869" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1357.85" y="879.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="455.3" y="789" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="458.28" y="799.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (20,202,020 samples, 0.13%)</title><rect x="16.3" y="597" width="1.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="19.31" y="607.5" ></text>
+</g>
+<g >
+<title>do_filp_open (30,303,030 samples, 0.20%)</title><rect x="749.1" y="565" width="2.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="752.12" y="575.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="805.9" y="709" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="808.91" y="719.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (20,202,020 samples, 0.13%)</title><rect x="668.9" y="501" width="1.8" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="671.90" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (60,606,060 samples, 0.39%)</title><rect x="643.7" y="629" width="5.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="646.66" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="1221.4" y="613" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1224.44" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1203.4" y="661" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1206.42" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="767.2" y="629" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="770.15" y="639.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.07%)</title><rect x="739.2" y="645" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="742.21" y="655.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (60,606,060 samples, 0.39%)</title><rect x="457.1" y="789" width="5.4" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="460.08" y="799.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (10,101,010 samples, 0.07%)</title><rect x="229.9" y="581" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="232.93" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="144.3" y="789" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="147.30" y="799.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.07%)</title><rect x="1067.3" y="645" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1070.31" y="655.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1216.0" y="741" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1219.04" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.33%)</title><rect x="1106.1" y="741" width="4.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1109.07" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="803.2" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="806.21" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (1,040,404,030 samples, 6.73%)</title><rect x="82.1" y="1029" width="92.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="85.11" y="1039.5" >[libgit2.so..</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.65%)</title><rect x="745.5" y="693" width="9.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="748.52" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1012.3" y="325" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1015.33" y="335.5" ></text>
+</g>
+<g >
+<title>link (40,404,040 samples, 0.26%)</title><rect x="787.0" y="773" width="3.6" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="789.98" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="243.5" y="581" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="246.46" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_v4_conn_request (20,202,020 samples, 0.13%)</title><rect x="1387.3" y="357" width="1.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1390.30" y="367.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="1190.8" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1193.80" y="671.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.07%)</title><rect x="1053.8" y="677" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1056.79" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (101,010,100 samples, 0.65%)</title><rect x="302.0" y="565" width="9.1" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="305.04" y="575.5" ></text>
+</g>
+<g >
+<title>iput (80,808,080 samples, 0.52%)</title><rect x="1110.6" y="613" width="7.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1113.57" y="623.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="1015.0" y="325" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1018.03" y="335.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1069.1" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1072.11" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_read_block_bitmap (10,101,010 samples, 0.07%)</title><rect x="591.4" y="517" width="0.9" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="594.38" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="894.2" y="565" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="897.25" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_read (20,202,020 samples, 0.13%)</title><rect x="1310.7" y="789" width="1.8" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1313.68" y="799.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.07%)</title><rect x="577.9" y="581" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="580.86" y="591.5" ></text>
+</g>
+<g >
+<title>net_recv (40,404,040 samples, 0.26%)</title><rect x="1363.9" y="853" width="3.6" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1366.86" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="220.9" y="533" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="223.92" y="543.5" ></text>
+</g>
+<g >
+<title>getdents64 (10,101,010 samples, 0.07%)</title><rect x="193.9" y="693" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="196.88" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="526.5" y="789" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="529.49" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="23.5" y="917" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="26.52" y="927.5" ></text>
+</g>
+<g >
+<title>git_signature_default (40,404,040 samples, 0.26%)</title><rect x="773.5" y="773" width="3.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="776.46" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.07%)</title><rect x="937.5" y="565" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="940.51" y="575.5" ></text>
+</g>
+<g >
+<title>dput (20,202,020 samples, 0.13%)</title><rect x="769.9" y="661" width="1.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="772.86" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (101,010,100 samples, 0.65%)</title><rect x="220.9" y="581" width="9.0" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="223.92" y="591.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.07%)</title><rect x="174.0" y="853" width="1.0" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="177.05" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.07%)</title><rect x="1212.4" y="597" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1215.43" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (10,101,010 samples, 0.07%)</title><rect x="506.7" y="661" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="509.66" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="1044.8" y="597" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1047.77" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="1049.3" y="773" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1052.28" y="783.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.07%)</title><rect x="886.1" y="693" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="889.13" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (30,303,030 samples, 0.20%)</title><rect x="96.5" y="885" width="2.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="99.53" y="895.5" ></text>
+</g>
+<g >
+<title>inet_create (10,101,010 samples, 0.07%)</title><rect x="1337.7" y="837" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1340.72" y="847.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (20,202,020 samples, 0.13%)</title><rect x="912.3" y="469" width="1.8" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="915.27" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="1075.4" y="485" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1078.42" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1207.0" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1210.02" y="703.5" ></text>
+</g>
+<g >
+<title>net_accept (20,202,020 samples, 0.13%)</title><rect x="72.2" y="901" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="75.19" y="911.5" ></text>
+</g>
+<g >
+<title>filemap_get_pages (10,101,010 samples, 0.07%)</title><rect x="536.4" y="565" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="539.40" y="575.5" ></text>
+</g>
+<g >
+<title>d_same_name (10,101,010 samples, 0.07%)</title><rect x="115.5" y="837" width="0.9" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="118.46" y="847.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="878.9" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="881.92" y="671.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.07%)</title><rect x="293.9" y="517" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="296.93" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (30,303,030 samples, 0.20%)</title><rect x="331.8" y="645" width="2.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="334.79" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.07%)</title><rect x="901.5" y="661" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="904.46" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (30,303,030 samples, 0.20%)</title><rect x="705.0" y="565" width="2.7" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="707.96" y="575.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="485" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1368.66" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="877.1" y="661" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="880.12" y="671.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="328.2" y="645" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="331.18" y="655.5" ></text>
+</g>
+<g >
+<title>iterate_dir (10,101,010 samples, 0.07%)</title><rect x="211.9" y="661" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="214.91" y="671.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.07%)</title><rect x="237.1" y="645" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="240.15" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (30,303,030 samples, 0.20%)</title><rect x="286.7" y="533" width="2.7" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="289.72" y="543.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="467.0" y="645" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="470.00" y="655.5" ></text>
+</g>
+<g >
+<title>main (454,545,450 samples, 2.94%)</title><rect x="41.5" y="997" width="40.6" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="44.55" y="1007.5" >main</text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="650.9" y="613" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="653.88" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="435.4" y="677" width="1.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="438.45" y="687.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="469" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1084.73" y="479.5" ></text>
+</g>
+<g >
+<title>inode_init_always (10,101,010 samples, 0.07%)</title><rect x="139.8" y="789" width="0.9" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="142.80" y="799.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="758.1" y="549" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="761.14" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (161,616,160 samples, 1.05%)</title><rect x="27.1" y="1029" width="14.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="30.13" y="1039.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.07%)</title><rect x="370.5" y="565" width="1.0" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="373.55" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1188.1" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1191.09" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.59%)</title><rect x="421.0" y="805" width="8.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="424.03" y="815.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.07%)</title><rect x="818.5" y="325" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="821.53" y="335.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (10,101,010 samples, 0.07%)</title><rect x="511.2" y="597" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="514.16" y="607.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.07%)</title><rect x="1307.1" y="805" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1310.07" y="815.5" ></text>
+</g>
+<g >
+<title>bit_wait_io (10,101,010 samples, 0.07%)</title><rect x="473.3" y="581" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="476.31" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="1191.7" y="677" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1194.70" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (10,101,010 samples, 0.07%)</title><rect x="1039.4" y="565" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1042.37" y="575.5" ></text>
+</g>
+<g >
+<title>git_reference_create (323,232,320 samples, 2.09%)</title><rect x="449.0" y="885" width="28.8" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="451.97" y="895.5" >gi..</text>
+</g>
+<g >
+<title>copyin (10,101,010 samples, 0.07%)</title><rect x="1096.2" y="581" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1099.15" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="553.5" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="556.53" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="437.3" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="440.25" y="543.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="878.9" y="645" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="881.92" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="163.2" y="965" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="166.23" y="975.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (10,101,010 samples, 0.07%)</title><rect x="1371.1" y="581" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1374.07" y="591.5" ></text>
+</g>
+<g >
+<title>cimple-worker (14,656,565,510 samples, 94.77%)</title><rect x="82.1" y="1061" width="1307.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="85.11" y="1071.5" >cimple-worker</text>
+</g>
+<g >
+<title>ext4_fname_from_fscrypt_name (10,101,010 samples, 0.07%)</title><rect x="91.1" y="853" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="94.12" y="863.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="491.3" y="629" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="494.33" y="639.5" ></text>
+</g>
+<g >
+<title>ip_rcv (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="277" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1368.66" y="287.5" ></text>
+</g>
+<g >
+<title>lock_vma_under_rcu (10,101,010 samples, 0.07%)</title><rect x="430.9" y="773" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="433.94" y="783.5" ></text>
+</g>
+<g >
+<title>release_pages (10,101,010 samples, 0.07%)</title><rect x="815.8" y="533" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="818.83" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="805.0" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="808.01" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.07%)</title><rect x="465.2" y="517" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="468.19" y="527.5" ></text>
+</g>
+<g >
+<title>tcp_v6_syn_recv_sock (10,101,010 samples, 0.07%)</title><rect x="1378.3" y="293" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1381.28" y="303.5" ></text>
+</g>
+<g >
+<title>generic_permission (20,202,020 samples, 0.13%)</title><rect x="692.3" y="517" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="695.34" y="527.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.07%)</title><rect x="491.3" y="597" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="494.33" y="607.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1042.1" y="597" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1045.07" y="607.5" ></text>
+</g>
+<g >
+<title>task_work_run (30,303,030 samples, 0.20%)</title><rect x="651.8" y="661" width="2.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="654.78" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (20,202,020 samples, 0.13%)</title><rect x="147.9" y="773" width="1.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="150.91" y="783.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.07%)</title><rect x="931.2" y="677" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="934.20" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="852.8" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="855.78" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="769.9" y="533" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="772.86" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (101,010,100 samples, 0.65%)</title><rect x="1247.6" y="885" width="9.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1250.58" y="895.5" ></text>
+</g>
+<g >
+<title>dentry_kill (50,505,050 samples, 0.33%)</title><rect x="1002.4" y="645" width="4.5" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1005.41" y="655.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.07%)</title><rect x="916.8" y="533" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="919.78" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.07%)</title><rect x="1118.7" y="629" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1121.69" y="639.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.07%)</title><rect x="1069.1" y="581" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="1072.11" y="591.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.07%)</title><rect x="62.3" y="53" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="65.28" y="63.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1194.4" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1197.40" y="735.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (20,202,020 samples, 0.13%)</title><rect x="400.3" y="645" width="1.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="403.29" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="856.4" y="581" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="859.39" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (2,464,646,440 samples, 15.94%)</title><rect x="560.7" y="853" width="220.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="563.74" y="863.5" >[libgit2.so.1.1.0]</text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (20,202,020 samples, 0.13%)</title><rect x="120.0" y="821" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="122.97" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.07%)</title><rect x="377.8" y="789" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="380.76" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.13%)</title><rect x="914.1" y="517" width="1.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="917.08" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="12.7" y="837" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="15.70" y="847.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="1188.1" y="629" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1191.09" y="639.5" ></text>
+</g>
+<g >
+<title>vma_dup_policy (10,101,010 samples, 0.07%)</title><rect x="1302.6" y="725" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1305.57" y="735.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (10,101,010 samples, 0.07%)</title><rect x="1372.0" y="533" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1374.97" y="543.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.07%)</title><rect x="412.0" y="565" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="415.01" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="386.8" y="501" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="389.77" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.07%)</title><rect x="465.2" y="533" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="468.19" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="791.5" y="709" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="794.49" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="773.5" y="709" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="776.46" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="496.7" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="499.74" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.07%)</title><rect x="431.8" y="757" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="434.84" y="767.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="813.1" y="453" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="816.12" y="463.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="758.1" y="629" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="761.14" y="639.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="549.0" y="661" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="552.02" y="671.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="1250.3" y="661" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1253.29" y="671.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.07%)</title><rect x="803.2" y="613" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="806.21" y="623.5" ></text>
+</g>
+<g >
+<title>__jbd2_log_wait_for_space (10,101,010 samples, 0.07%)</title><rect x="1073.6" y="485" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1076.62" y="495.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode_prepare (10,101,010 samples, 0.07%)</title><rect x="11.8" y="853" width="0.9" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="14.80" y="863.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="339.0" y="581" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="342.00" y="591.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.07%)</title><rect x="450.8" y="645" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="453.77" y="655.5" ></text>
+</g>
+<g >
+<title>rename (121,212,120 samples, 0.78%)</title><rect x="810.4" y="773" width="10.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="813.42" y="783.5" ></text>
+</g>
+<g >
+<title>_copy_to_user (10,101,010 samples, 0.07%)</title><rect x="201.1" y="629" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="204.09" y="639.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited (10,101,010 samples, 0.07%)</title><rect x="1049.3" y="661" width="0.9" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="1052.28" y="671.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="301.1" y="517" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="304.14" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (30,303,030 samples, 0.20%)</title><rect x="662.6" y="533" width="2.7" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="665.59" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="737.4" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="740.41" y="735.5" ></text>
+</g>
+<g >
+<title>closedir (10,101,010 samples, 0.07%)</title><rect x="615.7" y="789" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="618.72" y="799.5" ></text>
+</g>
+<g >
+<title>__wake_up (10,101,010 samples, 0.07%)</title><rect x="933.0" y="533" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="936.00" y="543.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.07%)</title><rect x="1357.6" y="789" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1360.55" y="799.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1116.0" y="437" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1118.98" y="447.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (131,313,130 samples, 0.85%)</title><rect x="462.5" y="757" width="11.7" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="465.49" y="767.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.07%)</title><rect x="767.2" y="533" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="770.15" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="281.3" y="581" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="284.31" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="920.4" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="923.39" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (212,121,210 samples, 1.37%)</title><rect x="1110.6" y="709" width="18.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1113.57" y="719.5" ></text>
+</g>
+<g >
+<title>security_path_rename (10,101,010 samples, 0.07%)</title><rect x="1117.8" y="677" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1120.79" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="494.9" y="773" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="497.94" y="783.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1192.6" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1195.60" y="655.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.20%)</title><rect x="238.0" y="757" width="2.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="241.05" y="767.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="135.3" y="789" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="138.29" y="799.5" ></text>
+</g>
+<g >
+<title>__submit_bio (10,101,010 samples, 0.07%)</title><rect x="1122.3" y="453" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1125.29" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (434,343,430 samples, 2.81%)</title><rect x="1090.7" y="789" width="38.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1093.74" y="799.5" >[li..</text>
+</g>
+<g >
+<title>git_odb_read_header (20,202,020 samples, 0.13%)</title><rect x="721.2" y="789" width="1.8" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="724.18" y="799.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="389" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1084.73" y="399.5" ></text>
+</g>
+<g >
+<title>folio_create_empty_buffers (10,101,010 samples, 0.07%)</title><rect x="784.3" y="549" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="787.28" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="553.5" y="837" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="556.53" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (70,707,070 samples, 0.46%)</title><rect x="323.7" y="741" width="6.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="326.68" y="751.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.07%)</title><rect x="555.3" y="613" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="558.33" y="623.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="633.7" y="661" width="1.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="636.75" y="671.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1237.7" y="677" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1240.67" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (90,909,090 samples, 0.59%)</title><rect x="1119.6" y="549" width="8.1" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1122.59" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (30,303,030 samples, 0.20%)</title><rect x="93.8" y="805" width="2.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="96.83" y="815.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (20,202,020 samples, 0.13%)</title><rect x="759.9" y="565" width="1.8" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="762.94" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="1197.1" y="773" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1200.11" y="783.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="363.3" y="597" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="366.34" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="494.0" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="497.04" y="767.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.07%)</title><rect x="1316.1" y="837" width="0.9" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="1319.09" y="847.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="961.8" y="581" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="964.85" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (60,606,060 samples, 0.39%)</title><rect x="944.7" y="501" width="5.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="947.72" y="511.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="945.6" y="389" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="948.62" y="399.5" ></text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.07%)</title><rect x="220.9" y="517" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="223.92" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (191,919,190 samples, 1.24%)</title><rect x="214.6" y="677" width="17.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="217.61" y="687.5" ></text>
+</g>
+<g >
+<title>do_symlinkat (10,101,010 samples, 0.07%)</title><rect x="1041.2" y="741" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1044.17" y="751.5" ></text>
+</g>
+<g >
+<title>__inet_stream_connect (151,515,150 samples, 0.98%)</title><rect x="1339.5" y="821" width="13.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1342.52" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="833.0" y="517" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="835.95" y="527.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (10,101,010 samples, 0.07%)</title><rect x="1009.6" y="469" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1012.62" y="479.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="753.6" y="597" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="756.63" y="607.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (464,646,460 samples, 3.00%)</title><rect x="638.3" y="821" width="41.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="641.26" y="831.5" >git..</text>
+</g>
+<g >
+<title>do_sys_openat2 (40,404,040 samples, 0.26%)</title><rect x="457.1" y="613" width="3.6" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="460.08" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="865.4" y="645" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="868.40" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="1032.2" y="565" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1035.16" y="575.5" ></text>
+</g>
+<g >
+<title>__remove_inode_hash (10,101,010 samples, 0.07%)</title><rect x="330.9" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="333.89" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="1188.1" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1191.09" y="687.5" ></text>
+</g>
+<g >
+<title>__wake_up (10,101,010 samples, 0.07%)</title><rect x="1059.2" y="581" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1062.20" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="727.5" y="709" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="730.49" y="719.5" ></text>
+</g>
+<g >
+<title>ksys_write (40,404,040 samples, 0.26%)</title><rect x="1317.0" y="757" width="3.6" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1319.99" y="767.5" ></text>
+</g>
+<g >
+<title>d_instantiate_new (10,101,010 samples, 0.07%)</title><rect x="932.1" y="597" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="935.10" y="607.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.07%)</title><rect x="1204.3" y="613" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1207.32" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="595.9" y="725" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="598.89" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="907.8" y="565" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="910.77" y="575.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.07%)</title><rect x="906.0" y="565" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="908.96" y="575.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="782.5" y="597" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="785.48" y="607.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.07%)</title><rect x="976.3" y="709" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="979.27" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="1314.3" y="805" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1317.28" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="414.7" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="417.72" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="896.9" y="773" width="1.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="899.95" y="783.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="604.0" y="661" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="607.00" y="671.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.07%)</title><rect x="988.9" y="661" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="991.89" y="671.5" ></text>
+</g>
+<g >
+<title>mas_walk (10,101,010 samples, 0.07%)</title><rect x="1309.8" y="789" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1312.78" y="799.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="199.3" y="565" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="202.29" y="575.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.07%)</title><rect x="933.0" y="549" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="936.00" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="248.9" y="581" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="251.86" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1181.8" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1184.78" y="799.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="954.6" y="565" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="957.64" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="539.1" y="837" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="542.11" y="847.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="373" width="2.7" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1381.28" y="383.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.07%)</title><rect x="1372.0" y="565" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1374.97" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="700.5" y="693" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="703.45" y="703.5" ></text>
+</g>
+<g >
+<title>__blk_mq_end_request (10,101,010 samples, 0.07%)</title><rect x="672.5" y="325" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="675.51" y="335.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="993.4" y="677" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="996.40" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (80,808,080 samples, 0.52%)</title><rect x="421.9" y="773" width="7.2" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="424.93" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.07%)</title><rect x="524.7" y="725" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="527.68" y="735.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (40,404,040 samples, 0.26%)</title><rect x="1317.0" y="837" width="3.6" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="1319.99" y="847.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.07%)</title><rect x="279.5" y="581" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="282.51" y="591.5" ></text>
+</g>
+<g >
+<title>connect (151,515,150 samples, 0.98%)</title><rect x="1339.5" y="933" width="13.5" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1342.52" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (30,303,030 samples, 0.20%)</title><rect x="947.4" y="469" width="2.7" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="950.43" y="479.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="531.0" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="533.99" y="767.5" ></text>
+</g>
+<g >
+<title>git_revparse_ext (50,505,050 samples, 0.33%)</title><rect x="553.5" y="885" width="4.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="556.53" y="895.5" ></text>
+</g>
+<g >
+<title>append_event (10,101,010 samples, 0.07%)</title><rect x="65.9" y="917" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="68.89" y="927.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.07%)</title><rect x="549.0" y="757" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="552.02" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="514.8" y="533" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="517.77" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="543.6" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="546.61" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1228.7" y="757" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1231.65" y="767.5" ></text>
+</g>
+<g >
+<title>charge_memcg (10,101,010 samples, 0.07%)</title><rect x="511.2" y="549" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="514.16" y="559.5" ></text>
+</g>
+<g >
+<title>lockref_get_not_dead (10,101,010 samples, 0.07%)</title><rect x="1240.4" y="597" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1243.37" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (777,777,770 samples, 5.03%)</title><rect x="183.1" y="773" width="69.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="186.06" y="783.5" >[libc.s..</text>
+</g>
+<g >
+<title>inflate (30,303,030 samples, 0.20%)</title><rect x="518.4" y="725" width="2.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="521.37" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1206.1" y="645" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1209.12" y="655.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.07%)</title><rect x="431.8" y="725" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="434.84" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="1133.1" y="661" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1136.11" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="202.0" y="629" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="204.99" y="639.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="357" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1343.42" y="367.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (30,303,030 samples, 0.20%)</title><rect x="129.0" y="741" width="2.7" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="131.98" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.59%)</title><rect x="260.6" y="741" width="8.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="263.58" y="751.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.07%)</title><rect x="1316.1" y="853" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1319.09" y="863.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.07%)</title><rect x="571.6" y="501" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="574.55" y="511.5" ></text>
+</g>
+<g >
+<title>libjson_send (50,505,050 samples, 0.33%)</title><rect x="1367.5" y="933" width="4.5" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1370.47" y="943.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="1226.0" y="629" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1228.95" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (272,727,270 samples, 1.76%)</title><rect x="478.7" y="805" width="24.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="481.71" y="815.5" >[..</text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.07%)</title><rect x="1000.6" y="565" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1003.61" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (30,303,030 samples, 0.20%)</title><rect x="1386.4" y="389" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1389.39" y="399.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="745.5" y="645" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="748.52" y="655.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="737.4" y="629" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="740.41" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1145.7" y="645" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1148.73" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="485.9" y="709" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="488.92" y="719.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (10,101,010 samples, 0.07%)</title><rect x="62.3" y="101" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="65.28" y="111.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.07%)</title><rect x="887.0" y="581" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="890.03" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (20,202,020 samples, 0.13%)</title><rect x="371.5" y="549" width="1.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="374.45" y="559.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (50,505,050 samples, 0.33%)</title><rect x="58.7" y="229" width="4.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="61.67" y="239.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (111,111,110 samples, 0.72%)</title><rect x="899.7" y="789" width="9.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="902.65" y="799.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (40,404,040 samples, 0.26%)</title><rect x="673.4" y="517" width="3.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="676.41" y="527.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="43.4" y="773" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="46.35" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (121,212,120 samples, 0.78%)</title><rect x="330.0" y="725" width="10.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="332.99" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.20%)</title><rect x="491.3" y="661" width="2.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="494.33" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (20,202,020 samples, 0.13%)</title><rect x="718.5" y="709" width="1.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="721.48" y="719.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.07%)</title><rect x="853.7" y="677" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="856.68" y="687.5" ></text>
+</g>
+<g >
+<title>client_create (60,606,060 samples, 0.39%)</title><rect x="66.8" y="901" width="5.4" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="69.79" y="911.5" ></text>
+</g>
+<g >
+<title>dget_parent (10,101,010 samples, 0.07%)</title><rect x="750.9" y="453" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="753.93" y="463.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (90,909,090 samples, 0.59%)</title><rect x="1201.6" y="789" width="8.1" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1204.61" y="799.5" ></text>
+</g>
+<g >
+<title>write (40,404,040 samples, 0.26%)</title><rect x="1317.0" y="821" width="3.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1319.99" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="455.3" y="741" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="458.28" y="751.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="550.8" y="517" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="553.82" y="527.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="794.2" y="725" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="797.19" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1197.1" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1200.11" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.07%)</title><rect x="163.2" y="917" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="166.23" y="927.5" ></text>
+</g>
+<g >
+<title>net_close (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="949" width="0.9" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1339.82" y="959.5" ></text>
+</g>
+<g >
+<title>evict (181,818,180 samples, 1.18%)</title><rect x="357.0" y="661" width="16.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="360.03" y="671.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.07%)</title><rect x="976.3" y="757" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="979.27" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.46%)</title><rect x="730.2" y="789" width="6.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="733.20" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="273.2" y="597" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="276.20" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (30,303,030 samples, 0.20%)</title><rect x="1224.1" y="677" width="2.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1227.15" y="687.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="983.5" y="709" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="986.48" y="719.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_bh (10,101,010 samples, 0.07%)</title><rect x="1384.6" y="629" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1387.59" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="192.1" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="195.08" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (50,505,050 samples, 0.33%)</title><rect x="1367.5" y="821" width="4.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1370.47" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="248.0" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="250.96" y="559.5" ></text>
+</g>
+<g >
+<title>__ctype_b_loc (10,101,010 samples, 0.07%)</title><rect x="649.1" y="741" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="652.07" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.07%)</title><rect x="835.7" y="533" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="838.66" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.07%)</title><rect x="197.5" y="453" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="200.49" y="463.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (20,202,020 samples, 0.13%)</title><rect x="550.8" y="645" width="1.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="553.82" y="655.5" ></text>
+</g>
+<g >
+<title>sock_alloc_file (10,101,010 samples, 0.07%)</title><rect x="1375.6" y="853" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1378.58" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (20,202,020 samples, 0.13%)</title><rect x="540.0" y="565" width="1.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="543.01" y="575.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.07%)</title><rect x="769.0" y="645" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="771.95" y="655.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="837" width="3.6" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1374.97" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_link (20,202,020 samples, 0.13%)</title><rect x="787.9" y="661" width="1.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="790.88" y="671.5" ></text>
+</g>
+<g >
+<title>dd_dispatch_request (10,101,010 samples, 0.07%)</title><rect x="1121.4" y="373" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1124.39" y="383.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (10,101,010 samples, 0.07%)</title><rect x="905.1" y="565" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="908.06" y="575.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.07%)</title><rect x="92.0" y="757" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="95.02" y="767.5" ></text>
+</g>
+<g >
+<title>copy_process (90,909,090 samples, 0.59%)</title><rect x="30.7" y="949" width="8.1" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="33.73" y="959.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="782.5" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="785.48" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.07%)</title><rect x="1102.5" y="693" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1105.46" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (212,121,210 samples, 1.37%)</title><rect x="899.7" y="805" width="18.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="902.65" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1186.3" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1189.29" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="201.1" y="661" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="204.09" y="671.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="550.8" y="565" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="553.82" y="575.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="293" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1343.42" y="303.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.07%)</title><rect x="700.5" y="405" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="703.45" y="415.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="971.8" y="677" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="974.76" y="687.5" ></text>
+</g>
+<g >
+<title>server_main_thread (181,818,180 samples, 1.18%)</title><rect x="10.9" y="1013" width="16.2" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="13.90" y="1023.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.33%)</title><rect x="1367.5" y="853" width="4.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1370.47" y="863.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.07%)</title><rect x="484.1" y="693" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="487.12" y="703.5" ></text>
+</g>
+<g >
+<title>printbuf_memappend (10,101,010 samples, 0.07%)</title><rect x="13.6" y="853" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="16.61" y="863.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="549.0" y="677" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="552.02" y="687.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="1152.0" y="661" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1155.04" y="671.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="734.7" y="501" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="737.70" y="511.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.07%)</title><rect x="991.6" y="613" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="994.59" y="623.5" ></text>
+</g>
+<g >
+<title>tasklet_action (10,101,010 samples, 0.07%)</title><rect x="1198.0" y="629" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1201.01" y="639.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="266.9" y="517" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="269.89" y="527.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.07%)</title><rect x="198.4" y="389" width="0.9" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="201.39" y="399.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="846.5" y="485" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="849.47" y="495.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (20,202,020 samples, 0.13%)</title><rect x="1339.5" y="677" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1342.52" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.20%)</title><rect x="521.1" y="677" width="2.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="524.08" y="687.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.07%)</title><rect x="700.5" y="373" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="703.45" y="383.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (70,707,070 samples, 0.46%)</title><rect x="434.5" y="789" width="6.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="437.55" y="799.5" ></text>
+</g>
+<g >
+<title>from_kgid_munged (10,101,010 samples, 0.07%)</title><rect x="595.9" y="677" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="598.89" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="952.8" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="955.83" y="671.5" ></text>
+</g>
+<g >
+<title>evict (40,404,040 samples, 0.26%)</title><rect x="463.4" y="645" width="3.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="466.39" y="655.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.07%)</title><rect x="816.7" y="453" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="819.73" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_writepage_trans_blocks (10,101,010 samples, 0.07%)</title><rect x="836.6" y="581" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="839.56" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="429.1" y="821" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="432.14" y="831.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.07%)</title><rect x="441.8" y="837" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="444.76" y="847.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.07%)</title><rect x="1315.2" y="741" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1318.19" y="751.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.07%)</title><rect x="199.3" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="202.29" y="607.5" ></text>
+</g>
+<g >
+<title>git_attr_add_macro (10,101,010 samples, 0.07%)</title><rect x="496.7" y="789" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="499.74" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.07%)</title><rect x="1036.7" y="581" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1039.66" y="591.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.07%)</title><rect x="489.5" y="773" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="492.53" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="1016.8" y="645" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1019.83" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1253.9" y="613" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1256.89" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1066.4" y="677" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1069.41" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_check_req (10,101,010 samples, 0.07%)</title><rect x="1378.3" y="309" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1381.28" y="319.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.52%)</title><rect x="1016.8" y="789" width="7.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1019.83" y="799.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.07%)</title><rect x="1015.0" y="437" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1018.03" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="1011.4" y="373" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1014.42" y="383.5" ></text>
+</g>
+<g >
+<title>unlock_buffer (10,101,010 samples, 0.07%)</title><rect x="1088.9" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1091.94" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="1032.2" y="549" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1035.16" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="747.3" y="613" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="750.32" y="623.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="951.0" y="693" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="954.03" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="1221.4" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1224.44" y="639.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (20,202,020 samples, 0.13%)</title><rect x="924.9" y="517" width="1.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="927.89" y="527.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.07%)</title><rect x="523.8" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="526.78" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (111,111,110 samples, 0.72%)</title><rect x="878.9" y="789" width="9.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="881.92" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="920.4" y="661" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="923.39" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_dispatch_cmd (10,101,010 samples, 0.07%)</title><rect x="912.3" y="373" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="915.27" y="383.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1220.5" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1223.54" y="719.5" ></text>
+</g>
+<g >
+<title>file_close (141,414,140 samples, 0.91%)</title><rect x="52.4" y="885" width="12.6" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="55.36" y="895.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="912.3" y="309" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="915.27" y="319.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (30,303,030 samples, 0.20%)</title><rect x="1097.1" y="517" width="2.7" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1100.05" y="527.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="1226.9" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1229.85" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.20%)</title><rect x="928.5" y="597" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="931.50" y="607.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="574.3" y="613" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="577.26" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1245.8" y="837" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1248.78" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="564.3" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="567.34" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4fs_dirhash (20,202,020 samples, 0.13%)</title><rect x="626.5" y="613" width="1.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="629.54" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.20%)</title><rect x="238.0" y="661" width="2.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="241.05" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (111,111,110 samples, 0.72%)</title><rect x="780.7" y="805" width="9.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="783.67" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="896.9" y="741" width="1.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="899.95" y="751.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (20,202,020 samples, 0.13%)</title><rect x="550.8" y="693" width="1.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="553.82" y="703.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.07%)</title><rect x="1172.8" y="661" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1175.77" y="671.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.07%)</title><rect x="75.8" y="885" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="78.80" y="895.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (171,717,170 samples, 1.11%)</title><rect x="184.9" y="725" width="15.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="187.87" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="751.8" y="549" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="754.83" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="781.6" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="784.57" y="735.5" ></text>
+</g>
+<g >
+<title>filemap_flush (90,909,090 samples, 0.59%)</title><rect x="1119.6" y="613" width="8.1" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1122.59" y="623.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="501" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1221.74" y="511.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.07%)</title><rect x="567.0" y="645" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="570.05" y="655.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (10,101,010 samples, 0.07%)</title><rect x="860.9" y="677" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="863.89" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="348.0" y="565" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="351.01" y="575.5" ></text>
+</g>
+<g >
+<title>do_softirq (80,808,080 samples, 0.52%)</title><rect x="1327.8" y="517" width="7.2" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1330.81" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="686.0" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="689.03" y="719.5" ></text>
+</g>
+<g >
+<title>storvsc_do_io (10,101,010 samples, 0.07%)</title><rect x="668.9" y="325" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="671.90" y="335.5" ></text>
+</g>
+<g >
+<title>kmalloc_reserve (10,101,010 samples, 0.07%)</title><rect x="19.9" y="741" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="22.92" y="751.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="780.7" y="645" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="783.67" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="685.1" y="821" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="688.13" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (30,303,030 samples, 0.20%)</title><rect x="468.8" y="549" width="2.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="471.80" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="777.1" y="773" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="780.07" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (20,202,020 samples, 0.13%)</title><rect x="171.3" y="837" width="1.8" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="174.35" y="847.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (20,202,020 samples, 0.13%)</title><rect x="55.1" y="613" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="58.07" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="1034.9" y="565" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1037.86" y="575.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="954.6" y="581" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="957.64" y="591.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (60,606,060 samples, 0.39%)</title><rect x="1096.2" y="597" width="5.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="1099.15" y="607.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.07%)</title><rect x="882.5" y="661" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="885.53" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="395.8" y="645" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="398.79" y="655.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="661" width="2.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1381.28" y="671.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.07%)</title><rect x="1176.4" y="837" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1179.37" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="1011.4" y="405" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1014.42" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (30,303,030 samples, 0.20%)</title><rect x="468.8" y="533" width="2.7" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="471.80" y="543.5" ></text>
+</g>
+<g >
+<title>mpage_submit_folio (10,101,010 samples, 0.07%)</title><rect x="844.7" y="501" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="847.67" y="511.5" ></text>
+</g>
+<g >
+<title>__wake_up (10,101,010 samples, 0.07%)</title><rect x="1131.3" y="661" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1134.31" y="671.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.07%)</title><rect x="767.2" y="597" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="770.15" y="607.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="901.5" y="533" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="904.46" y="543.5" ></text>
+</g>
+<g >
+<title>ksys_read (20,202,020 samples, 0.13%)</title><rect x="728.4" y="645" width="1.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="731.39" y="655.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.07%)</title><rect x="1084.4" y="373" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1087.44" y="383.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.07%)</title><rect x="1107.0" y="677" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1109.97" y="687.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (30,303,030 samples, 0.20%)</title><rect x="79.4" y="869" width="2.7" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="82.41" y="879.5" ></text>
+</g>
+<g >
+<title>my_chdir (20,202,020 samples, 0.13%)</title><rect x="1320.6" y="933" width="1.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1323.59" y="943.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.07%)</title><rect x="502.1" y="693" width="1.0" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="505.15" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_create (10,101,010 samples, 0.07%)</title><rect x="111.9" y="869" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="114.85" y="879.5" ></text>
+</g>
+<g >
+<title>dput (20,202,020 samples, 0.13%)</title><rect x="50.6" y="741" width="1.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="53.56" y="751.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.07%)</title><rect x="769.0" y="741" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="771.95" y="751.5" ></text>
+</g>
+<g >
+<title>__hv_pkt_iter_next (10,101,010 samples, 0.07%)</title><rect x="654.5" y="501" width="0.9" height="15.0" fill="rgb(0,227,159)" rx="2" ry="2" />
+<text x="657.48" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (40,404,040 samples, 0.26%)</title><rect x="1056.5" y="629" width="3.6" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1059.49" y="639.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (10,101,010 samples, 0.07%)</title><rect x="440.0" y="709" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="442.95" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="958.2" y="725" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="961.24" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="662.6" y="485" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="665.59" y="495.5" ></text>
+</g>
+<g >
+<title>git_odb_read (101,010,100 samples, 0.65%)</title><rect x="517.5" y="821" width="9.0" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="520.47" y="831.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="388.6" y="517" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="391.58" y="527.5" ></text>
+</g>
+<g >
+<title>kmalloc_slab (10,101,010 samples, 0.07%)</title><rect x="1079.0" y="485" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1082.03" y="495.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_end (10,101,010 samples, 0.07%)</title><rect x="355.2" y="597" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="358.23" y="607.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.07%)</title><rect x="887.9" y="725" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="890.94" y="735.5" ></text>
+</g>
+<g >
+<title>unlink (30,303,030 samples, 0.20%)</title><rect x="718.5" y="757" width="2.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="721.48" y="767.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.07%)</title><rect x="455.3" y="613" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="458.28" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="498.5" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="501.54" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_meta_trans_blocks (10,101,010 samples, 0.07%)</title><rect x="389.5" y="629" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="392.48" y="639.5" ></text>
+</g>
+<g >
+<title>do_linkat (30,303,030 samples, 0.20%)</title><rect x="807.7" y="709" width="2.7" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="810.71" y="719.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="807.7" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="810.71" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="218.2" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="221.22" y="559.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.07%)</title><rect x="1246.7" y="805" width="0.9" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="1249.68" y="815.5" ></text>
+</g>
+<g >
+<title>srso_alias_return_thunk (10,101,010 samples, 0.07%)</title><rect x="786.1" y="533" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="789.08" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="1207.0" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1210.02" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="858.2" y="645" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="861.19" y="655.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.07%)</title><rect x="803.2" y="677" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="806.21" y="687.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="1148.4" y="645" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1151.43" y="655.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="855.5" y="725" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="858.49" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="870.8" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="873.81" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="977.2" y="789" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="980.17" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="878.9" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="881.92" y="735.5" ></text>
+</g>
+<g >
+<title>sock_close (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="773" width="3.6" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="1374.97" y="783.5" ></text>
+</g>
+<g >
+<title>process_measurement (10,101,010 samples, 0.07%)</title><rect x="749.1" y="501" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="752.12" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="508.5" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="511.46" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="769.0" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="771.95" y="735.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.07%)</title><rect x="1307.1" y="789" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1310.07" y="799.5" ></text>
+</g>
+<g >
+<title>evict (40,404,040 samples, 0.26%)</title><rect x="242.6" y="629" width="3.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="245.55" y="639.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.07%)</title><rect x="1109.7" y="629" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1112.67" y="639.5" ></text>
+</g>
+<g >
+<title>unlink_cb (60,606,060 samples, 0.39%)</title><rect x="194.8" y="709" width="5.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="197.78" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.07%)</title><rect x="985.3" y="645" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="988.28" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (50,505,050 samples, 0.33%)</title><rect x="325.5" y="709" width="4.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="328.48" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (343,434,340 samples, 2.22%)</title><rect x="690.5" y="789" width="30.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="693.54" y="799.5" >[l..</text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.07%)</title><rect x="1358.5" y="789" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1361.45" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_schedule_loss_probe.part.0 (10,101,010 samples, 0.07%)</title><rect x="19.0" y="725" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="22.01" y="735.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (30,303,030 samples, 0.20%)</title><rect x="1317.9" y="709" width="2.7" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1320.89" y="719.5" ></text>
+</g>
+<g >
+<title>__strdup (10,101,010 samples, 0.07%)</title><rect x="742.8" y="693" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="745.82" y="703.5" ></text>
+</g>
+<g >
+<title>__inet_stream_connect (151,515,150 samples, 0.98%)</title><rect x="1376.5" y="821" width="13.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1379.48" y="831.5" ></text>
+</g>
+<g >
+<title>path_openat (30,303,030 samples, 0.20%)</title><rect x="457.1" y="581" width="2.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="460.08" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1094.4" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1097.35" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (101,010,100 samples, 0.65%)</title><rect x="364.2" y="629" width="9.1" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="367.24" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.07%)</title><rect x="1227.8" y="677" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1230.75" y="687.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="109.2" y="837" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="112.15" y="847.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (70,707,070 samples, 0.46%)</title><rect x="58.7" y="437" width="6.3" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="61.67" y="447.5" ></text>
+</g>
+<g >
+<title>link (30,303,030 samples, 0.20%)</title><rect x="715.8" y="757" width="2.7" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="718.77" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="945.6" y="421" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="948.62" y="431.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="751.8" y="565" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="754.83" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="480.5" y="757" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="483.52" y="767.5" ></text>
+</g>
+<g >
+<title>save_fpregs_to_fpstate (10,101,010 samples, 0.07%)</title><rect x="135.3" y="757" width="0.9" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="138.29" y="767.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="451.7" y="613" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="454.67" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1199.8" y="741" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1202.81" y="751.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (20,202,020 samples, 0.13%)</title><rect x="681.5" y="677" width="1.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="684.52" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (111,111,110 samples, 0.72%)</title><rect x="165.0" y="981" width="10.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="168.04" y="991.5" ></text>
+</g>
+<g >
+<title>dquot_initialize (10,101,010 samples, 0.07%)</title><rect x="86.6" y="885" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="89.62" y="895.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="732.0" y="565" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="735.00" y="575.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="1128.6" y="581" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1131.60" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_link (10,101,010 samples, 0.07%)</title><rect x="542.7" y="741" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="545.71" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (20,202,020 samples, 0.13%)</title><rect x="1056.5" y="597" width="1.8" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="1059.49" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_close (111,111,110 samples, 0.72%)</title><rect x="55.1" y="661" width="9.9" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="58.07" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="667.1" y="533" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="670.10" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.07%)</title><rect x="437.3" y="629" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="440.25" y="639.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.07%)</title><rect x="343.5" y="661" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="346.51" y="671.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.07%)</title><rect x="743.7" y="725" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="746.72" y="735.5" ></text>
+</g>
+<g >
+<title>rename (242,424,240 samples, 1.57%)</title><rect x="658.1" y="757" width="21.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="661.09" y="767.5" >r..</text>
+</g>
+<g >
+<title>truncate_inode_pages_range (10,101,010 samples, 0.07%)</title><rect x="1006.0" y="533" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1009.02" y="543.5" ></text>
+</g>
+<g >
+<title>capable_wrt_inode_uidgid (10,101,010 samples, 0.07%)</title><rect x="606.7" y="645" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="609.71" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.07%)</title><rect x="465.2" y="501" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="468.19" y="511.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1213.3" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1216.33" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="776.2" y="549" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="779.17" y="559.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="537.3" y="613" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="540.30" y="623.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.07%)</title><rect x="132.6" y="725" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="135.59" y="735.5" ></text>
+</g>
+<g >
+<title>ip_route_output_key_hash (10,101,010 samples, 0.07%)</title><rect x="1348.5" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1351.54" y="799.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.07%)</title><rect x="725.7" y="693" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="728.69" y="703.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.07%)</title><rect x="1084.4" y="325" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1087.44" y="335.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="477.8" y="805" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="480.81" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (101,010,100 samples, 0.65%)</title><rect x="838.4" y="565" width="9.0" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="841.36" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="794.2" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="797.19" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="859.1" y="645" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="862.09" y="655.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="190.3" y="421" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="193.27" y="431.5" ></text>
+</g>
+<g >
+<title>__fdget_pos (10,101,010 samples, 0.07%)</title><rect x="828.4" y="661" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="831.45" y="671.5" ></text>
+</g>
+<g >
+<title>getdents64 (30,303,030 samples, 0.20%)</title><rect x="211.9" y="725" width="2.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="214.91" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.20%)</title><rect x="209.2" y="549" width="2.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="212.20" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (242,424,240 samples, 1.57%)</title><rect x="658.1" y="709" width="21.6" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="661.09" y="719.5" >_..</text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (10,101,010 samples, 0.07%)</title><rect x="838.4" y="501" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="841.36" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="335.4" y="549" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="338.40" y="559.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (20,202,020 samples, 0.13%)</title><rect x="1349.4" y="517" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1352.44" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="983.5" y="693" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="986.48" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (10,101,010 samples, 0.07%)</title><rect x="719.4" y="645" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="722.38" y="655.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.07%)</title><rect x="926.7" y="517" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="929.69" y="527.5" ></text>
+</g>
+<g >
+<title>kmalloc_reserve (10,101,010 samples, 0.07%)</title><rect x="61.4" y="101" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="64.38" y="111.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1042.1" y="613" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1045.07" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.07%)</title><rect x="542.7" y="693" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="545.71" y="703.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.07%)</title><rect x="1366.6" y="789" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1369.56" y="799.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.07%)</title><rect x="106.4" y="837" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="109.45" y="847.5" ></text>
+</g>
+<g >
+<title>opendir (20,202,020 samples, 0.13%)</title><rect x="860.9" y="693" width="1.8" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="863.89" y="703.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="500.3" y="709" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="503.35" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1063.7" y="581" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1066.70" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="280.4" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="283.41" y="623.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.07%)</title><rect x="700.5" y="469" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="703.45" y="479.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="597" width="2.7" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1381.28" y="607.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.07%)</title><rect x="84.8" y="949" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="87.81" y="959.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.07%)</title><rect x="88.4" y="869" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="91.42" y="879.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.07%)</title><rect x="103.7" y="805" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="106.74" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.07%)</title><rect x="1018.6" y="693" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1021.63" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (202,020,200 samples, 1.31%)</title><rect x="690.5" y="725" width="18.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="693.54" y="735.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.07%)</title><rect x="1015.0" y="469" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1018.03" y="479.5" ></text>
+</g>
+<g >
+<title>os_xsave (10,101,010 samples, 0.07%)</title><rect x="275.9" y="533" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="278.90" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="854.6" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="857.59" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.07%)</title><rect x="252.5" y="725" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="255.47" y="735.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.07%)</title><rect x="1024.0" y="693" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="1027.04" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="418.3" y="741" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="421.32" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.07%)</title><rect x="1248.5" y="757" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1251.48" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="411.1" y="581" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="414.11" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="865.4" y="677" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="868.40" y="687.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="713.1" y="613" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="716.07" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="49.7" y="853" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="52.66" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_rename (80,808,080 samples, 0.52%)</title><rect x="910.5" y="677" width="7.2" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="913.47" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="531.9" y="725" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="534.89" y="735.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.07%)</title><rect x="237.1" y="613" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="240.15" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_superblock_csum_set (10,101,010 samples, 0.07%)</title><rect x="1128.6" y="613" width="0.9" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" />
+<text x="1131.60" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="961.8" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="964.85" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="908.7" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="911.67" y="495.5" ></text>
+</g>
+<g >
+<title>net_rx_action (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="357" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1368.66" y="367.5" ></text>
+</g>
+<g >
+<title>do_writepages (60,606,060 samples, 0.39%)</title><rect x="912.3" y="597" width="5.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="915.27" y="607.5" ></text>
+</g>
+<g >
+<title>queued_spin_unlock (10,101,010 samples, 0.07%)</title><rect x="675.2" y="437" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="678.21" y="447.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="201.1" y="709" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="204.09" y="719.5" ></text>
+</g>
+<g >
+<title>apparmor_file_permission (10,101,010 samples, 0.07%)</title><rect x="1363.9" y="709" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1366.86" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="341.7" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="344.70" y="767.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.07%)</title><rect x="458.9" y="517" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="461.88" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="759.9" y="661" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="762.94" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="867.2" y="565" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="870.20" y="575.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="1221.4" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1224.44" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="736.5" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="739.51" y="703.5" ></text>
+</g>
+<g >
+<title>cpus_share_cache (10,101,010 samples, 0.07%)</title><rect x="43.4" y="597" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="46.35" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="370.5" y="501" width="1.0" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="373.55" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="942.9" y="501" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="945.92" y="511.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.07%)</title><rect x="765.3" y="645" width="1.0" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="768.35" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.07%)</title><rect x="431.8" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="434.84" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (20,202,020 samples, 0.13%)</title><rect x="641.9" y="629" width="1.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="644.86" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (20,202,020 samples, 0.13%)</title><rect x="593.2" y="533" width="1.8" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="596.19" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="403.9" y="645" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="406.90" y="655.5" ></text>
+</g>
+<g >
+<title>git_remote_fetch (1,404,040,390 samples, 9.08%)</title><rect x="851.9" y="869" width="125.3" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="854.88" y="879.5" >git_remote_fetch</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="927.6" y="677" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="930.60" y="687.5" ></text>
+</g>
+<g >
+<title>sk_alloc (10,101,010 samples, 0.07%)</title><rect x="1337.7" y="805" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1340.72" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="962.7" y="709" width="1.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="965.75" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (50,505,050 samples, 0.33%)</title><rect x="979.0" y="789" width="4.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="981.97" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="805.9" y="677" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="808.91" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (676,767,670 samples, 4.38%)</title><rect x="478.7" y="869" width="60.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="481.71" y="879.5" >[libgi..</text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="507.6" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="510.56" y="623.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="453.5" y="709" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="456.47" y="719.5" ></text>
+</g>
+<g >
+<title>submit_bio (10,101,010 samples, 0.07%)</title><rect x="670.7" y="501" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="673.71" y="511.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.07%)</title><rect x="340.8" y="709" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="343.80" y="719.5" ></text>
+</g>
+<g >
+<title>save_fpregs_to_fpstate (10,101,010 samples, 0.07%)</title><rect x="962.7" y="533" width="1.0" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="965.75" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (50,505,050 samples, 0.33%)</title><rect x="1252.1" y="693" width="4.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1255.09" y="703.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.07%)</title><rect x="838.4" y="389" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="841.36" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.13%)</title><rect x="1019.5" y="565" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1022.54" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (30,303,030 samples, 0.20%)</title><rect x="435.4" y="693" width="2.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="438.45" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.07%)</title><rect x="769.9" y="549" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="772.86" y="559.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="455.3" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="458.28" y="639.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (151,515,150 samples, 0.98%)</title><rect x="1002.4" y="677" width="13.5" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="1005.41" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="725.7" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="728.69" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="830.2" y="757" width="1.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="833.25" y="767.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.07%)</title><rect x="1128.6" y="565" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1131.60" y="575.5" ></text>
+</g>
+<g >
+<title>_IO_setb (10,101,010 samples, 0.07%)</title><rect x="686.0" y="693" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="689.03" y="703.5" ></text>
+</g>
+<g >
+<title>ktime_get_coarse_real_ts64 (10,101,010 samples, 0.07%)</title><rect x="10.9" y="773" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="13.90" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (20,202,020 samples, 0.13%)</title><rect x="962.7" y="645" width="1.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="965.75" y="655.5" ></text>
+</g>
+<g >
+<title>security_inode_need_killpriv (10,101,010 samples, 0.07%)</title><rect x="761.7" y="517" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="764.74" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="248.0" y="501" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="250.96" y="511.5" ></text>
+</g>
+<g >
+<title>do_softirq (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="501" width="2.7" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1381.28" y="511.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="1227.8" y="789" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1230.75" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (50,505,050 samples, 0.33%)</title><rect x="704.1" y="661" width="4.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="707.06" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_rename (121,212,120 samples, 0.78%)</title><rect x="1118.7" y="677" width="10.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1121.69" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="847.4" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="850.37" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (20,202,020 samples, 0.13%)</title><rect x="962.7" y="693" width="1.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="965.75" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.20%)</title><rect x="1212.4" y="677" width="2.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1215.43" y="687.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.07%)</title><rect x="450.8" y="629" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="453.77" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="688.7" y="693" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="691.73" y="703.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.07%)</title><rect x="1067.3" y="581" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1070.31" y="591.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (20,202,020 samples, 0.13%)</title><rect x="1024.9" y="661" width="1.8" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="1027.94" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="461.6" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="464.59" y="703.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (50,505,050 samples, 0.33%)</title><rect x="1002.4" y="613" width="4.5" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1005.41" y="623.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.07%)</title><rect x="614.8" y="677" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="617.82" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="896.9" y="821" width="1.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="899.95" y="831.5" ></text>
+</g>
+<g >
+<title>ci_prepare_git_repo (9,121,212,030 samples, 58.98%)</title><rect x="442.7" y="933" width="813.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="445.66" y="943.5" >ci_prepare_git_repo</text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.07%)</title><rect x="543.6" y="725" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="546.61" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="896.9" y="757" width="1.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="899.95" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="679.7" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="682.72" y="799.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.07%)</title><rect x="293.9" y="437" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="296.93" y="447.5" ></text>
+</g>
+<g >
+<title>net_rx_action (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="469" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1343.42" y="479.5" ></text>
+</g>
+<g >
+<title>generic_write_end (10,101,010 samples, 0.07%)</title><rect x="765.3" y="549" width="1.0" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="768.35" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.07%)</title><rect x="1003.3" y="549" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1006.31" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="155.1" y="773" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="158.12" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.07%)</title><rect x="272.3" y="629" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="275.30" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="483.2" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="486.22" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (40,404,040 samples, 0.26%)</title><rect x="463.4" y="629" width="3.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="466.39" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (20,202,020 samples, 0.13%)</title><rect x="1019.5" y="597" width="1.8" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="1022.54" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="919.5" y="773" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="922.48" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="659.0" y="565" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="661.99" y="575.5" ></text>
+</g>
+<g >
+<title>pthread_create (20,202,020 samples, 0.13%)</title><rect x="67.7" y="869" width="1.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="70.69" y="879.5" ></text>
+</g>
+<g >
+<title>opendir (60,606,060 samples, 0.39%)</title><rect x="616.6" y="789" width="5.4" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="619.62" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="870.8" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="873.81" y="751.5" ></text>
+</g>
+<g >
+<title>_raw_write_lock (10,101,010 samples, 0.07%)</title><rect x="1118.7" y="581" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1121.69" y="591.5" ></text>
+</g>
+<g >
+<title>unlock_buffer (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="293" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1084.73" y="303.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.07%)</title><rect x="713.1" y="565" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="716.07" y="575.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (30,303,030 samples, 0.20%)</title><rect x="1197.1" y="805" width="2.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1200.11" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.07%)</title><rect x="818.5" y="501" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="821.53" y="511.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="956.4" y="645" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="959.44" y="655.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="610.3" y="533" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="613.31" y="543.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="1026.7" y="677" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1029.75" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (20,202,020 samples, 0.13%)</title><rect x="1011.4" y="453" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1014.42" y="463.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.07%)</title><rect x="262.4" y="517" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="265.38" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (10,101,010 samples, 0.07%)</title><rect x="148.8" y="741" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="151.81" y="751.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.07%)</title><rect x="891.5" y="661" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="894.54" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.07%)</title><rect x="768.1" y="565" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="771.05" y="575.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.07%)</title><rect x="973.6" y="661" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="976.57" y="671.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.07%)</title><rect x="318.3" y="597" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="321.27" y="607.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="556.2" y="597" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="559.23" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.07%)</title><rect x="852.8" y="661" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="855.78" y="671.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="677.0" y="469" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="680.02" y="479.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1229.6" y="661" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1232.56" y="671.5" ></text>
+</g>
+<g >
+<title>d_splice_alias (10,101,010 samples, 0.07%)</title><rect x="637.4" y="597" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="640.35" y="607.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.07%)</title><rect x="995.2" y="597" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="998.20" y="607.5" ></text>
+</g>
+<g >
+<title>mas_wr_store_entry.isra.0 (60,606,060 samples, 0.39%)</title><rect x="1287.2" y="709" width="5.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1290.24" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="228.1" y="421" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="231.13" y="431.5" ></text>
+</g>
+<g >
+<title>vmbus_sendpacket_mpb_desc (10,101,010 samples, 0.07%)</title><rect x="912.3" y="325" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="915.27" y="335.5" ></text>
+</g>
+<g >
+<title>__do_softirq (30,303,030 samples, 0.20%)</title><rect x="1372.9" y="453" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1375.87" y="463.5" ></text>
+</g>
+<g >
+<title>read (20,202,020 samples, 0.13%)</title><rect x="728.4" y="709" width="1.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="731.39" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (90,909,090 samples, 0.59%)</title><rect x="1073.6" y="565" width="8.1" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1076.62" y="575.5" ></text>
+</g>
+<g >
+<title>queued_write_lock_slowpath (10,101,010 samples, 0.07%)</title><rect x="1118.7" y="565" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1121.69" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="942.9" y="517" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="945.92" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="969.1" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="972.06" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.07%)</title><rect x="951.9" y="517" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="954.93" y="527.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1217.8" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1220.84" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.07%)</title><rect x="506.7" y="645" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="509.66" y="655.5" ></text>
+</g>
+<g >
+<title>access (111,111,110 samples, 0.72%)</title><rect x="165.0" y="1013" width="10.0" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="168.04" y="1023.5" ></text>
+</g>
+<g >
+<title>__ext4_forget (10,101,010 samples, 0.07%)</title><rect x="227.2" y="469" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="230.23" y="479.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.07%)</title><rect x="1200.7" y="613" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1203.71" y="623.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.07%)</title><rect x="524.7" y="709" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="527.68" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_attach_jinode (30,303,030 samples, 0.20%)</title><rect x="103.7" y="821" width="2.7" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="106.74" y="831.5" ></text>
+</g>
+<g >
+<title>tcp_server_accept_handler (80,808,080 samples, 0.52%)</title><rect x="66.8" y="933" width="7.2" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="69.79" y="943.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (10,101,010 samples, 0.07%)</title><rect x="1388.2" y="277" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1391.20" y="287.5" ></text>
+</g>
+<g >
+<title>ext4_inode_journal_mode (10,101,010 samples, 0.07%)</title><rect x="332.7" y="629" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="335.69" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_io_submit (10,101,010 samples, 0.07%)</title><rect x="1122.3" y="517" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="1125.29" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.07%)</title><rect x="803.2" y="661" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="806.21" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.07%)</title><rect x="711.3" y="581" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="714.27" y="591.5" ></text>
+</g>
+<g >
+<title>inflateInit2_ (10,101,010 samples, 0.07%)</title><rect x="548.1" y="773" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="551.12" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="398.5" y="805" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="401.49" y="815.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="809.5" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="812.52" y="703.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.07%)</title><rect x="1015.0" y="405" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1018.03" y="415.5" ></text>
+</g>
+<g >
+<title>syscall_trace_enter.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="420.1" y="789" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="423.12" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="705.9" y="517" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="708.86" y="527.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="543.6" y="709" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="546.61" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1221.74" y="687.5" ></text>
+</g>
+<g >
+<title>inflate (20,202,020 samples, 0.13%)</title><rect x="531.9" y="709" width="1.8" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="534.89" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="1153.8" y="677" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1156.84" y="687.5" ></text>
+</g>
+<g >
+<title>mmap_region (10,101,010 samples, 0.07%)</title><rect x="67.7" y="741" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="70.69" y="751.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.07%)</title><rect x="1215.1" y="741" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1218.13" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_es_delayed_clu (10,101,010 samples, 0.07%)</title><rect x="944.7" y="485" width="0.9" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="947.72" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.07%)</title><rect x="1033.1" y="629" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1036.06" y="639.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="202.0" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="204.99" y="623.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_recv (90,909,090 samples, 0.59%)</title><rect x="1359.4" y="901" width="8.1" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1362.35" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.46%)</title><rect x="205.6" y="661" width="6.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="208.60" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="1032.2" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1035.16" y="639.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="485.0" y="709" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="488.02" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="725" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1233.46" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.07%)</title><rect x="782.5" y="549" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="785.48" y="559.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="993.4" y="709" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="996.40" y="719.5" ></text>
+</g>
+<g >
+<title>__do_softirq (20,202,020 samples, 0.13%)</title><rect x="1349.4" y="581" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1352.44" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="498.5" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="501.54" y="751.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (20,202,020 samples, 0.13%)</title><rect x="668.9" y="469" width="1.8" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="671.90" y="479.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="867.2" y="501" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="870.20" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.07%)</title><rect x="754.5" y="645" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="757.53" y="655.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.07%)</title><rect x="155.1" y="757" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="158.12" y="767.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (80,808,080 samples, 0.52%)</title><rect x="1327.8" y="581" width="7.2" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1330.81" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="879.8" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="882.82" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (121,212,120 samples, 0.78%)</title><rect x="810.4" y="741" width="10.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="813.42" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (30,303,030 samples, 0.20%)</title><rect x="586.0" y="533" width="2.7" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="588.98" y="543.5" ></text>
+</g>
+<g >
+<title>__memset (20,202,020 samples, 0.13%)</title><rect x="1159.2" y="597" width="1.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1162.25" y="607.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.07%)</title><rect x="1009.6" y="453" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1012.62" y="463.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.26%)</title><rect x="993.4" y="805" width="3.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="996.40" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_link (40,404,040 samples, 0.26%)</title><rect x="607.6" y="661" width="3.6" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="610.61" y="671.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.07%)</title><rect x="883.4" y="597" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="886.43" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="431.8" y="837" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="434.84" y="847.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (40,404,040 samples, 0.26%)</title><rect x="1386.4" y="645" width="3.6" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1389.39" y="655.5" ></text>
+</g>
+<g >
+<title>get_obj_cgroup_from_current (10,101,010 samples, 0.07%)</title><rect x="233.5" y="645" width="0.9" height="15.0" fill="rgb(0,206,71)" rx="2" ry="2" />
+<text x="236.54" y="655.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.07%)</title><rect x="1082.6" y="357" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="1085.63" y="367.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (20,202,020 samples, 0.13%)</title><rect x="131.7" y="757" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="134.69" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.13%)</title><rect x="540.0" y="581" width="1.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="543.01" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="651.8" y="725" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="654.78" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (131,313,130 samples, 0.85%)</title><rect x="601.3" y="741" width="11.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="604.30" y="751.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.07%)</title><rect x="1357.6" y="821" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1360.55" y="831.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.07%)</title><rect x="512.1" y="533" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="515.06" y="543.5" ></text>
+</g>
+<g >
+<title>nf_confirm (10,101,010 samples, 0.07%)</title><rect x="1351.2" y="677" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1354.24" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,909,090,880 samples, 18.81%)</title><rect x="182.2" y="885" width="259.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="185.16" y="895.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.07%)</title><rect x="10.9" y="869" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="13.90" y="879.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="360.6" y="613" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="363.63" y="623.5" ></text>
+</g>
+<g >
+<title>set_root (10,101,010 samples, 0.07%)</title><rect x="186.7" y="517" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="189.67" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="1227.8" y="821" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1230.75" y="831.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="277" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1013.52" y="287.5" ></text>
+</g>
+<g >
+<title>ksys_write (60,606,060 samples, 0.39%)</title><rect x="643.7" y="661" width="5.4" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="646.66" y="671.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.07%)</title><rect x="951.9" y="453" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="954.93" y="463.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (30,303,030 samples, 0.20%)</title><rect x="1330.5" y="325" width="2.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1333.51" y="335.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.07%)</title><rect x="414.7" y="757" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="417.72" y="767.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="781.6" y="565" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="784.57" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_accept4 (20,202,020 samples, 0.13%)</title><rect x="72.2" y="837" width="1.8" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="75.19" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="997.0" y="741" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1000.00" y="751.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="654.5" y="597" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="657.48" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="494.9" y="741" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="497.94" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="727.5" y="805" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="730.49" y="815.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (20,202,020 samples, 0.13%)</title><rect x="125.4" y="821" width="1.8" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="128.38" y="831.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="891.5" y="693" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="894.54" y="703.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1042.1" y="629" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1045.07" y="639.5" ></text>
+</g>
+<g >
+<title>charge_memcg (10,101,010 samples, 0.07%)</title><rect x="1050.2" y="581" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1053.18" y="591.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="242.6" y="501" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="245.55" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (10,101,010 samples, 0.07%)</title><rect x="1003.3" y="533" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1006.31" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (40,404,040 samples, 0.26%)</title><rect x="490.4" y="693" width="3.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="493.43" y="703.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.07%)</title><rect x="1109.7" y="645" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1112.67" y="655.5" ></text>
+</g>
+<g >
+<title>path_openat (181,818,180 samples, 1.18%)</title><rect x="1024.0" y="709" width="16.3" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1027.04" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="778.9" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="781.87" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1353.0" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1356.04" y="831.5" ></text>
+</g>
+<g >
+<title>do_rmdir (40,404,040 samples, 0.26%)</title><rect x="195.7" y="613" width="3.6" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="198.68" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="785.2" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="788.18" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="953.7" y="693" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="956.74" y="703.5" ></text>
+</g>
+<g >
+<title>ksys_write (60,606,060 samples, 0.39%)</title><rect x="904.2" y="693" width="5.4" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="907.16" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="780.7" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="783.67" y="687.5" ></text>
+</g>
+<g >
+<title>ci_run (717,171,710 samples, 4.64%)</title><rect x="1256.6" y="933" width="64.0" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="1259.60" y="943.5" >ci_run</text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="656.3" y="629" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="659.28" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="563.4" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="566.44" y="767.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.07%)</title><rect x="376.9" y="773" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="379.86" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="411.1" y="597" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="414.11" y="607.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.07%)</title><rect x="1157.4" y="597" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1160.45" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_desc (10,101,010 samples, 0.07%)</title><rect x="729.3" y="453" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="732.29" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.07%)</title><rect x="1152.9" y="661" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1155.94" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="280.4" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="283.41" y="607.5" ></text>
+</g>
+<g >
+<title>wake_up_bit (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="277" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1084.73" y="287.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (30,303,030 samples, 0.20%)</title><rect x="260.6" y="581" width="2.7" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="263.58" y="591.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="668.0" y="565" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="671.00" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="335.4" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="338.40" y="607.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.07%)</title><rect x="328.2" y="613" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="331.18" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_readlink (10,101,010 samples, 0.07%)</title><rect x="494.0" y="693" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="497.04" y="703.5" ></text>
+</g>
+<g >
+<title>__strftime_l (10,101,010 samples, 0.07%)</title><rect x="1245.8" y="853" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="1248.78" y="863.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (30,303,030 samples, 0.20%)</title><rect x="1317.9" y="693" width="2.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1320.89" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="878.0" y="597" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="881.02" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_journal_check_start (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="597" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1084.73" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (80,808,080 samples, 0.52%)</title><rect x="509.4" y="725" width="7.2" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="512.36" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (323,232,320 samples, 2.09%)</title><rect x="449.0" y="853" width="28.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="451.97" y="863.5" >[l..</text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="379.6" y="661" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="382.56" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="743.7" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="746.72" y="751.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="581" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1064.90" y="591.5" ></text>
+</g>
+<g >
+<title>git_attr_cache_flush (20,202,020 samples, 0.13%)</title><rect x="179.5" y="869" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="182.46" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="767.2" y="613" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="770.15" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (80,808,080 samples, 0.52%)</title><rect x="509.4" y="677" width="7.2" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="512.36" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="971.8" y="645" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="974.76" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_es_remove_extent (10,101,010 samples, 0.07%)</title><rect x="222.7" y="533" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="225.72" y="543.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.07%)</title><rect x="878.0" y="533" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="881.02" y="543.5" ></text>
+</g>
+<g >
+<title>_raw_spin_trylock (10,101,010 samples, 0.07%)</title><rect x="814.0" y="453" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="817.02" y="463.5" ></text>
+</g>
+<g >
+<title>lookup_dcache (10,101,010 samples, 0.07%)</title><rect x="231.7" y="613" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="234.74" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.07%)</title><rect x="924.9" y="421" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="927.89" y="431.5" ></text>
+</g>
+<g >
+<title>tcp_push (30,303,030 samples, 0.20%)</title><rect x="1369.3" y="741" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1372.27" y="751.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (30,303,030 samples, 0.20%)</title><rect x="791.5" y="773" width="2.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="794.49" y="783.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (10,101,010 samples, 0.07%)</title><rect x="498.5" y="789" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="501.54" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="765.3" y="677" width="1.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="768.35" y="687.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.07%)</title><rect x="453.5" y="629" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="456.47" y="639.5" ></text>
+</g>
+<g >
+<title>_raw_spin_trylock (10,101,010 samples, 0.07%)</title><rect x="573.4" y="629" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="576.36" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="1193.5" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1196.50" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="257.0" y="725" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="259.98" y="735.5" ></text>
+</g>
+<g >
+<title>may_linkat (10,101,010 samples, 0.07%)</title><rect x="717.6" y="677" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="720.58" y="687.5" ></text>
+</g>
+<g >
+<title>nf_confirm (10,101,010 samples, 0.07%)</title><rect x="1350.3" y="437" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1353.34" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.07%)</title><rect x="762.6" y="549" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="765.65" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (60,606,060 samples, 0.39%)</title><rect x="1055.6" y="773" width="5.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1058.59" y="783.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.07%)</title><rect x="109.2" y="773" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="112.15" y="783.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.07%)</title><rect x="65.0" y="917" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="67.98" y="927.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.07%)</title><rect x="656.3" y="709" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="659.28" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="165.9" y="885" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="168.94" y="895.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.07%)</title><rect x="616.6" y="629" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="619.62" y="639.5" ></text>
+</g>
+<g >
+<title>may_open (10,101,010 samples, 0.07%)</title><rect x="777.1" y="693" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="780.07" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="556.2" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="559.23" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (40,404,040 samples, 0.26%)</title><rect x="927.6" y="645" width="3.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="930.60" y="655.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="781.6" y="597" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="784.57" y="607.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.07%)</title><rect x="1320.6" y="741" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="1323.59" y="751.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.07%)</title><rect x="202.9" y="597" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="205.89" y="607.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.20%)</title><rect x="990.7" y="709" width="2.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="993.69" y="719.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (30,303,030 samples, 0.20%)</title><rect x="60.5" y="133" width="2.7" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="63.48" y="143.5" ></text>
+</g>
+<g >
+<title>__fsnotify_parent (10,101,010 samples, 0.07%)</title><rect x="102.8" y="837" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="105.84" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="983.5" y="725" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="986.48" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (141,414,140 samples, 0.91%)</title><rect x="667.1" y="661" width="12.6" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="670.10" y="671.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.07%)</title><rect x="1205.2" y="549" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="1208.22" y="559.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.07%)</title><rect x="1013.2" y="485" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1016.23" y="495.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.07%)</title><rect x="1307.1" y="853" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1310.07" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="564.3" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="567.34" y="751.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="902.4" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="905.36" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (20,202,020 samples, 0.13%)</title><rect x="463.4" y="613" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="466.39" y="623.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.07%)</title><rect x="617.5" y="661" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="620.52" y="671.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.07%)</title><rect x="16.3" y="405" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="19.31" y="415.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.07%)</title><rect x="656.3" y="645" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="659.28" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.07%)</title><rect x="352.5" y="661" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="355.52" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_ack (10,101,010 samples, 0.07%)</title><rect x="1367.5" y="693" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1370.47" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="776.2" y="613" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="779.17" y="623.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode_prepare (10,101,010 samples, 0.07%)</title><rect x="695.0" y="645" width="0.9" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="698.04" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (40,404,040 samples, 0.26%)</title><rect x="457.1" y="629" width="3.6" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="460.08" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1035.8" y="533" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1038.76" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (10,101,010 samples, 0.07%)</title><rect x="698.6" y="485" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="701.65" y="495.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (80,808,080 samples, 0.52%)</title><rect x="810.4" y="661" width="7.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="813.42" y="671.5" ></text>
+</g>
+<g >
+<title>dup_mm.constprop.0 (545,454,540 samples, 3.53%)</title><rect x="1258.4" y="757" width="48.7" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1261.40" y="767.5" >dup_..</text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="279.5" y="597" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="282.51" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.07%)</title><rect x="595.0" y="581" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="597.99" y="591.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="469" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1221.74" y="479.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.07%)</title><rect x="1363.0" y="821" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1365.96" y="831.5" ></text>
+</g>
+<g >
+<title>from_kgid (10,101,010 samples, 0.07%)</title><rect x="833.9" y="533" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="836.85" y="543.5" ></text>
+</g>
+<g >
+<title>evict (101,010,100 samples, 0.65%)</title><rect x="220.9" y="597" width="9.0" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="223.92" y="607.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.07%)</title><rect x="1316.1" y="757" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1319.09" y="767.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.07%)</title><rect x="1114.2" y="533" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1117.18" y="543.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.07%)</title><rect x="1037.6" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1040.56" y="623.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="691.4" y="629" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="694.44" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.46%)</title><rect x="1182.7" y="773" width="6.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1185.68" y="783.5" ></text>
+</g>
+<g >
+<title>filldir64 (10,101,010 samples, 0.07%)</title><rect x="624.7" y="645" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="627.74" y="655.5" ></text>
+</g>
+<g >
+<title>mas_update_gap.part.0 (10,101,010 samples, 0.07%)</title><rect x="1288.1" y="677" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="1291.15" y="687.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.07%)</title><rect x="1357.6" y="837" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1360.55" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1353.0" y="885" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1356.04" y="895.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="999.7" y="741" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1002.71" y="751.5" ></text>
+</g>
+<g >
+<title>__blk_mq_alloc_requests (10,101,010 samples, 0.07%)</title><rect x="840.2" y="437" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="843.16" y="447.5" ></text>
+</g>
+<g >
+<title>list_lru_del (10,101,010 samples, 0.07%)</title><rect x="315.6" y="581" width="0.9" height="15.0" fill="rgb(0,216,113)" rx="2" ry="2" />
+<text x="318.56" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="295.7" y="581" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="298.73" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="359.7" y="629" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="362.73" y="639.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (30,303,030 samples, 0.20%)</title><rect x="1372.9" y="517" width="2.7" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1375.87" y="527.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.07%)</title><rect x="200.2" y="677" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="203.19" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="552.6" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="555.63" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.07%)</title><rect x="517.5" y="629" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="520.47" y="639.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="47.9" y="741" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="50.86" y="751.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="1040.3" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1043.27" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (30,303,030 samples, 0.20%)</title><rect x="1061.9" y="805" width="2.7" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1064.90" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="767.2" y="581" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="770.15" y="591.5" ></text>
+</g>
+<g >
+<title>common_perm_cond (10,101,010 samples, 0.07%)</title><rect x="796.9" y="725" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="799.90" y="735.5" ></text>
+</g>
+<g >
+<title>filename_create (20,202,020 samples, 0.13%)</title><rect x="602.2" y="693" width="1.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="605.20" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="1207.0" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1210.02" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (20,202,020 samples, 0.13%)</title><rect x="938.4" y="533" width="1.8" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="941.41" y="543.5" ></text>
+</g>
+<g >
+<title>copy_p4d_range (80,808,080 samples, 0.52%)</title><rect x="1274.6" y="709" width="7.2" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1277.62" y="719.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.07%)</title><rect x="178.6" y="837" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="181.56" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="997.0" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1000.00" y="687.5" ></text>
+</g>
+<g >
+<title>git_odb_read (60,606,060 samples, 0.39%)</title><rect x="545.4" y="853" width="5.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="548.41" y="863.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.07%)</title><rect x="501.2" y="693" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="504.25" y="703.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1349.4" y="629" width="1.8" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1352.44" y="639.5" ></text>
+</g>
+<g >
+<title>d_lru_add (10,101,010 samples, 0.07%)</title><rect x="988.9" y="645" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="991.89" y="655.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.07%)</title><rect x="430.9" y="789" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="433.94" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg (20,202,020 samples, 0.13%)</title><rect x="1364.8" y="693" width="1.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1367.76" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (40,404,040 samples, 0.26%)</title><rect x="993.4" y="741" width="3.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="996.40" y="751.5" ></text>
+</g>
+<g >
+<title>git_object_lookup_prefix (60,606,060 samples, 0.39%)</title><rect x="545.4" y="869" width="5.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="548.41" y="879.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="679.7" y="661" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="682.72" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="739.2" y="693" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="742.21" y="703.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.07%)</title><rect x="779.8" y="757" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="782.77" y="767.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (40,404,040 samples, 0.26%)</title><rect x="467.9" y="645" width="3.6" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="470.90" y="655.5" ></text>
+</g>
+<g >
+<title>git_repository_init (2,595,959,570 samples, 16.79%)</title><rect x="978.1" y="869" width="231.6" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="981.07" y="879.5" >git_repository_init</text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="672.5" y="453" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="675.51" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="1202.5" y="693" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1205.51" y="703.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (30,303,030 samples, 0.20%)</title><rect x="849.2" y="821" width="2.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="852.18" y="831.5" ></text>
+</g>
+<g >
+<title>__irq_work_queue_local (20,202,020 samples, 0.13%)</title><rect x="1381.0" y="661" width="1.8" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="1383.99" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (40,404,040 samples, 0.26%)</title><rect x="1368.4" y="757" width="3.6" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="1371.37" y="767.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1339.5" y="645" width="1.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1342.52" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="403.9" y="693" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="406.90" y="703.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.07%)</title><rect x="263.3" y="597" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="266.29" y="607.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="494.0" y="645" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="497.04" y="655.5" ></text>
+</g>
+<g >
+<title>path_openat (30,303,030 samples, 0.20%)</title><rect x="445.4" y="693" width="2.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="448.36" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.07%)</title><rect x="973.6" y="693" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="976.57" y="703.5" ></text>
+</g>
+<g >
+<title>__get_task_ioprio (10,101,010 samples, 0.07%)</title><rect x="1246.7" y="693" width="0.9" height="15.0" fill="rgb(0,215,109)" rx="2" ry="2" />
+<text x="1249.68" y="703.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (10,101,010 samples, 0.07%)</title><rect x="1082.6" y="501" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1085.63" y="511.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (20,202,020 samples, 0.13%)</title><rect x="668.9" y="517" width="1.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="671.90" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="849.2" y="789" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="852.18" y="799.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (20,202,020 samples, 0.13%)</title><rect x="988.0" y="725" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="990.99" y="735.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1180.0" y="677" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1182.98" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.07%)</title><rect x="211.9" y="629" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="214.91" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="304.7" y="517" width="1.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="307.75" y="527.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1105.2" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1108.17" y="623.5" ></text>
+</g>
+<g >
+<title>unlink (90,909,090 samples, 0.59%)</title><rect x="421.0" y="821" width="8.1" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="424.03" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="662.6" y="469" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="665.59" y="479.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="772.6" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="775.56" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="942.9" y="533" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="945.92" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.07%)</title><rect x="329.1" y="677" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="332.09" y="687.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.07%)</title><rect x="1249.4" y="693" width="0.9" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="1252.39" y="703.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="710.4" y="661" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="713.37" y="671.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1015.0" y="549" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1018.03" y="559.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="759.0" y="533" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="762.04" y="543.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (111,111,110 samples, 0.72%)</title><rect x="86.6" y="917" width="9.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="89.62" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="770.8" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="773.76" y="511.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.07%)</title><rect x="1084.4" y="389" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1087.44" y="399.5" ></text>
+</g>
+<g >
+<title>iput (10,101,010 samples, 0.07%)</title><rect x="270.5" y="629" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="273.50" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.07%)</title><rect x="1116.9" y="485" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="1119.88" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.07%)</title><rect x="890.6" y="645" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="893.64" y="655.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="987.1" y="677" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="990.09" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1000.6" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1003.61" y="719.5" ></text>
+</g>
+<g >
+<title>ksys_write (70,707,070 samples, 0.46%)</title><rect x="1096.2" y="661" width="6.3" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1099.15" y="671.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (10,101,010 samples, 0.07%)</title><rect x="245.3" y="581" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="248.26" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="882.5" y="645" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="885.53" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="450.8" y="741" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="453.77" y="751.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.07%)</title><rect x="1167.4" y="549" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1170.36" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (60,606,060 samples, 0.39%)</title><rect x="643.7" y="613" width="5.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="646.66" y="623.5" ></text>
+</g>
+<g >
+<title>event_loop_run (363,636,360 samples, 2.35%)</title><rect x="41.5" y="949" width="32.5" height="15.0" fill="rgb(0,235,193)" rx="2" ry="2" />
+<text x="44.55" y="959.5" >ev..</text>
+</g>
+<g >
+<title>ext4fs_dirhash (10,101,010 samples, 0.07%)</title><rect x="682.4" y="661" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="685.42" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.07%)</title><rect x="660.8" y="565" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="663.79" y="575.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.07%)</title><rect x="979.0" y="661" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="981.97" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.07%)</title><rect x="697.7" y="501" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="700.75" y="511.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.07%)</title><rect x="1021.3" y="613" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1024.34" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="455.3" y="773" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="458.28" y="783.5" ></text>
+</g>
+<g >
+<title>down_read (10,101,010 samples, 0.07%)</title><rect x="971.8" y="549" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="974.76" y="559.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (40,404,040 samples, 0.26%)</title><rect x="723.0" y="757" width="3.6" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="725.98" y="767.5" ></text>
+</g>
+<g >
+<title>git_signature_free (10,101,010 samples, 0.07%)</title><rect x="177.7" y="837" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="180.66" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (40,404,040 samples, 0.26%)</title><rect x="1034.9" y="645" width="3.6" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1037.86" y="655.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="970.0" y="645" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="972.96" y="655.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (10,101,010 samples, 0.07%)</title><rect x="905.1" y="581" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="908.06" y="591.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.07%)</title><rect x="1307.1" y="821" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1310.07" y="831.5" ></text>
+</g>
+<g >
+<title>ksys_write (30,303,030 samples, 0.20%)</title><rect x="539.1" y="725" width="2.7" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="542.11" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="859.1" y="629" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="862.09" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.07%)</title><rect x="354.3" y="597" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="357.32" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="1033.1" y="597" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1036.06" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_put_io_end_defer (10,101,010 samples, 0.07%)</title><rect x="1123.2" y="517" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1126.19" y="527.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="248.9" y="565" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="251.86" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (20,202,020 samples, 0.13%)</title><rect x="1056.5" y="581" width="1.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1059.49" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (353,535,350 samples, 2.29%)</title><rect x="10.0" y="1045" width="31.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="13.00" y="1055.5" >[l..</text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.07%)</title><rect x="1222.3" y="645" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1225.34" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="870.8" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="873.81" y="687.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.07%)</title><rect x="580.6" y="549" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="583.57" y="559.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="1131.3" y="645" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1134.31" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (121,212,120 samples, 0.78%)</title><rect x="330.0" y="741" width="10.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="332.99" y="751.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="1031.3" y="613" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1034.25" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (50,505,050 samples, 0.33%)</title><rect x="1252.1" y="661" width="4.5" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="1255.09" y="671.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.07%)</title><rect x="70.4" y="853" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="73.39" y="863.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="1173.7" y="741" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1176.67" y="751.5" ></text>
+</g>
+<g >
+<title>dentry_kill (90,909,090 samples, 0.59%)</title><rect x="1073.6" y="645" width="8.1" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1076.62" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.59%)</title><rect x="1219.6" y="773" width="8.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1222.64" y="783.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="988.9" y="565" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="991.89" y="575.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (10,101,010 samples, 0.07%)</title><rect x="53.3" y="677" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="56.27" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="180.4" y="821" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="183.36" y="831.5" ></text>
+</g>
+<g >
+<title>libjson_to_string (20,202,020 samples, 0.13%)</title><rect x="12.7" y="949" width="1.8" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="15.70" y="959.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1246.7" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1249.68" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="475.1" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="478.11" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (20,202,020 samples, 0.13%)</title><rect x="550.8" y="661" width="1.8" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="553.82" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.07%)</title><rect x="842.0" y="309" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="844.97" y="319.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (40,404,040 samples, 0.26%)</title><rect x="1317.0" y="869" width="3.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1319.99" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="874.4" y="709" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="877.42" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_find_entry (10,101,010 samples, 0.07%)</title><rect x="472.4" y="677" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="475.40" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="556.2" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="559.23" y="703.5" ></text>
+</g>
+<g >
+<title>sysvec_reschedule_ipi (10,101,010 samples, 0.07%)</title><rect x="802.3" y="677" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="805.31" y="687.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.07%)</title><rect x="323.7" y="677" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="326.68" y="687.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="819.4" y="437" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="822.43" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (141,414,140 samples, 0.91%)</title><rect x="583.3" y="645" width="12.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="586.27" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="565.2" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="568.24" y="671.5" ></text>
+</g>
+<g >
+<title>d_walk (20,202,020 samples, 0.13%)</title><rect x="312.0" y="629" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="314.96" y="639.5" ></text>
+</g>
+<g >
+<title>do_linkat (111,111,110 samples, 0.72%)</title><rect x="601.3" y="709" width="9.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="604.30" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="875.3" y="677" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="878.32" y="687.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (40,404,040 samples, 0.26%)</title><rect x="1297.2" y="693" width="3.6" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1300.16" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (707,070,700 samples, 4.57%)</title><rect x="100.1" y="981" width="63.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="103.14" y="991.5" >entry_..</text>
+</g>
+<g >
+<title>lru_add_drain_cpu (10,101,010 samples, 0.07%)</title><rect x="819.4" y="501" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="822.43" y="511.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="13.6" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="16.61" y="799.5" ></text>
+</g>
+<g >
+<title>_IO_default_xsputn (10,101,010 samples, 0.07%)</title><rect x="900.6" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="903.56" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="588.7" y="485" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="591.68" y="495.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.07%)</title><rect x="177.7" y="709" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="180.66" y="719.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (30,303,030 samples, 0.20%)</title><rect x="635.6" y="645" width="2.7" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="638.55" y="655.5" ></text>
+</g>
+<g >
+<title>from_kuid (10,101,010 samples, 0.07%)</title><rect x="303.8" y="469" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="306.85" y="479.5" ></text>
+</g>
+<g >
+<title>inet_release (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="741" width="3.6" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1374.97" y="751.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.07%)</title><rect x="597.7" y="597" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="600.69" y="607.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.07%)</title><rect x="713.1" y="581" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="716.07" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="751.8" y="597" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="754.83" y="607.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (555,555,550 samples, 3.59%)</title><rect x="111.9" y="885" width="49.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="114.85" y="895.5" >open_..</text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.07%)</title><rect x="1240.4" y="629" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="1243.37" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="795.1" y="837" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="798.09" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1145.7" y="677" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1148.73" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="673.4" y="421" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="676.41" y="431.5" ></text>
+</g>
+<g >
+<title>__x64_sys_chmod (30,303,030 samples, 0.20%)</title><rect x="985.3" y="741" width="2.7" height="15.0" fill="rgb(0,237,201)" rx="2" ry="2" />
+<text x="988.28" y="751.5" ></text>
+</g>
+<g >
+<title>evict (50,505,050 samples, 0.33%)</title><rect x="434.5" y="725" width="4.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="437.55" y="735.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.07%)</title><rect x="293.9" y="453" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="296.93" y="463.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.07%)</title><rect x="489.5" y="709" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="492.53" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="958.2" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="961.24" y="623.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="405" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1013.52" y="415.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="1143.9" y="645" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1146.93" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="911.4" y="613" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="914.37" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1177.3" y="821" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1180.28" y="831.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.07%)</title><rect x="602.2" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="605.20" y="687.5" ></text>
+</g>
+<g >
+<title>do_wp_page (10,101,010 samples, 0.07%)</title><rect x="1357.6" y="725" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1360.55" y="735.5" ></text>
+</g>
+<g >
+<title>iput (50,505,050 samples, 0.33%)</title><rect x="434.5" y="741" width="4.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="437.55" y="751.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (30,303,030 samples, 0.20%)</title><rect x="1119.6" y="389" width="2.7" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1122.59" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (50,505,050 samples, 0.33%)</title><rect x="207.4" y="597" width="4.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="210.40" y="607.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.07%)</title><rect x="1246.7" y="789" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1249.68" y="799.5" ></text>
+</g>
+<g >
+<title>tasklet_action_common.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1320.6" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1323.59" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="1070.0" y="629" width="1.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1073.01" y="639.5" ></text>
+</g>
+<g >
+<title>get_current_dir_name (20,202,020 samples, 0.13%)</title><rect x="1320.6" y="917" width="1.8" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="1323.59" y="927.5" ></text>
+</g>
+<g >
+<title>readdir64 (10,101,010 samples, 0.07%)</title><rect x="502.1" y="789" width="1.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="505.15" y="799.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (20,202,020 samples, 0.13%)</title><rect x="1142.1" y="581" width="1.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1145.12" y="591.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="466.1" y="613" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="469.09" y="623.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.13%)</title><rect x="1308.0" y="869" width="1.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1310.98" y="879.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.07%)</title><rect x="1118.7" y="597" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1121.69" y="607.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.07%)</title><rect x="625.6" y="565" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="628.64" y="575.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="714.0" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="716.97" y="639.5" ></text>
+</g>
+<g >
+<title>cpuset_fork (10,101,010 samples, 0.07%)</title><rect x="1257.5" y="741" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1260.50" y="751.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.07%)</title><rect x="661.7" y="517" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="664.69" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.39%)</title><rect x="1043.9" y="773" width="5.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1046.87" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.07%)</title><rect x="996.1" y="565" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="999.10" y="575.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (10,101,010 samples, 0.07%)</title><rect x="818.5" y="533" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="821.53" y="543.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="1376.5" y="677" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1379.48" y="687.5" ></text>
+</g>
+<g >
+<title>net_rx_action (30,303,030 samples, 0.20%)</title><rect x="1372.9" y="437" width="2.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1375.87" y="447.5" ></text>
+</g>
+<g >
+<title>vfs_rename (10,101,010 samples, 0.07%)</title><rect x="771.7" y="661" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="774.66" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="969.1" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="972.06" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="860.9" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="863.89" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="384.1" y="661" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="387.07" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="887.0" y="613" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="890.03" y="623.5" ></text>
+</g>
+<g >
+<title>schedule (50,505,050 samples, 0.33%)</title><rect x="44.3" y="805" width="4.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="47.25" y="815.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.07%)</title><rect x="842.0" y="261" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="844.97" y="271.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="759.0" y="517" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="762.04" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="751.8" y="581" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="754.83" y="591.5" ></text>
+</g>
+<g >
+<title>ip_local_out (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="629" width="2.7" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1381.28" y="639.5" ></text>
+</g>
+<g >
+<title>create_empty_buffers (10,101,010 samples, 0.07%)</title><rect x="1051.1" y="629" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="1054.08" y="639.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.07%)</title><rect x="1017.7" y="549" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1020.73" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.07%)</title><rect x="543.6" y="773" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="546.61" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (10,101,010 samples, 0.07%)</title><rect x="1116.9" y="533" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1119.88" y="543.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="988.9" y="549" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="991.89" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (80,808,080 samples, 0.52%)</title><rect x="41.5" y="885" width="7.3" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="44.55" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.07%)</title><rect x="135.3" y="821" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="138.29" y="831.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="924.9" y="613" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="927.89" y="623.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="877.1" y="629" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="880.12" y="639.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.07%)</title><rect x="1371.1" y="357" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1374.07" y="367.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="180.4" y="789" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="183.36" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="481.4" y="725" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="484.42" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (60,606,060 samples, 0.39%)</title><rect x="912.3" y="661" width="5.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="915.27" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (20,202,020 samples, 0.13%)</title><rect x="1339.5" y="709" width="1.8" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1342.52" y="719.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.07%)</title><rect x="760.8" y="501" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="763.84" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_rename (40,404,040 samples, 0.26%)</title><rect x="817.6" y="693" width="3.6" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="820.63" y="703.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.07%)</title><rect x="241.7" y="629" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="244.65" y="639.5" ></text>
+</g>
+<g >
+<title>security_file_permission (10,101,010 samples, 0.07%)</title><rect x="1225.0" y="645" width="1.0" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" />
+<text x="1228.05" y="655.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.07%)</title><rect x="988.9" y="693" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="991.89" y="703.5" ></text>
+</g>
+<g >
+<title>truncate_cleanup_folio (10,101,010 samples, 0.07%)</title><rect x="1006.0" y="517" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1009.02" y="527.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="630.1" y="709" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="633.14" y="719.5" ></text>
+</g>
+<g >
+<title>security_file_permission (10,101,010 samples, 0.07%)</title><rect x="1316.1" y="709" width="0.9" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" />
+<text x="1319.09" y="719.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.07%)</title><rect x="173.1" y="853" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="176.15" y="863.5" ></text>
+</g>
+<g >
+<title>do_futex (20,202,020 samples, 0.13%)</title><rect x="23.5" y="869" width="1.8" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="26.52" y="879.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (80,808,080 samples, 0.52%)</title><rect x="57.8" y="549" width="7.2" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="60.77" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="1320.6" y="805" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1323.59" y="815.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.07%)</title><rect x="92.9" y="805" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="95.93" y="815.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1320.6" y="901" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1323.59" y="911.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="871.7" y="677" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="874.71" y="687.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.07%)</title><rect x="842.0" y="357" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="844.97" y="367.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="149.7" y="789" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="152.71" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="385.0" y="645" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="387.97" y="655.5" ></text>
+</g>
+<g >
+<title>anon_inode_getfile (10,101,010 samples, 0.07%)</title><rect x="71.3" y="805" width="0.9" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="74.29" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="1182.7" y="757" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1185.68" y="767.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (50,505,050 samples, 0.33%)</title><rect x="399.4" y="693" width="4.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="402.39" y="703.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (20,202,020 samples, 0.13%)</title><rect x="39.7" y="997" width="1.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="42.75" y="1007.5" ></text>
+</g>
+<g >
+<title>getname_flags (30,303,030 samples, 0.20%)</title><rect x="96.5" y="901" width="2.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="99.53" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1233.2" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1236.16" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="790.6" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="793.59" y="783.5" ></text>
+</g>
+<g >
+<title>_start (454,545,450 samples, 2.94%)</title><rect x="41.5" y="1045" width="40.6" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="44.55" y="1055.5" >_st..</text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.07%)</title><rect x="971.8" y="533" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="974.76" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="892.4" y="789" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="895.44" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (40,404,040 samples, 0.26%)</title><rect x="394.0" y="677" width="3.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="396.98" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="455.3" y="757" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="458.28" y="767.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.07%)</title><rect x="132.6" y="709" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="135.59" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.07%)</title><rect x="302.0" y="533" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="305.04" y="543.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="732.0" y="533" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="735.00" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (20,202,020 samples, 0.13%)</title><rect x="154.2" y="789" width="1.8" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="157.22" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.07%)</title><rect x="722.1" y="597" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="725.08" y="607.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.07%)</title><rect x="477.8" y="741" width="0.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="480.81" y="751.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (60,606,060 samples, 0.39%)</title><rect x="1082.6" y="565" width="5.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1085.63" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.07%)</title><rect x="475.1" y="565" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="478.11" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="680.6" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="683.62" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.07%)</title><rect x="429.1" y="805" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="432.14" y="815.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (80,808,080 samples, 0.52%)</title><rect x="421.9" y="757" width="7.2" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="424.93" y="767.5" ></text>
+</g>
+<g >
+<title>os_xsave (10,101,010 samples, 0.07%)</title><rect x="469.7" y="421" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="472.70" y="431.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="494.9" y="709" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="497.94" y="719.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.07%)</title><rect x="88.4" y="837" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="91.42" y="847.5" ></text>
+</g>
+<g >
+<title>cimple-server (808,080,800 samples, 5.23%)</title><rect x="10.0" y="1061" width="72.1" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="13.00" y="1071.5" >cimple-s..</text>
+</g>
+<g >
+<title>__es_remove_extent (10,101,010 samples, 0.07%)</title><rect x="513.9" y="565" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="516.87" y="575.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="86.6" y="853" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="89.62" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="741.9" y="565" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="744.91" y="575.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="162.3" y="885" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="165.33" y="895.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="486.8" y="629" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="489.83" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="75.8" y="837" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="78.80" y="847.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="650.0" y="741" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="652.97" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.07%)</title><rect x="444.5" y="725" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="447.46" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (40,404,040 samples, 0.26%)</title><rect x="993.4" y="725" width="3.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="996.40" y="735.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="185.8" y="533" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="188.77" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="207.4" y="549" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="210.40" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="833.9" y="549" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="836.85" y="559.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.07%)</title><rect x="796.9" y="741" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="799.90" y="751.5" ></text>
+</g>
+<g >
+<title>__lookup_mnt (10,101,010 samples, 0.07%)</title><rect x="1200.7" y="597" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1203.71" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (101,010,100 samples, 0.65%)</title><rect x="838.4" y="677" width="9.0" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="841.36" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="279.5" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="282.51" y="623.5" ></text>
+</g>
+<g >
+<title>dput (80,808,080 samples, 0.52%)</title><rect x="658.1" y="677" width="7.2" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="661.09" y="687.5" ></text>
+</g>
+<g >
+<title>__sys_connect_file (151,515,150 samples, 0.98%)</title><rect x="1376.5" y="853" width="13.5" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="1379.48" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="873.5" y="773" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="876.51" y="783.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (50,505,050 samples, 0.33%)</title><rect x="15.4" y="757" width="4.5" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="18.41" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_open (30,303,030 samples, 0.20%)</title><rect x="504.0" y="693" width="2.7" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="506.95" y="703.5" ></text>
+</g>
+<g >
+<title>git_repository_set_head (565,656,560 samples, 3.66%)</title><rect x="726.6" y="837" width="50.5" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="729.59" y="847.5" >git_r..</text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="780.7" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="783.67" y="607.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="828.4" y="677" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="831.45" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="444.5" y="821" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="447.46" y="831.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="757.2" y="533" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="760.24" y="543.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (30,303,030 samples, 0.20%)</title><rect x="468.8" y="565" width="2.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="471.80" y="575.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.07%)</title><rect x="1350.3" y="453" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1353.34" y="463.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (20,202,020 samples, 0.13%)</title><rect x="476.0" y="805" width="1.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="479.01" y="815.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.07%)</title><rect x="1189.9" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1192.90" y="671.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.07%)</title><rect x="1015.0" y="357" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1018.03" y="367.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1212.4" y="549" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1215.43" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (30,303,030 samples, 0.20%)</title><rect x="534.6" y="661" width="2.7" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="537.60" y="671.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (70,707,070 samples, 0.46%)</title><rect x="577.0" y="629" width="6.3" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="579.96" y="639.5" ></text>
+</g>
+<g >
+<title>d_splice_alias (10,101,010 samples, 0.07%)</title><rect x="786.1" y="549" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="789.08" y="559.5" ></text>
+</g>
+<g >
+<title>dentry_free (10,101,010 samples, 0.07%)</title><rect x="51.5" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="54.46" y="703.5" ></text>
+</g>
+<g >
+<title>wake_up_bit (10,101,010 samples, 0.07%)</title><rect x="988.9" y="357" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="991.89" y="367.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="549" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1343.42" y="559.5" ></text>
+</g>
+<g >
+<title>block_write_end (10,101,010 samples, 0.07%)</title><rect x="711.3" y="549" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="714.27" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.07%)</title><rect x="1208.8" y="709" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1211.82" y="719.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.07%)</title><rect x="643.7" y="565" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="646.66" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="372.4" y="485" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="375.35" y="495.5" ></text>
+</g>
+<g >
+<title>d_alloc (30,303,030 samples, 0.20%)</title><rect x="168.6" y="837" width="2.7" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="171.64" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="517.5" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="520.47" y="703.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.07%)</title><rect x="1095.3" y="661" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1098.25" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="1033.1" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1036.06" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="225.4" y="469" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="228.43" y="479.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.07%)</title><rect x="679.7" y="725" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="682.72" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="267.8" y="613" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="270.79" y="623.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.07%)</title><rect x="1314.3" y="741" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="1317.28" y="751.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.07%)</title><rect x="263.3" y="581" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="266.29" y="591.5" ></text>
+</g>
+<g >
+<title>unlink_cb (131,313,130 samples, 0.85%)</title><rect x="240.8" y="757" width="11.7" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="243.75" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="641.0" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="643.96" y="703.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.07%)</title><rect x="1205.2" y="597" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1208.22" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="924.9" y="645" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="927.89" y="655.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.07%)</title><rect x="193.0" y="629" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="195.98" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="1156.5" y="629" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1159.54" y="639.5" ></text>
+</g>
+<g >
+<title>hv_apic_read (30,303,030 samples, 0.20%)</title><rect x="1345.8" y="613" width="2.7" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1348.83" y="623.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="386.8" y="405" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="389.77" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="396.7" y="661" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="399.69" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_send_fin (90,909,090 samples, 0.59%)</title><rect x="56.9" y="629" width="8.1" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="59.87" y="639.5" ></text>
+</g>
+<g >
+<title>unlink (70,707,070 samples, 0.46%)</title><rect x="185.8" y="661" width="6.3" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="188.77" y="671.5" ></text>
+</g>
+<g >
+<title>should_failslab (10,101,010 samples, 0.07%)</title><rect x="772.6" y="645" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="775.56" y="655.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.07%)</title><rect x="803.2" y="741" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="806.21" y="751.5" ></text>
+</g>
+<g >
+<title>dput (60,606,060 samples, 0.39%)</title><rect x="833.0" y="693" width="5.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="835.95" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="412.9" y="549" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="415.91" y="559.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="833.0" y="469" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="835.95" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.07%)</title><rect x="1152.9" y="693" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="1155.94" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (151,515,150 samples, 0.98%)</title><rect x="1339.5" y="901" width="13.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1342.52" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1251.2" y="693" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1254.19" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (10,101,010 samples, 0.07%)</title><rect x="1152.9" y="629" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1155.94" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (80,808,080 samples, 0.52%)</title><rect x="184.9" y="709" width="7.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="187.87" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1232.3" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1235.26" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.39%)</title><rect x="904.2" y="725" width="5.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="907.16" y="735.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.07%)</title><rect x="176.8" y="805" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="179.75" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (20,202,020 samples, 0.13%)</title><rect x="507.6" y="645" width="1.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="510.56" y="655.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="886.1" y="581" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="889.13" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="248.0" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="250.96" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="754.5" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="757.53" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (20,202,020 samples, 0.13%)</title><rect x="705.0" y="533" width="1.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="707.96" y="543.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1221.4" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1224.44" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="202.0" y="597" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="204.99" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (545,454,540 samples, 3.53%)</title><rect x="268.7" y="709" width="48.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="271.69" y="719.5" >do_s..</text>
+</g>
+<g >
+<title>server_wait_for_action (50,505,050 samples, 0.33%)</title><rect x="22.6" y="997" width="4.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="25.62" y="1007.5" ></text>
+</g>
+<g >
+<title>__slab_free (10,101,010 samples, 0.07%)</title><rect x="301.1" y="501" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="304.14" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (242,424,240 samples, 1.57%)</title><rect x="658.1" y="725" width="21.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="661.09" y="735.5" >d..</text>
+</g>
+<g >
+<title>__x64_sys_rmdir (191,919,190 samples, 1.24%)</title><rect x="214.6" y="661" width="17.1" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="217.61" y="671.5" ></text>
+</g>
+<g >
+<title>build_open_flags (10,101,010 samples, 0.07%)</title><rect x="377.8" y="773" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="380.76" y="783.5" ></text>
+</g>
+<g >
+<title>process_backlog (20,202,020 samples, 0.13%)</title><rect x="1349.4" y="533" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1352.44" y="543.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="510.3" y="533" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="513.26" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mb_prefetch_fini (10,101,010 samples, 0.07%)</title><rect x="698.6" y="469" width="0.9" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="701.65" y="479.5" ></text>
+</g>
+<g >
+<title>bpf_ringbuf_submit (70,707,070 samples, 0.46%)</title><rect x="1342.2" y="693" width="6.3" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1345.23" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1205.2" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1208.22" y="687.5" ></text>
+</g>
+<g >
+<title>_IO_default_xsputn (10,101,010 samples, 0.07%)</title><rect x="896.9" y="709" width="1.0" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="899.95" y="719.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.07%)</title><rect x="1017.7" y="597" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1020.73" y="607.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (10,101,010 samples, 0.07%)</title><rect x="1350.3" y="469" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1353.34" y="479.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (50,505,050 samples, 0.33%)</title><rect x="616.6" y="709" width="4.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="619.62" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.07%)</title><rect x="1005.1" y="453" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1008.11" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="691.4" y="677" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="694.44" y="687.5" ></text>
+</g>
+<g >
+<title>__send_ipi_one (20,202,020 samples, 0.13%)</title><rect x="1381.0" y="613" width="1.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1383.99" y="623.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="956.4" y="709" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="959.44" y="719.5" ></text>
+</g>
+<g >
+<title>ci_run_script (636,363,630 samples, 4.11%)</title><rect x="1256.6" y="917" width="56.8" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1259.60" y="927.5" >ci_run..</text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.07%)</title><rect x="1247.6" y="757" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="1250.58" y="767.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.07%)</title><rect x="927.6" y="565" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="930.60" y="575.5" ></text>
+</g>
+<g >
+<title>unlink_cb (181,818,180 samples, 1.18%)</title><rect x="382.3" y="821" width="16.2" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="385.27" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.59%)</title><rect x="1219.6" y="821" width="8.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1222.64" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="871.7" y="693" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="874.71" y="703.5" ></text>
+</g>
+<g >
+<title>scsi_dma_map (10,101,010 samples, 0.07%)</title><rect x="1082.6" y="293" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="1085.63" y="303.5" ></text>
+</g>
+<g >
+<title>__send_ipi_one (40,404,040 samples, 0.26%)</title><rect x="1342.2" y="613" width="3.6" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1345.23" y="623.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="1229.6" y="677" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1232.56" y="687.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (10,101,010 samples, 0.07%)</title><rect x="1050.2" y="597" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1053.18" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (40,404,040 samples, 0.26%)</title><rect x="195.7" y="597" width="3.6" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="198.68" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="1179.1" y="773" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1182.08" y="783.5" ></text>
+</g>
+<g >
+<title>jbd2_log_do_checkpoint (10,101,010 samples, 0.07%)</title><rect x="1073.6" y="469" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="1076.62" y="479.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1226.9" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1229.85" y="703.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (30,303,030 samples, 0.20%)</title><rect x="979.9" y="661" width="2.7" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="982.88" y="671.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (80,808,080 samples, 0.52%)</title><rect x="1327.8" y="421" width="7.2" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1330.81" y="431.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="444.5" y="885" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="447.46" y="895.5" ></text>
+</g>
+<g >
+<title>iput (50,505,050 samples, 0.33%)</title><rect x="1002.4" y="597" width="4.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1005.41" y="607.5" ></text>
+</g>
+<g >
+<title>open64 (40,404,040 samples, 0.26%)</title><rect x="700.5" y="709" width="3.6" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="703.45" y="719.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.07%)</title><rect x="1015.0" y="453" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1018.03" y="463.5" ></text>
+</g>
+<g >
+<title>__dput_to_list (10,101,010 samples, 0.07%)</title><rect x="375.1" y="645" width="0.9" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="378.06" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="964.6" y="741" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="967.55" y="751.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.07%)</title><rect x="795.1" y="693" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="798.09" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="743.7" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="746.72" y="703.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="48.8" y="885" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="51.76" y="895.5" ></text>
+</g>
+<g >
+<title>unlink_cb (80,808,080 samples, 0.52%)</title><rect x="434.5" y="869" width="7.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="437.55" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="896.0" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="899.05" y="783.5" ></text>
+</g>
+<g >
+<title>pthread_mutex_lock (10,101,010 samples, 0.07%)</title><rect x="1177.3" y="789" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1180.28" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="508.5" y="565" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="511.46" y="575.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (10,101,010 samples, 0.07%)</title><rect x="679.7" y="805" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="682.72" y="815.5" ></text>
+</g>
+<g >
+<title>iterate_dir (20,202,020 samples, 0.13%)</title><rect x="893.3" y="677" width="1.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="896.34" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.07%)</title><rect x="609.4" y="629" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="612.41" y="639.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.07%)</title><rect x="161.4" y="885" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="164.43" y="895.5" ></text>
+</g>
+<g >
+<title>libjson_set_int_internal (10,101,010 samples, 0.07%)</title><rect x="1357.6" y="901" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1360.55" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="377.8" y="805" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="380.76" y="815.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.07%)</title><rect x="852.8" y="629" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="855.78" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.07%)</title><rect x="192.1" y="661" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="195.08" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="500.3" y="725" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="503.35" y="735.5" ></text>
+</g>
+<g >
+<title>log_entry_start (30,303,030 samples, 0.20%)</title><rect x="1353.0" y="933" width="2.7" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1356.04" y="943.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_update_sb_log_tail (10,101,010 samples, 0.07%)</title><rect x="1073.6" y="421" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1076.62" y="431.5" ></text>
+</g>
+<g >
+<title>perf_syscall_enter (10,101,010 samples, 0.07%)</title><rect x="251.6" y="645" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="254.57" y="655.5" ></text>
+</g>
+<g >
+<title>destroy_inode (10,101,010 samples, 0.07%)</title><rect x="357.0" y="645" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="360.03" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="211.9" y="693" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="214.91" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (10,101,010 samples, 0.07%)</title><rect x="74.0" y="885" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="77.00" y="895.5" ></text>
+</g>
+<g >
+<title>inet_release (121,212,120 samples, 0.78%)</title><rect x="54.2" y="677" width="10.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="57.17" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="252.5" y="757" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="255.47" y="767.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.07%)</title><rect x="802.3" y="597" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="805.31" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (10,101,010 samples, 0.07%)</title><rect x="465.2" y="597" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="468.19" y="607.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.07%)</title><rect x="414.7" y="805" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="417.72" y="815.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.07%)</title><rect x="166.8" y="885" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="169.84" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="150.6" y="757" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="153.61" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="444.5" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="447.46" y="751.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="830.2" y="709" width="1.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="833.25" y="719.5" ></text>
+</g>
+<g >
+<title>net_close (141,414,140 samples, 0.91%)</title><rect x="52.4" y="901" width="12.6" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="55.36" y="911.5" ></text>
+</g>
+<g >
+<title>vfs_rename (101,010,100 samples, 0.65%)</title><rect x="1081.7" y="661" width="9.0" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1084.73" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="736.5" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="739.51" y="671.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="629" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1233.46" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="1243.1" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1246.08" y="671.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.07%)</title><rect x="1162.9" y="549" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1165.85" y="559.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="1349.4" y="693" width="1.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1352.44" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.07%)</title><rect x="559.8" y="725" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="562.84" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1076.3" y="517" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1079.32" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="586.9" y="437" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="589.88" y="447.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.07%)</title><rect x="606.7" y="661" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="609.71" y="671.5" ></text>
+</g>
+<g >
+<title>__send (70,707,070 samples, 0.46%)</title><rect x="14.5" y="901" width="6.3" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="17.51" y="911.5" ></text>
+</g>
+<g >
+<title>call_filldir (10,101,010 samples, 0.07%)</title><rect x="624.7" y="661" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="627.74" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="693" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1233.46" y="703.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (10,101,010 samples, 0.07%)</title><rect x="559.8" y="693" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="562.84" y="703.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.07%)</title><rect x="477.8" y="853" width="0.9" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="480.81" y="863.5" ></text>
+</g>
+<g >
+<title>__tcp_select_window (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="629" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1339.82" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1191.7" y="757" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1194.70" y="767.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.07%)</title><rect x="1022.2" y="645" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1025.24" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_write (70,707,070 samples, 0.46%)</title><rect x="1096.2" y="645" width="6.3" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1099.15" y="655.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.07%)</title><rect x="928.5" y="533" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="931.50" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_append (60,606,060 samples, 0.39%)</title><rect x="944.7" y="565" width="5.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="947.72" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.52%)</title><rect x="517.5" y="773" width="7.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="520.47" y="783.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.07%)</title><rect x="656.3" y="613" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="659.28" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (20,202,020 samples, 0.13%)</title><rect x="728.4" y="613" width="1.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="731.39" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.07%)</title><rect x="1078.1" y="501" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1081.13" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="761.7" y="677" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="764.74" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="317.4" y="725" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="320.37" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.07%)</title><rect x="354.3" y="613" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="357.32" y="623.5" ></text>
+</g>
+<g >
+<title>do_faccessat (40,404,040 samples, 0.26%)</title><rect x="989.8" y="741" width="3.6" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="992.79" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="878.9" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="881.92" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (60,606,060 samples, 0.39%)</title><rect x="944.7" y="517" width="5.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="947.72" y="527.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.07%)</title><rect x="961.8" y="677" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="964.85" y="687.5" ></text>
+</g>
+<g >
+<title>task_work_run (131,313,130 samples, 0.85%)</title><rect x="53.3" y="773" width="11.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="56.27" y="783.5" ></text>
+</g>
+<g >
+<title>scsi_done_internal (10,101,010 samples, 0.07%)</title><rect x="43.4" y="629" width="0.9" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="46.35" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_delayed_block (10,101,010 samples, 0.07%)</title><rect x="539.1" y="581" width="0.9" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="542.11" y="591.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (20,202,020 samples, 0.13%)</title><rect x="120.0" y="805" width="1.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="122.97" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.07%)</title><rect x="1069.1" y="597" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1072.11" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1228.7" y="773" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1231.65" y="783.5" ></text>
+</g>
+<g >
+<title>getdents64 (30,303,030 samples, 0.20%)</title><rect x="681.5" y="805" width="2.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="684.52" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1155.6" y="677" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1158.64" y="687.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="611.2" y="709" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="614.21" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="832.1" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="835.05" y="751.5" ></text>
+</g>
+<g >
+<title>file_close (30,303,030 samples, 0.20%)</title><rect x="49.7" y="901" width="2.7" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="52.66" y="911.5" ></text>
+</g>
+<g >
+<title>xas_descend (10,101,010 samples, 0.07%)</title><rect x="262.4" y="469" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="265.38" y="479.5" ></text>
+</g>
+<g >
+<title>evict (80,808,080 samples, 0.52%)</title><rect x="810.4" y="613" width="7.2" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="813.42" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,767,676,740 samples, 17.90%)</title><rect x="182.2" y="869" width="246.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="185.16" y="879.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="1043.9" y="645" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1046.87" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_fcntl (10,101,010 samples, 0.07%)</title><rect x="255.2" y="709" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="258.17" y="719.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (40,404,040 samples, 0.26%)</title><rect x="700.5" y="645" width="3.6" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="703.45" y="655.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (10,101,010 samples, 0.07%)</title><rect x="15.4" y="613" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="18.41" y="623.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.07%)</title><rect x="632.8" y="645" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="635.85" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (60,606,060 samples, 0.39%)</title><rect x="873.5" y="789" width="5.4" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="876.51" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="394.0" y="629" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="396.98" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="1212.4" y="693" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1215.43" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.59%)</title><rect x="41.5" y="917" width="8.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="44.55" y="927.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="596.8" y="693" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="599.79" y="703.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.07%)</title><rect x="817.6" y="485" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="820.63" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="785.2" y="677" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="788.18" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1189.9" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1192.90" y="783.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.07%)</title><rect x="208.3" y="501" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="211.30" y="511.5" ></text>
+</g>
+<g >
+<title>git_repository_free (20,202,020 samples, 0.13%)</title><rect x="888.8" y="821" width="1.8" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="891.84" y="831.5" ></text>
+</g>
+<g >
+<title>security_current_getsecid_subj (10,101,010 samples, 0.07%)</title><rect x="101.9" y="853" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="104.94" y="863.5" ></text>
+</g>
+<g >
+<title>__vfs_getxattr (10,101,010 samples, 0.07%)</title><rect x="761.7" y="485" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="764.74" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="875.3" y="693" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="878.32" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="266.0" y="581" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="268.99" y="591.5" ></text>
+</g>
+<g >
+<title>readdir64 (30,303,030 samples, 0.20%)</title><rect x="1224.1" y="741" width="2.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1227.15" y="751.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="1105.2" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1108.17" y="639.5" ></text>
+</g>
+<g >
+<title>eth_type_trans (10,101,010 samples, 0.07%)</title><rect x="63.2" y="405" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="66.18" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_superblock_csum_set (10,101,010 samples, 0.07%)</title><rect x="661.7" y="549" width="0.9" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" />
+<text x="664.69" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (303,030,300 samples, 1.96%)</title><rect x="349.8" y="757" width="27.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="352.82" y="767.5" >e..</text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.07%)</title><rect x="431.8" y="741" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="434.84" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="1115.1" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1118.08" y="543.5" ></text>
+</g>
+<g >
+<title>__ctype_b_loc (10,101,010 samples, 0.07%)</title><rect x="804.1" y="757" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="807.11" y="767.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="16.3" y="325" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="19.31" y="335.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.07%)</title><rect x="807.7" y="565" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="810.71" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="403.9" y="597" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="406.90" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1190.8" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1193.80" y="767.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (20,202,020 samples, 0.13%)</title><rect x="253.4" y="725" width="1.8" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="256.37" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="25.3" y="933" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="28.32" y="943.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.07%)</title><rect x="1102.5" y="645" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1105.46" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1253.0" y="581" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1255.99" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="687.8" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="690.83" y="719.5" ></text>
+</g>
+<g >
+<title>copy_thread (10,101,010 samples, 0.07%)</title><rect x="38.8" y="949" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="41.84" y="959.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1239.5" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1242.47" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.07%)</title><rect x="661.7" y="565" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="664.69" y="575.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="261" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1084.73" y="271.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (20,202,020 samples, 0.13%)</title><rect x="974.5" y="693" width="1.8" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="977.47" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="764.4" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="767.45" y="623.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (30,303,030 samples, 0.20%)</title><rect x="1349.4" y="741" width="2.7" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1352.44" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="869.0" y="789" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="872.01" y="799.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="581" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1343.42" y="591.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="592.3" y="517" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="595.29" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_rename (40,404,040 samples, 0.26%)</title><rect x="817.6" y="661" width="3.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="820.63" y="671.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.07%)</title><rect x="300.2" y="533" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="303.24" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_write (80,808,080 samples, 0.52%)</title><rect x="509.4" y="693" width="7.2" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="512.36" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.07%)</title><rect x="1353.0" y="757" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1356.04" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.33%)</title><rect x="595.9" y="741" width="4.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="598.89" y="751.5" ></text>
+</g>
+<g >
+<title>__fput (131,313,130 samples, 0.85%)</title><rect x="53.3" y="741" width="11.7" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="56.27" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="847.4" y="821" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="850.37" y="831.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.13%)</title><rect x="1052.9" y="821" width="1.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1055.89" y="831.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.07%)</title><rect x="1102.5" y="677" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1105.46" y="687.5" ></text>
+</g>
+<g >
+<title>rmdir (70,707,070 samples, 0.46%)</title><rect x="434.5" y="837" width="6.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="437.55" y="847.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.07%)</title><rect x="257.0" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="259.98" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="766.3" y="661" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="769.25" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="298.4" y="533" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="301.44" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (303,030,300 samples, 1.96%)</title><rect x="349.8" y="741" width="27.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="352.82" y="751.5" >d..</text>
+</g>
+<g >
+<title>inflateResetKeep (10,101,010 samples, 0.07%)</title><rect x="966.4" y="661" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="969.36" y="671.5" ></text>
+</g>
+<g >
+<title>__folio_start_writeback (10,101,010 samples, 0.07%)</title><rect x="1125.0" y="469" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="1128.00" y="479.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.07%)</title><rect x="398.5" y="741" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="401.49" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="333.6" y="565" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="336.59" y="575.5" ></text>
+</g>
+<g >
+<title>free_unref_page (10,101,010 samples, 0.07%)</title><rect x="227.2" y="197" width="0.9" height="15.0" fill="rgb(0,238,205)" rx="2" ry="2" />
+<text x="230.23" y="207.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.07%)</title><rect x="1239.5" y="661" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1242.47" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="851.9" y="821" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="854.88" y="831.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="293" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1013.52" y="303.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="238.0" y="725" width="2.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="241.05" y="735.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="672.5" y="501" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="675.51" y="511.5" ></text>
+</g>
+<g >
+<title>filemap_flush (111,111,110 samples, 0.72%)</title><rect x="668.9" y="613" width="9.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="671.90" y="623.5" ></text>
+</g>
+<g >
+<title>_find_next_zero_bit (10,101,010 samples, 0.07%)</title><rect x="1165.6" y="581" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1168.56" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="376.9" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="379.86" y="751.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="650.0" y="677" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="652.97" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (60,606,060 samples, 0.39%)</title><rect x="1008.7" y="613" width="5.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1011.72" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="494.9" y="693" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="497.94" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (141,414,140 samples, 0.91%)</title><rect x="1158.3" y="629" width="12.7" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1161.35" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="721.2" y="773" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="724.18" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.07%)</title><rect x="679.7" y="757" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="682.72" y="767.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="117.3" y="821" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="120.26" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="533.7" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="536.70" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.52%)</title><rect x="517.5" y="757" width="7.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="520.47" y="767.5" ></text>
+</g>
+<g >
+<title>filemap_read (20,202,020 samples, 0.13%)</title><rect x="1210.6" y="581" width="1.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1213.63" y="591.5" ></text>
+</g>
+<g >
+<title>getdents64 (80,808,080 samples, 0.52%)</title><rect x="342.6" y="789" width="7.2" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="345.61" y="799.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="677" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1339.82" y="687.5" ></text>
+</g>
+<g >
+<title>folio_create_empty_buffers (10,101,010 samples, 0.07%)</title><rect x="644.6" y="533" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="647.57" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1231.4" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1234.36" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_child_process (20,202,020 samples, 0.13%)</title><rect x="1379.2" y="309" width="1.8" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1382.18" y="319.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="303.8" y="533" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="306.85" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (60,606,060 samples, 0.39%)</title><rect x="912.3" y="581" width="5.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="915.27" y="591.5" ></text>
+</g>
+<g >
+<title>file_modified (10,101,010 samples, 0.07%)</title><rect x="761.7" y="565" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="764.74" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="833.0" y="501" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="835.95" y="511.5" ></text>
+</g>
+<g >
+<title>lookup_dcache (10,101,010 samples, 0.07%)</title><rect x="351.6" y="677" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="354.62" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (10,101,010 samples, 0.07%)</title><rect x="760.8" y="533" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="763.84" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_find_dest_de (10,101,010 samples, 0.07%)</title><rect x="695.9" y="565" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="698.94" y="575.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="654.5" y="613" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="657.48" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (2,626,262,600 samples, 16.98%)</title><rect x="560.7" y="869" width="234.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="563.74" y="879.5" >[libgit2.so.1.1.0]</text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode_prepare (10,101,010 samples, 0.07%)</title><rect x="628.3" y="709" width="0.9" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="631.34" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.07%)</title><rect x="962.7" y="597" width="1.0" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="965.75" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (40,404,040 samples, 0.26%)</title><rect x="695.9" y="661" width="3.6" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="698.94" y="671.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.07%)</title><rect x="214.6" y="613" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="217.61" y="623.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.07%)</title><rect x="92.9" y="789" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="95.93" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (20,202,020 samples, 0.13%)</title><rect x="1171.9" y="693" width="1.8" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1174.87" y="703.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.07%)</title><rect x="1307.1" y="837" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1310.07" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.07%)</title><rect x="743.7" y="677" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="746.72" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.52%)</title><rect x="531.9" y="757" width="7.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="534.89" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.13%)</title><rect x="1011.4" y="485" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1014.42" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="440.9" y="805" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="443.86" y="815.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="227.2" y="405" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="230.23" y="415.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="412.0" y="597" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="415.01" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (20,202,020 samples, 0.13%)</title><rect x="1019.5" y="645" width="1.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1022.54" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="304.7" y="501" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="307.75" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (30,303,030 samples, 0.20%)</title><rect x="817.6" y="645" width="2.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="820.63" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (70,707,070 samples, 0.46%)</title><rect x="1096.2" y="613" width="6.3" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1099.15" y="623.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="485" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1084.73" y="495.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="830.2" y="773" width="1.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="833.25" y="783.5" ></text>
+</g>
+<g >
+<title>do_rmdir (535,353,530 samples, 3.46%)</title><rect x="268.7" y="677" width="47.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="271.69" y="687.5" >do_r..</text>
+</g>
+<g >
+<title>create_empty_buffers (10,101,010 samples, 0.07%)</title><rect x="784.3" y="565" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="787.28" y="575.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="672.5" y="469" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="675.51" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.07%)</title><rect x="348.9" y="693" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="351.92" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_forget (10,101,010 samples, 0.07%)</title><rect x="371.5" y="533" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="374.45" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="970.0" y="725" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="972.96" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="971.8" y="773" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="974.76" y="783.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.07%)</title><rect x="1015.0" y="565" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1018.03" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="739.2" y="613" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="742.21" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="242.6" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="245.55" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="988.0" y="789" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="990.99" y="799.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.07%)</title><rect x="178.6" y="821" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="181.56" y="831.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.07%)</title><rect x="1226.9" y="533" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="1229.85" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (20,202,020 samples, 0.13%)</title><rect x="834.8" y="565" width="1.8" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="837.76" y="575.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (10,101,010 samples, 0.07%)</title><rect x="1371.1" y="597" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1374.07" y="607.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.07%)</title><rect x="10.9" y="821" width="0.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="13.90" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="502.1" y="613" width="1.0" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="505.15" y="623.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.07%)</title><rect x="599.5" y="725" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="602.50" y="735.5" ></text>
+</g>
+<g >
+<title>end_bio_bh_io_sync (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="325" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1084.73" y="335.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="751.8" y="645" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="754.83" y="655.5" ></text>
+</g>
+<g >
+<title>syscall_trace_enter.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="461.6" y="629" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="464.59" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (10,101,010 samples, 0.07%)</title><rect x="206.5" y="581" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="209.50" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="849.2" y="725" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="852.18" y="735.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="453" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1221.74" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="184.9" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="187.87" y="671.5" ></text>
+</g>
+<g >
+<title>fscrypt_policy_to_inherit (10,101,010 samples, 0.07%)</title><rect x="137.1" y="821" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="140.09" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="1000.6" y="661" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1003.61" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="736.5" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="739.51" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1204.3" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1207.32" y="655.5" ></text>
+</g>
+<g >
+<title>bpf_prog_fd16de16241b0bed_kprobe_tcp_connect (70,707,070 samples, 0.46%)</title><rect x="1342.2" y="709" width="6.3" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="1345.23" y="719.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="901.5" y="517" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="904.46" y="527.5" ></text>
+</g>
+<g >
+<title>truncate_inode_partial_folio (10,101,010 samples, 0.07%)</title><rect x="816.7" y="549" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="819.73" y="559.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.07%)</title><rect x="802.3" y="629" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="805.31" y="639.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="661" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1064.90" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="783.4" y="629" width="1.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="786.38" y="639.5" ></text>
+</g>
+<g >
+<title>_find_next_bit (10,101,010 samples, 0.07%)</title><rect x="1164.7" y="581" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1167.66" y="591.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.07%)</title><rect x="450.8" y="613" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="453.77" y="623.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="1116.9" y="453" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1119.88" y="463.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited_flags (10,101,010 samples, 0.07%)</title><rect x="510.3" y="613" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="513.26" y="623.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.07%)</title><rect x="906.0" y="581" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="908.96" y="591.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.07%)</title><rect x="651.8" y="613" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="654.78" y="623.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.07%)</title><rect x="537.3" y="661" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="540.30" y="671.5" ></text>
+</g>
+<g >
+<title>git_odb_read_header (20,202,020 samples, 0.13%)</title><rect x="474.2" y="837" width="1.8" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="477.21" y="847.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="565" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1064.90" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_create (30,303,030 samples, 0.20%)</title><rect x="506.7" y="677" width="2.7" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="509.66" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="971.8" y="661" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="974.76" y="671.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.07%)</title><rect x="883.4" y="581" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="886.43" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="1002.4" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1005.41" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_xattr_get (10,101,010 samples, 0.07%)</title><rect x="761.7" y="453" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="764.74" y="463.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (10,101,010 samples, 0.07%)</title><rect x="1080.8" y="549" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1083.83" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.46%)</title><rect x="745.5" y="661" width="6.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="748.52" y="671.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="776.2" y="485" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="779.17" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (262,626,260 samples, 1.70%)</title><rect x="797.8" y="789" width="23.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="800.80" y="799.5" >[..</text>
+</g>
+<g >
+<title>nd_jump_root (10,101,010 samples, 0.07%)</title><rect x="186.7" y="533" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="189.67" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="741.0" y="629" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="744.01" y="639.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_uncharge_pages (10,101,010 samples, 0.07%)</title><rect x="406.6" y="437" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="409.60" y="447.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="733.8" y="581" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="736.80" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (20,202,020 samples, 0.13%)</title><rect x="834.8" y="549" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="837.76" y="559.5" ></text>
+</g>
+<g >
+<title>fault_in_iov_iter_readable (10,101,010 samples, 0.07%)</title><rect x="648.2" y="581" width="0.9" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="651.17" y="591.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="652.7" y="597" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="655.68" y="607.5" ></text>
+</g>
+<g >
+<title>libjson_free (10,101,010 samples, 0.07%)</title><rect x="1358.5" y="885" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1361.45" y="895.5" ></text>
+</g>
+<g >
+<title>ip_local_out (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="517" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1368.66" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (60,606,060 samples, 0.39%)</title><rect x="334.5" y="677" width="5.4" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="337.49" y="687.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.07%)</title><rect x="1082.6" y="453" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1085.63" y="463.5" ></text>
+</g>
+<g >
+<title>apparmor_path_mkdir (10,101,010 samples, 0.07%)</title><rect x="1130.4" y="741" width="0.9" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1133.40" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (20,202,020 samples, 0.13%)</title><rect x="681.5" y="693" width="1.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="684.52" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_child_process (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="309" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1343.42" y="319.5" ></text>
+</g>
+<g >
+<title>dput (80,808,080 samples, 0.52%)</title><rect x="1110.6" y="677" width="7.2" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1113.57" y="687.5" ></text>
+</g>
+<g >
+<title>do_writepages (60,606,060 samples, 0.39%)</title><rect x="1008.7" y="549" width="5.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1011.72" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.07%)</title><rect x="996.1" y="613" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="999.10" y="623.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="1321.5" y="853" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1324.50" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="734.7" y="533" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="737.70" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.20%)</title><rect x="378.7" y="741" width="2.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="381.66" y="751.5" ></text>
+</g>
+<g >
+<title>blk_mq_submit_bio (10,101,010 samples, 0.07%)</title><rect x="467.9" y="485" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="470.90" y="495.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="729.3" y="549" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="732.29" y="559.5" ></text>
+</g>
+<g >
+<title>tcp_push (50,505,050 samples, 0.33%)</title><rect x="15.4" y="773" width="4.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="18.41" y="783.5" ></text>
+</g>
+<g >
+<title>ip_rcv (10,101,010 samples, 0.07%)</title><rect x="1373.8" y="357" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1376.78" y="367.5" ></text>
+</g>
+<g >
+<title>__napi_poll (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="341" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1368.66" y="351.5" ></text>
+</g>
+<g >
+<title>is_vmalloc_addr (10,101,010 samples, 0.07%)</title><rect x="891.5" y="629" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="894.54" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="708.6" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="711.56" y="671.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.07%)</title><rect x="98.3" y="821" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="101.33" y="831.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1148.4" y="661" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1151.43" y="671.5" ></text>
+</g>
+<g >
+<title>fscrypt_match_name (10,101,010 samples, 0.07%)</title><rect x="472.4" y="613" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="475.40" y="623.5" ></text>
+</g>
+<g >
+<title>inet_release (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="741" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1339.82" y="751.5" ></text>
+</g>
+<g >
+<title>[[kernel.kallsyms]] (20,202,020 samples, 0.13%)</title><rect x="1381.0" y="597" width="1.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1383.99" y="607.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.07%)</title><rect x="684.2" y="741" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="687.23" y="751.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.07%)</title><rect x="1222.3" y="581" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1225.34" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (50,505,050 samples, 0.33%)</title><rect x="704.1" y="613" width="4.5" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="707.06" y="623.5" ></text>
+</g>
+<g >
+<title>[unknown] (1,040,404,030 samples, 6.73%)</title><rect x="82.1" y="1045" width="92.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="85.11" y="1055.5" >[unknown]</text>
+</g>
+<g >
+<title>iterate_dir (60,606,060 samples, 0.39%)</title><rect x="622.9" y="709" width="5.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="625.93" y="719.5" ></text>
+</g>
+<g >
+<title>lock_vma_under_rcu (10,101,010 samples, 0.07%)</title><rect x="1309.8" y="805" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1312.78" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="795.1" y="853" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="798.09" y="863.5" ></text>
+</g>
+<g >
+<title>__check_heap_object (10,101,010 samples, 0.07%)</title><rect x="1109.7" y="597" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1112.67" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.07%)</title><rect x="786.1" y="581" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="789.08" y="591.5" ></text>
+</g>
+<g >
+<title>__sock_release (121,212,120 samples, 0.78%)</title><rect x="54.2" y="709" width="10.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="57.17" y="719.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.07%)</title><rect x="199.3" y="581" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="202.29" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.07%)</title><rect x="1204.3" y="597" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1207.32" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.07%)</title><rect x="247.1" y="581" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="250.06" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="975.4" y="581" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="978.37" y="591.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (30,303,030 samples, 0.20%)</title><rect x="1386.4" y="437" width="2.7" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1389.39" y="447.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.07%)</title><rect x="1194.4" y="597" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="1197.40" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.07%)</title><rect x="710.4" y="581" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="713.37" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1219.6" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1222.64" y="751.5" ></text>
+</g>
+<g >
+<title>mkdir (212,121,210 samples, 1.37%)</title><rect x="932.1" y="693" width="18.9" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="935.10" y="703.5" ></text>
+</g>
+<g >
+<title>realpath (10,101,010 samples, 0.07%)</title><rect x="494.0" y="773" width="0.9" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="497.04" y="783.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (10,101,010 samples, 0.07%)</title><rect x="1371.1" y="389" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1374.07" y="399.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.46%)</title><rect x="1234.1" y="773" width="6.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1237.06" y="783.5" ></text>
+</g>
+<g >
+<title>do_futex (10,101,010 samples, 0.07%)</title><rect x="74.0" y="869" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="77.00" y="879.5" ></text>
+</g>
+<g >
+<title>list_lru_add (10,101,010 samples, 0.07%)</title><rect x="1053.8" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1056.79" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="1075.4" y="533" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1078.42" y="543.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.07%)</title><rect x="1322.4" y="901" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1325.40" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (60,606,060 samples, 0.39%)</title><rect x="260.6" y="677" width="5.4" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="263.58" y="687.5" ></text>
+</g>
+<g >
+<title>do_readlinkat (10,101,010 samples, 0.07%)</title><rect x="1194.4" y="693" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1197.40" y="703.5" ></text>
+</g>
+<g >
+<title>ip_rcv (50,505,050 samples, 0.33%)</title><rect x="58.7" y="293" width="4.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="61.67" y="303.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.07%)</title><rect x="275.9" y="565" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="278.90" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="667.1" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="670.10" y="591.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.07%)</title><rect x="851.0" y="741" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="853.98" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="971.8" y="741" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="974.76" y="751.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="293" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1368.66" y="303.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1099.8" y="469" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1102.76" y="479.5" ></text>
+</g>
+<g >
+<title>git_refdb_open (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="821" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1221.74" y="831.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="93.8" y="725" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="96.83" y="735.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.07%)</title><rect x="988.9" y="469" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="991.89" y="479.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1246.7" y="837" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1249.68" y="847.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="700.5" y="581" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="703.45" y="591.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.07%)</title><rect x="868.1" y="469" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="871.11" y="479.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.07%)</title><rect x="1149.3" y="661" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1152.33" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (10,101,010 samples, 0.07%)</title><rect x="1367.5" y="709" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1370.47" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (80,808,080 samples, 0.52%)</title><rect x="658.1" y="581" width="7.2" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="661.09" y="591.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="398.5" y="645" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="401.49" y="655.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.07%)</title><rect x="406.6" y="517" width="0.9" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="409.60" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="394.0" y="661" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="396.98" y="671.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="421" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1343.42" y="431.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.07%)</title><rect x="550.8" y="597" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="553.82" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.07%)</title><rect x="1069.1" y="613" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1072.11" y="623.5" ></text>
+</g>
+<g >
+<title>git_reference__alloc_symbolic (10,101,010 samples, 0.07%)</title><rect x="709.5" y="725" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="712.46" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.33%)</title><rect x="1367.5" y="837" width="4.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1370.47" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.07%)</title><rect x="1251.2" y="741" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1254.19" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="93.8" y="741" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="96.83" y="751.5" ></text>
+</g>
+<g >
+<title>__release_sock (10,101,010 samples, 0.07%)</title><rect x="1326.9" y="741" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1329.90" y="751.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="565.2" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="568.24" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="455.3" y="725" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="458.28" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1174.6" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1177.57" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1205.2" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1208.22" y="671.5" ></text>
+</g>
+<g >
+<title>log_entry_start (50,505,050 samples, 0.33%)</title><rect x="1316.1" y="917" width="4.5" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1319.09" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="813.1" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="816.12" y="543.5" ></text>
+</g>
+<g >
+<title>irq_work_queue (70,707,070 samples, 0.46%)</title><rect x="1342.2" y="677" width="6.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1345.23" y="687.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (40,404,040 samples, 0.26%)</title><rect x="705.0" y="581" width="3.6" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="707.96" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="781.6" y="629" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="784.57" y="639.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.07%)</title><rect x="924.0" y="661" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="926.99" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="902.4" y="741" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="905.36" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_clean_rtx_queue.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="56.0" y="565" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="58.97" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="708.6" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="711.56" y="719.5" ></text>
+</g>
+<g >
+<title>remove (202,020,200 samples, 1.31%)</title><rect x="214.6" y="725" width="18.0" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="217.61" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.85%)</title><rect x="857.3" y="773" width="11.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="860.29" y="783.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.07%)</title><rect x="971.8" y="517" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="974.76" y="527.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (151,515,150 samples, 0.98%)</title><rect x="1232.3" y="821" width="13.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1235.26" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="25.3" y="917" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="28.32" y="927.5" ></text>
+</g>
+<g >
+<title>vfs_rename (101,010,100 samples, 0.65%)</title><rect x="838.4" y="693" width="9.0" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="841.36" y="703.5" ></text>
+</g>
+<g >
+<title>git_signature_default (40,404,040 samples, 0.26%)</title><rect x="968.2" y="773" width="3.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="971.16" y="783.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.07%)</title><rect x="1220.5" y="741" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1223.54" y="751.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.07%)</title><rect x="664.4" y="421" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="667.40" y="431.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="1199.8" y="789" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1202.81" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="553.5" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="556.53" y="751.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.07%)</title><rect x="328.2" y="629" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="331.18" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.39%)</title><rect x="232.6" y="757" width="5.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="235.64" y="767.5" ></text>
+</g>
+<g >
+<title>alloc_fd (10,101,010 samples, 0.07%)</title><rect x="860.9" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="863.89" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.07%)</title><rect x="163.2" y="949" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="166.23" y="959.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (20,202,020 samples, 0.13%)</title><rect x="815.8" y="565" width="1.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="818.83" y="575.5" ></text>
+</g>
+<g >
+<title>open64 (30,303,030 samples, 0.20%)</title><rect x="1212.4" y="725" width="2.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1215.43" y="735.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="357" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1084.73" y="367.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (111,111,110 samples, 0.72%)</title><rect x="1326.9" y="773" width="9.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1329.90" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="484.1" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="487.12" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_synsent_state_process (50,505,050 samples, 0.33%)</title><rect x="1376.5" y="725" width="4.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1379.48" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="710.4" y="645" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="713.37" y="655.5" ></text>
+</g>
+<g >
+<title>____fput (131,313,130 samples, 0.85%)</title><rect x="53.3" y="757" width="11.7" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="56.27" y="767.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (40,404,040 samples, 0.26%)</title><rect x="345.3" y="693" width="3.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="348.31" y="703.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="778.0" y="709" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="780.97" y="719.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="597" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1233.46" y="607.5" ></text>
+</g>
+<g >
+<title>filemap_flush (60,606,060 samples, 0.39%)</title><rect x="1008.7" y="597" width="5.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1011.72" y="607.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.07%)</title><rect x="1034.0" y="581" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="1036.96" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.07%)</title><rect x="229.0" y="453" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="232.03" y="463.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (70,707,070 samples, 0.46%)</title><rect x="14.5" y="853" width="6.3" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="17.51" y="863.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="213.7" y="677" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="216.71" y="687.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (40,404,040 samples, 0.26%)</title><rect x="1317.0" y="901" width="3.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1319.99" y="911.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="1217.8" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1220.84" y="687.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_from_slab_obj (10,101,010 samples, 0.07%)</title><rect x="350.7" y="645" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="353.72" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (20,202,020 samples, 0.13%)</title><rect x="1004.2" y="549" width="1.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1007.21" y="559.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="421" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1221.74" y="431.5" ></text>
+</g>
+<g >
+<title>kprobe_ftrace_handler (20,202,020 samples, 0.13%)</title><rect x="1381.0" y="773" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1383.99" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (60,606,060 samples, 0.39%)</title><rect x="367.8" y="597" width="5.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="370.84" y="607.5" ></text>
+</g>
+<g >
+<title>__snprintf_chk (20,202,020 samples, 0.13%)</title><rect x="1323.3" y="821" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1326.30" y="831.5" ></text>
+</g>
+<g >
+<title>errseq_sample (10,101,010 samples, 0.07%)</title><rect x="447.2" y="645" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="450.17" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="863.6" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="866.60" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="958.2" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="961.24" y="655.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.07%)</title><rect x="316.5" y="613" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="319.47" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.65%)</title><rect x="629.2" y="789" width="9.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="632.24" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1188.1" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1191.09" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="736.5" y="773" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="739.51" y="783.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="293.9" y="485" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="296.93" y="495.5" ></text>
+</g>
+<g >
+<title>hv_pkt_iter_first (10,101,010 samples, 0.07%)</title><rect x="1320.6" y="565" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="1323.59" y="575.5" ></text>
+</g>
+<g >
+<title>open64 (30,303,030 samples, 0.20%)</title><rect x="521.1" y="725" width="2.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="524.08" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="437.3" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="440.25" y="559.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="1190.8" y="645" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1193.80" y="655.5" ></text>
+</g>
+<g >
+<title>notify_change (10,101,010 samples, 0.07%)</title><rect x="985.3" y="693" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="988.28" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (101,010,100 samples, 0.65%)</title><rect x="629.2" y="773" width="9.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="632.24" y="783.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.07%)</title><rect x="441.8" y="805" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="444.76" y="815.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.07%)</title><rect x="320.1" y="661" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="323.07" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="412.9" y="533" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="415.91" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.20%)</title><rect x="485.9" y="677" width="2.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="488.92" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="213" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1013.52" y="223.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1221.4" y="693" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1224.44" y="703.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="328.2" y="661" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="331.18" y="671.5" ></text>
+</g>
+<g >
+<title>__fdget_pos (10,101,010 samples, 0.07%)</title><rect x="545.4" y="661" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="548.41" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="580.6" y="597" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="583.57" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="869.0" y="773" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="872.01" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1062.8" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1065.80" y="703.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.07%)</title><rect x="1034.0" y="565" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1036.96" y="575.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (20,202,020 samples, 0.13%)</title><rect x="905.1" y="597" width="1.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="908.06" y="607.5" ></text>
+</g>
+<g >
+<title>git_repository_index (30,303,030 samples, 0.20%)</title><rect x="550.8" y="885" width="2.7" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="553.82" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="1153.8" y="597" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1156.84" y="607.5" ></text>
+</g>
+<g >
+<title>lockref_get_not_dead (10,101,010 samples, 0.07%)</title><rect x="878.0" y="517" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="881.02" y="527.5" ></text>
+</g>
+<g >
+<title>do_open (30,303,030 samples, 0.20%)</title><rect x="504.0" y="709" width="2.7" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="506.95" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="1180.0" y="693" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1182.98" y="703.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.07%)</title><rect x="444.5" y="709" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="447.46" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="368.7" y="549" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="371.75" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="1075.4" y="517" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1078.42" y="527.5" ></text>
+</g>
+<g >
+<title>folio_alloc_buffers (10,101,010 samples, 0.07%)</title><rect x="784.3" y="533" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="787.28" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="911.4" y="629" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="914.37" y="639.5" ></text>
+</g>
+<g >
+<title>git_buf_dispose (10,101,010 samples, 0.07%)</title><rect x="931.2" y="693" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="934.20" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (282,828,280 samples, 1.83%)</title><rect x="449.0" y="821" width="25.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="451.97" y="831.5" >[..</text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="833.9" y="565" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="836.85" y="575.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.07%)</title><rect x="547.2" y="629" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="550.22" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_es_remove_extent (20,202,020 samples, 0.13%)</title><rect x="300.2" y="565" width="1.8" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="303.24" y="575.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.07%)</title><rect x="483.2" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="486.22" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_write (60,606,060 samples, 0.39%)</title><rect x="643.7" y="645" width="5.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="646.66" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (20,202,020 samples, 0.13%)</title><rect x="1051.1" y="645" width="1.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1054.08" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1153.8" y="645" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1156.84" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="971.8" y="805" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="974.76" y="815.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.07%)</title><rect x="819.4" y="357" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="822.43" y="367.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="1153.8" y="613" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1156.84" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="1155.6" y="661" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1158.64" y="671.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.07%)</title><rect x="162.3" y="869" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="165.33" y="879.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="709" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1064.90" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1040.3" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1043.27" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="881.6" y="677" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="884.63" y="687.5" ></text>
+</g>
+<g >
+<title>dquot_file_open (10,101,010 samples, 0.07%)</title><rect x="504.9" y="645" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="507.85" y="655.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (60,606,060 samples, 0.39%)</title><rect x="1008.7" y="581" width="5.4" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="1011.72" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.98%)</title><rect x="449.0" y="805" width="13.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="451.97" y="815.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (30,303,030 samples, 0.20%)</title><rect x="651.8" y="677" width="2.7" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="654.78" y="687.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.07%)</title><rect x="262.4" y="501" width="0.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="265.38" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="457.1" y="773" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="460.08" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.07%)</title><rect x="537.3" y="693" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="540.30" y="703.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.07%)</title><rect x="1034.0" y="613" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="1036.96" y="623.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.07%)</title><rect x="345.3" y="645" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="348.31" y="655.5" ></text>
+</g>
+<g >
+<title>d_delete (10,101,010 samples, 0.07%)</title><rect x="405.7" y="709" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="408.70" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.07%)</title><rect x="767.2" y="517" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="770.15" y="527.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="502.1" y="677" width="1.0" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="505.15" y="687.5" ></text>
+</g>
+<g >
+<title>generic_write_end (10,101,010 samples, 0.07%)</title><rect x="711.3" y="565" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="714.27" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="881.6" y="645" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="884.63" y="655.5" ></text>
+</g>
+<g >
+<title>io_schedule (10,101,010 samples, 0.07%)</title><rect x="473.3" y="565" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="476.31" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="721.2" y="709" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="724.18" y="719.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1212.4" y="533" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1215.43" y="543.5" ></text>
+</g>
+<g >
+<title>ip_output (20,202,020 samples, 0.13%)</title><rect x="16.3" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="19.31" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (525,252,520 samples, 3.40%)</title><rect x="269.6" y="661" width="46.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="272.60" y="671.5" >vfs_..</text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.07%)</title><rect x="376.9" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="379.86" y="703.5" ></text>
+</g>
+<g >
+<title>__brelse (10,101,010 samples, 0.07%)</title><rect x="586.0" y="485" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="588.98" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="887.0" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="890.03" y="687.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.07%)</title><rect x="132.6" y="661" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="135.59" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="534.6" y="677" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="537.60" y="687.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (10,101,010 samples, 0.07%)</title><rect x="603.1" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="606.10" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="795.1" y="741" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="798.09" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (171,717,170 samples, 1.11%)</title><rect x="383.2" y="741" width="15.3" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="386.17" y="751.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="485.9" y="693" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="488.92" y="703.5" ></text>
+</g>
+<g >
+<title>__folio_put (10,101,010 samples, 0.07%)</title><rect x="293.9" y="373" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="296.93" y="383.5" ></text>
+</g>
+<g >
+<title>filename_create (20,202,020 samples, 0.13%)</title><rect x="1247.6" y="789" width="1.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1250.58" y="799.5" ></text>
+</g>
+<g >
+<title>tasklet_action_common.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="127.2" y="725" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="130.18" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="433.6" y="725" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="436.64" y="735.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (222,222,220 samples, 1.44%)</title><rect x="997.0" y="805" width="19.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1000.00" y="815.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="86.6" y="869" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="89.62" y="879.5" ></text>
+</g>
+<g >
+<title>check_stack_object (10,101,010 samples, 0.07%)</title><rect x="1070.9" y="581" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1073.91" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_create (20,202,020 samples, 0.13%)</title><rect x="759.9" y="549" width="1.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="762.94" y="559.5" ></text>
+</g>
+<g >
+<title>do_filp_open (60,606,060 samples, 0.39%)</title><rect x="504.0" y="741" width="5.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="506.95" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (70,707,070 samples, 0.46%)</title><rect x="205.6" y="645" width="6.3" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="208.60" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="867.2" y="485" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="870.20" y="495.5" ></text>
+</g>
+<g >
+<title>submit_bio (10,101,010 samples, 0.07%)</title><rect x="1073.6" y="357" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="1076.62" y="367.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.07%)</title><rect x="549.0" y="805" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="552.02" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_statx (70,707,070 samples, 0.46%)</title><rect x="631.9" y="709" width="6.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="634.95" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="733.8" y="629" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="736.80" y="639.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.07%)</title><rect x="1299.9" y="677" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1302.86" y="687.5" ></text>
+</g>
+<g >
+<title>__d_alloc (30,303,030 samples, 0.20%)</title><rect x="168.6" y="821" width="2.7" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="171.64" y="831.5" ></text>
+</g>
+<g >
+<title>do_open (20,202,020 samples, 0.13%)</title><rect x="522.0" y="613" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="524.98" y="623.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.07%)</title><rect x="673.4" y="373" width="0.9" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="676.41" y="383.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (40,404,040 samples, 0.26%)</title><rect x="421.9" y="693" width="3.6" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="424.93" y="703.5" ></text>
+</g>
+<g >
+<title>inode_io_list_del (10,101,010 samples, 0.07%)</title><rect x="189.4" y="549" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="192.37" y="559.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (50,505,050 samples, 0.33%)</title><rect x="1367.5" y="773" width="4.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1370.47" y="783.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (10,101,010 samples, 0.07%)</title><rect x="57.8" y="469" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="60.77" y="479.5" ></text>
+</g>
+<g >
+<title>git_repository_config_snapshot (111,111,110 samples, 0.72%)</title><rect x="1199.8" y="821" width="9.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1202.81" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (10,101,010 samples, 0.07%)</title><rect x="1041.2" y="693" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1044.17" y="703.5" ></text>
+</g>
+<g >
+<title>getdents64 (10,101,010 samples, 0.07%)</title><rect x="502.1" y="773" width="1.0" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="505.15" y="783.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="979.0" y="581" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="981.97" y="591.5" ></text>
+</g>
+<g >
+<title>__inet_lookup_established (10,101,010 samples, 0.07%)</title><rect x="1327.8" y="325" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="1330.81" y="335.5" ></text>
+</g>
+<g >
+<title>do_rmdir (181,818,180 samples, 1.18%)</title><rect x="214.6" y="645" width="16.2" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="217.61" y="655.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.07%)</title><rect x="786.1" y="597" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="789.08" y="607.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (30,303,030 samples, 0.20%)</title><rect x="1125.0" y="501" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1128.00" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (10,101,010 samples, 0.07%)</title><rect x="197.5" y="517" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="200.49" y="527.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.07%)</title><rect x="842.0" y="293" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="844.97" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (60,606,060 samples, 0.39%)</title><rect x="1075.4" y="549" width="5.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1078.42" y="559.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="781.6" y="581" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="784.57" y="591.5" ></text>
+</g>
+<g >
+<title>git_index_open (20,202,020 samples, 0.13%)</title><rect x="550.8" y="853" width="1.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="553.82" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="441.8" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="444.76" y="799.5" ></text>
+</g>
+<g >
+<title>copy_process (555,555,550 samples, 3.59%)</title><rect x="1257.5" y="773" width="49.6" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="1260.50" y="783.5" >copy_..</text>
+</g>
+<g >
+<title>__wake_up (10,101,010 samples, 0.07%)</title><rect x="1376.5" y="693" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1379.48" y="703.5" ></text>
+</g>
+<g >
+<title>walk_component (70,707,070 samples, 0.46%)</title><rect x="168.6" y="885" width="6.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="171.64" y="895.5" ></text>
+</g>
+<g >
+<title>unlock_buffer (10,101,010 samples, 0.07%)</title><rect x="16.3" y="357" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="19.31" y="367.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1228.7" y="805" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1231.65" y="815.5" ></text>
+</g>
+<g >
+<title>fstatat64 (50,505,050 samples, 0.33%)</title><rect x="595.9" y="773" width="4.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="598.89" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1186.3" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1189.29" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="195.7" y="645" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="198.68" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (161,616,160 samples, 1.05%)</title><rect x="833.0" y="725" width="14.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="835.95" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (343,434,340 samples, 2.22%)</title><rect x="690.5" y="773" width="30.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="693.54" y="783.5" >[l..</text>
+</g>
+<g >
+<title>ext4_dx_readdir (60,606,060 samples, 0.39%)</title><rect x="260.6" y="661" width="5.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="263.58" y="671.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.07%)</title><rect x="193.0" y="581" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="195.98" y="591.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.07%)</title><rect x="700.5" y="389" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="703.45" y="399.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.07%)</title><rect x="996.1" y="597" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="999.10" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.39%)</title><rect x="399.4" y="805" width="5.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="402.39" y="815.5" ></text>
+</g>
+<g >
+<title>server_wait (40,404,040 samples, 0.26%)</title><rect x="23.5" y="981" width="3.6" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="26.52" y="991.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="1070.0" y="693" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1073.01" y="703.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.07%)</title><rect x="996.1" y="533" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="999.10" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.46%)</title><rect x="434.5" y="821" width="6.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="437.55" y="831.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.07%)</title><rect x="796.0" y="693" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="799.00" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1189.9" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1192.90" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="793.3" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="796.29" y="671.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (10,101,010 samples, 0.07%)</title><rect x="843.8" y="469" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="846.77" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.85%)</title><rect x="743.7" y="757" width="11.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="746.72" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="993.4" y="693" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="996.40" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.07%)</title><rect x="945.6" y="453" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="948.62" y="463.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="458.9" y="549" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="461.88" y="559.5" ></text>
+</g>
+<g >
+<title>net_send_buf (50,505,050 samples, 0.33%)</title><rect x="1367.5" y="917" width="4.5" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1370.47" y="927.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="861.8" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="864.80" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.07%)</title><rect x="1084.4" y="261" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1087.44" y="271.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="697.7" y="453" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="700.75" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="689.6" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="692.63" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="23.5" y="933" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="26.52" y="943.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="298.4" y="581" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="301.44" y="591.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.07%)</title><rect x="489.5" y="645" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="492.53" y="655.5" ></text>
+</g>
+<g >
+<title>mempool_alloc_slab (10,101,010 samples, 0.07%)</title><rect x="1126.8" y="421" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="1129.80" y="431.5" ></text>
+</g>
+<g >
+<title>git_config_iterator_glob_new (20,202,020 samples, 0.13%)</title><rect x="823.0" y="821" width="1.8" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="826.04" y="831.5" ></text>
+</g>
+<g >
+<title>tcp_urg (10,101,010 samples, 0.07%)</title><rect x="1341.3" y="725" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="1344.33" y="735.5" ></text>
+</g>
+<g >
+<title>ip_rcv (10,101,010 samples, 0.07%)</title><rect x="1371.1" y="405" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1374.07" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (20,202,020 samples, 0.13%)</title><rect x="814.0" y="485" width="1.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="817.02" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="201.1" y="693" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="204.09" y="703.5" ></text>
+</g>
+<g >
+<title>ip_local_out (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="597" width="3.6" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1374.97" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="886.1" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="889.13" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="1227.8" y="709" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1230.75" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (373,737,370 samples, 2.42%)</title><rect x="444.5" y="901" width="33.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="447.46" y="911.5" >[l..</text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.20%)</title><rect x="712.2" y="741" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="715.17" y="751.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.07%)</title><rect x="553.5" y="661" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="556.53" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="878.0" y="565" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="881.02" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.07%)</title><rect x="413.8" y="565" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="416.81" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="1195.3" y="709" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1198.30" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="785.2" y="629" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="788.18" y="639.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.07%)</title><rect x="672.5" y="373" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="675.51" y="383.5" ></text>
+</g>
+<g >
+<title>walk_component (30,303,030 samples, 0.20%)</title><rect x="635.6" y="661" width="2.7" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="638.55" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="1190.8" y="773" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1193.80" y="783.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="143.4" y="773" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="146.40" y="783.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="296.6" y="517" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="299.64" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.07%)</title><rect x="1037.6" y="597" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1040.56" y="607.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.07%)</title><rect x="162.3" y="837" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="165.33" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (10,101,010 samples, 0.07%)</title><rect x="197.5" y="549" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="200.49" y="559.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="376.0" y="645" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="378.96" y="655.5" ></text>
+</g>
+<g >
+<title>mas_alloc_nodes (10,101,010 samples, 0.07%)</title><rect x="1284.5" y="693" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1287.54" y="703.5" ></text>
+</g>
+<g >
+<title>git_config_get_string (10,101,010 samples, 0.07%)</title><rect x="968.2" y="757" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="971.16" y="767.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (90,909,090 samples, 0.59%)</title><rect x="1327.8" y="677" width="8.1" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1330.81" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (313,131,310 samples, 2.02%)</title><rect x="567.9" y="677" width="28.0" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="570.95" y="687.5" >v..</text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.07%)</title><rect x="477.8" y="869" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="480.81" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.07%)</title><rect x="710.4" y="549" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="713.37" y="559.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="227.2" y="341" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="230.23" y="351.5" ></text>
+</g>
+<g >
+<title>file_exists (30,303,030 samples, 0.20%)</title><rect x="1313.4" y="917" width="2.7" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1316.38" y="927.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="406.6" y="693" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="409.60" y="703.5" ></text>
+</g>
+<g >
+<title>worker_main (13,616,161,480 samples, 88.05%)</title><rect x="175.0" y="981" width="1215.0" height="15.0" fill="rgb(0,212,96)" rx="2" ry="2" />
+<text x="177.95" y="991.5" >worker_main</text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="321.9" y="757" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="324.87" y="767.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.07%)</title><rect x="473.3" y="549" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="476.31" y="559.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="127.2" y="773" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="130.18" y="783.5" ></text>
+</g>
+<g >
+<title>unlink (181,818,180 samples, 1.18%)</title><rect x="382.3" y="789" width="16.2" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="385.27" y="799.5" ></text>
+</g>
+<g >
+<title>perf_event_mmap_event (10,101,010 samples, 0.07%)</title><rect x="67.7" y="709" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="70.69" y="719.5" ></text>
+</g>
+<g >
+<title>remove (121,212,120 samples, 0.78%)</title><rect x="330.0" y="773" width="10.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="332.99" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (20,202,020 samples, 0.13%)</title><rect x="962.7" y="661" width="1.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="965.75" y="671.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.07%)</title><rect x="545.4" y="677" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="548.41" y="687.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.07%)</title><rect x="891.5" y="645" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="894.54" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1063.7" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1066.70" y="671.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1198.0" y="661" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1201.01" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.46%)</title><rect x="1234.1" y="757" width="6.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1237.06" y="767.5" ></text>
+</g>
+<g >
+<title>git_buf_set (10,101,010 samples, 0.07%)</title><rect x="85.7" y="981" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="88.72" y="991.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="896.0" y="725" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="899.05" y="735.5" ></text>
+</g>
+<g >
+<title>opendir (20,202,020 samples, 0.13%)</title><rect x="679.7" y="821" width="1.8" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="682.72" y="831.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1221.4" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1224.44" y="687.5" ></text>
+</g>
+<g >
+<title>net_rx_action (20,202,020 samples, 0.13%)</title><rect x="1349.4" y="565" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1352.44" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="197" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1013.52" y="207.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.07%)</title><rect x="484.1" y="677" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="487.12" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (20,202,020 samples, 0.13%)</title><rect x="1310.7" y="821" width="1.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1313.68" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="452.6" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="455.57" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.07%)</title><rect x="1039.4" y="645" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1042.37" y="655.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.07%)</title><rect x="1084.4" y="341" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1087.44" y="351.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.07%)</title><rect x="802.3" y="581" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="805.31" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="305.6" y="469" width="1.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="308.65" y="479.5" ></text>
+</g>
+<g >
+<title>_find_next_bit (10,101,010 samples, 0.07%)</title><rect x="947.4" y="453" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="950.43" y="463.5" ></text>
+</g>
+<g >
+<title>__slab_free (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="485" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="1233.46" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_desc (10,101,010 samples, 0.07%)</title><rect x="1143.9" y="629" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="1146.93" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.07%)</title><rect x="1238.6" y="693" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1241.57" y="703.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="492.2" y="629" width="1.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="495.23" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="475.1" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="478.11" y="543.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="577.9" y="597" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="580.86" y="607.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="770.8" y="453" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="773.76" y="463.5" ></text>
+</g>
+<g >
+<title>fsnotify_perm.part.0 (10,101,010 samples, 0.07%)</title><rect x="522.9" y="549" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="525.88" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="887.9" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="890.94" y="719.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.07%)</title><rect x="1219.6" y="677" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1222.64" y="687.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.07%)</title><rect x="496.7" y="725" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="499.74" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="1017.7" y="613" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1020.73" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.07%)</title><rect x="444.5" y="677" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="447.46" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (212,121,210 samples, 1.37%)</title><rect x="932.1" y="677" width="18.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="935.10" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (10,101,010 samples, 0.07%)</title><rect x="1373.8" y="293" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1376.78" y="303.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.07%)</title><rect x="572.5" y="597" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="575.46" y="607.5" ></text>
+</g>
+<g >
+<title>current_time (10,101,010 samples, 0.07%)</title><rect x="904.2" y="597" width="0.9" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="907.16" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.33%)</title><rect x="416.5" y="837" width="4.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="419.52" y="847.5" ></text>
+</g>
+<g >
+<title>tcp_close (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="725" width="0.9" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1339.82" y="735.5" ></text>
+</g>
+<g >
+<title>vmbus_on_event (10,101,010 samples, 0.07%)</title><rect x="43.4" y="693" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="46.35" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="761.7" y="613" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="764.74" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (40,404,040 samples, 0.26%)</title><rect x="695.9" y="629" width="3.6" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="698.94" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.07%)</title><rect x="468.8" y="501" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="471.80" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="587.8" y="501" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="590.78" y="511.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (20,202,020 samples, 0.13%)</title><rect x="807.7" y="677" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="810.71" y="687.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.07%)</title><rect x="595.9" y="661" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="598.89" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_file_open (10,101,010 samples, 0.07%)</title><rect x="750.9" y="485" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="753.93" y="495.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="962.7" y="581" width="1.0" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="965.75" y="591.5" ></text>
+</g>
+<g >
+<title>xas_descend (10,101,010 samples, 0.07%)</title><rect x="315.6" y="533" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="318.56" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="879.8" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="882.82" y="751.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.07%)</title><rect x="819.4" y="325" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="822.43" y="335.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="1181.8" y="709" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1184.78" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="1143.9" y="661" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1146.93" y="671.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.07%)</title><rect x="1246.7" y="821" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1249.68" y="831.5" ></text>
+</g>
+<g >
+<title>ip_local_out (30,303,030 samples, 0.20%)</title><rect x="15.4" y="677" width="2.7" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="18.41" y="687.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (20,202,020 samples, 0.13%)</title><rect x="951.0" y="565" width="1.8" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="954.03" y="575.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="1226.9" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1229.85" y="639.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (10,101,010 samples, 0.07%)</title><rect x="511.2" y="581" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="514.16" y="591.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (10,101,010 samples, 0.07%)</title><rect x="1374.7" y="373" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1377.68" y="383.5" ></text>
+</g>
+<g >
+<title>__napi_poll (80,808,080 samples, 0.52%)</title><rect x="1327.8" y="469" width="7.2" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1330.81" y="479.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (20,202,020 samples, 0.13%)</title><rect x="287.6" y="485" width="1.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="290.62" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (2,222,222,200 samples, 14.37%)</title><rect x="978.1" y="837" width="198.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="981.07" y="847.5" >[libgit2.so.1.1.0]</text>
+</g>
+<g >
+<title>submit_bio_wait_endio (10,101,010 samples, 0.07%)</title><rect x="1015.0" y="341" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1018.03" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (20,202,020 samples, 0.13%)</title><rect x="814.0" y="549" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="817.02" y="559.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="908.7" y="581" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="911.67" y="591.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="786.1" y="613" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="789.08" y="623.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="890.6" y="677" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="893.64" y="687.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.07%)</title><rect x="715.8" y="645" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="718.77" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (40,404,040 samples, 0.26%)</title><rect x="78.5" y="901" width="3.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="81.50" y="911.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="378.7" y="645" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="381.66" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (90,909,090 samples, 0.59%)</title><rect x="221.8" y="565" width="8.1" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="224.82" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.98%)</title><rect x="83.0" y="997" width="13.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="86.01" y="1007.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="751.8" y="517" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="754.83" y="527.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (20,202,020 samples, 0.13%)</title><rect x="718.5" y="693" width="1.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="721.48" y="703.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="1158.3" y="581" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1161.35" y="591.5" ></text>
+</g>
+<g >
+<title>__fput (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="789" width="3.6" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1374.97" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="1034.9" y="581" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1037.86" y="591.5" ></text>
+</g>
+<g >
+<title>futex_wait (20,202,020 samples, 0.13%)</title><rect x="25.3" y="869" width="1.8" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="28.32" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="936.6" y="565" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="939.61" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.07%)</title><rect x="832.1" y="725" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="835.05" y="735.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1131.3" y="597" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1134.31" y="607.5" ></text>
+</g>
+<g >
+<title>do_filp_open (30,303,030 samples, 0.20%)</title><rect x="973.6" y="741" width="2.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="976.57" y="751.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="1314.3" y="789" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1317.28" y="799.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="655.4" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="658.38" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_link (20,202,020 samples, 0.13%)</title><rect x="787.9" y="693" width="1.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="790.88" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="295.7" y="549" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="298.73" y="559.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="1221.4" y="581" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1224.44" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (40,404,040 samples, 0.26%)</title><rect x="1056.5" y="645" width="3.6" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1059.49" y="655.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.07%)</title><rect x="914.1" y="437" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="917.08" y="447.5" ></text>
+</g>
+<g >
+<title>down_write (10,101,010 samples, 0.07%)</title><rect x="440.9" y="757" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="443.86" y="767.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct (10,101,010 samples, 0.07%)</title><rect x="1073.6" y="341" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="1076.62" y="351.5" ></text>
+</g>
+<g >
+<title>xas_descend (10,101,010 samples, 0.07%)</title><rect x="814.9" y="389" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="817.92" y="399.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (10,101,010 samples, 0.07%)</title><rect x="837.5" y="581" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="840.46" y="591.5" ></text>
+</g>
+<g >
+<title>request_create_finished_run (30,303,030 samples, 0.20%)</title><rect x="1355.7" y="949" width="2.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1358.75" y="959.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.07%)</title><rect x="279.5" y="469" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="282.51" y="479.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (70,707,070 samples, 0.46%)</title><rect x="14.5" y="789" width="6.3" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="17.51" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="163.2" y="981" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="166.23" y="991.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="708.6" y="725" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="711.56" y="735.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1200.7" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1203.71" y="655.5" ></text>
+</g>
+<g >
+<title>page_counter_uncharge (10,101,010 samples, 0.07%)</title><rect x="423.7" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="426.73" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1236.8" y="613" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1239.77" y="623.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1370.2" y="661" width="1.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1373.17" y="671.5" ></text>
+</g>
+<g >
+<title>file_modified_flags (10,101,010 samples, 0.07%)</title><rect x="904.2" y="613" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="907.16" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="789" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1221.74" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="1033.1" y="565" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1036.06" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="641.0" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="643.96" y="735.5" ></text>
+</g>
+<g >
+<title>storvsc_on_io_completion (10,101,010 samples, 0.07%)</title><rect x="43.4" y="661" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="46.35" y="671.5" ></text>
+</g>
+<g >
+<title>evict (313,131,310 samples, 2.02%)</title><rect x="283.1" y="629" width="28.0" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="286.12" y="639.5" >e..</text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="406.6" y="677" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="409.60" y="687.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.07%)</title><rect x="193.9" y="565" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="196.88" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (60,606,060 samples, 0.39%)</title><rect x="1327.8" y="341" width="5.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1330.81" y="351.5" ></text>
+</g>
+<g >
+<title>str2hashbuf_signed (10,101,010 samples, 0.07%)</title><rect x="627.4" y="597" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="630.44" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.07%)</title><rect x="500.3" y="645" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="503.35" y="655.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (20,202,020 samples, 0.13%)</title><rect x="1331.4" y="261" width="1.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1334.41" y="271.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="1227.8" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1230.75" y="703.5" ></text>
+</g>
+<g >
+<title>d_lru_del (10,101,010 samples, 0.07%)</title><rect x="375.1" y="629" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="378.06" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (30,303,030 samples, 0.20%)</title><rect x="431.8" y="805" width="2.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="434.84" y="815.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="190.3" y="437" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="193.27" y="447.5" ></text>
+</g>
+<g >
+<title>libjson_set_int (10,101,010 samples, 0.07%)</title><rect x="1357.6" y="917" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1360.55" y="927.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.07%)</title><rect x="768.1" y="549" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="771.05" y="559.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.07%)</title><rect x="553.5" y="725" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="556.53" y="735.5" ></text>
+</g>
+<g >
+<title>block_invalidate_folio (10,101,010 samples, 0.07%)</title><rect x="1006.0" y="485" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1009.02" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.52%)</title><rect x="622.0" y="757" width="7.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="625.03" y="767.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="1188.1" y="757" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1191.09" y="767.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.07%)</title><rect x="576.1" y="565" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="579.06" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="681.5" y="789" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="684.52" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1176.4" y="805" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1179.37" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.07%)</title><rect x="765.3" y="565" width="1.0" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="768.35" y="575.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="227.2" y="309" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="230.23" y="319.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (10,101,010 samples, 0.07%)</title><rect x="719.4" y="661" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="722.38" y="671.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.07%)</title><rect x="473.3" y="533" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="476.31" y="543.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.07%)</title><rect x="238.0" y="597" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="241.05" y="607.5" ></text>
+</g>
+<g >
+<title>git_reference_create_matching (565,656,560 samples, 3.66%)</title><rect x="921.3" y="805" width="50.5" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="924.29" y="815.5" >git_r..</text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.07%)</title><rect x="376.9" y="725" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="379.86" y="735.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="1229.6" y="645" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1232.56" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.07%)</title><rect x="1233.2" y="693" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1236.16" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="663.5" y="421" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="666.49" y="431.5" ></text>
+</g>
+<g >
+<title>tcp_v4_connect (80,808,080 samples, 0.52%)</title><rect x="1382.8" y="805" width="7.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1385.79" y="815.5" ></text>
+</g>
+<g >
+<title>list_lru_add (10,101,010 samples, 0.07%)</title><rect x="988.9" y="629" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="991.89" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_connect (70,707,070 samples, 0.46%)</title><rect x="1383.7" y="789" width="6.3" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1386.69" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="896.9" y="725" width="1.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="899.95" y="735.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.07%)</title><rect x="852.8" y="613" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="855.78" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="578.8" y="597" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="581.77" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="870.8" y="757" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="873.81" y="767.5" ></text>
+</g>
+<g >
+<title>nd_jump_root (10,101,010 samples, 0.07%)</title><rect x="736.5" y="565" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="739.51" y="575.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.07%)</title><rect x="1048.4" y="645" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="1051.38" y="655.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="16.3" y="629" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="19.31" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.33%)</title><rect x="979.0" y="741" width="4.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="981.97" y="751.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (70,707,070 samples, 0.46%)</title><rect x="1182.7" y="805" width="6.3" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1185.68" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="122.7" y="741" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="125.67" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="476.0" y="773" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="479.01" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="954.6" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="957.64" y="623.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.07%)</title><rect x="679.7" y="709" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="682.72" y="719.5" ></text>
+</g>
+<g >
+<title>__release_sock (50,505,050 samples, 0.33%)</title><rect x="1376.5" y="773" width="4.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1379.48" y="783.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="780.7" y="581" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="783.67" y="591.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.07%)</title><rect x="1312.5" y="869" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1315.48" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (30,303,030 samples, 0.20%)</title><rect x="539.1" y="677" width="2.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="542.11" y="687.5" ></text>
+</g>
+<g >
+<title>__destroy_inode (20,202,020 samples, 0.13%)</title><rect x="1110.6" y="565" width="1.8" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="1113.57" y="575.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.07%)</title><rect x="498.5" y="709" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="501.54" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="1251.2" y="661" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1254.19" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (464,646,460 samples, 3.00%)</title><rect x="923.1" y="773" width="41.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="926.09" y="783.5" >[li..</text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (80,808,080 samples, 0.52%)</title><rect x="57.8" y="613" width="7.2" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="60.77" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.20%)</title><rect x="238.0" y="645" width="2.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="241.05" y="655.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (30,303,030 samples, 0.20%)</title><rect x="506.7" y="709" width="2.7" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="509.66" y="719.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="550.8" y="757" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="553.82" y="767.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.20%)</title><rect x="238.0" y="629" width="2.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="241.05" y="639.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="1021.3" y="597" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1024.34" y="607.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (20,202,020 samples, 0.13%)</title><rect x="50.6" y="821" width="1.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="53.56" y="831.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.07%)</title><rect x="234.4" y="629" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="237.44" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_fc_track_unlink (10,101,010 samples, 0.07%)</title><rect x="250.7" y="613" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="253.67" y="623.5" ></text>
+</g>
+<g >
+<title>do_futex (20,202,020 samples, 0.13%)</title><rect x="25.3" y="885" width="1.8" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="28.32" y="895.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (10,101,010 samples, 0.07%)</title><rect x="51.5" y="709" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="54.46" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.07%)</title><rect x="464.3" y="597" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="467.29" y="607.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.07%)</title><rect x="886.1" y="613" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="889.13" y="623.5" ></text>
+</g>
+<g >
+<title>pick_file (10,101,010 samples, 0.07%)</title><rect x="52.4" y="789" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="55.36" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="691.4" y="645" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="694.44" y="655.5" ></text>
+</g>
+<g >
+<title>tasklet_action_common.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="654.5" y="533" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="657.48" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="953.7" y="629" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="956.74" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="484.1" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="487.12" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1064.90" y="783.5" ></text>
+</g>
+<g >
+<title>ksys_read (20,202,020 samples, 0.13%)</title><rect x="1210.6" y="645" width="1.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1213.63" y="655.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.07%)</title><rect x="1316.1" y="885" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1319.09" y="895.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.13%)</title><rect x="1142.1" y="597" width="1.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1145.12" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="795.1" y="821" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="798.09" y="831.5" ></text>
+</g>
+<g >
+<title>dentry_free (10,101,010 samples, 0.07%)</title><rect x="314.7" y="597" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="317.66" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (10,101,010 samples, 0.07%)</title><rect x="818.5" y="485" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="821.53" y="495.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="801.4" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="804.40" y="735.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="417.4" y="725" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="420.42" y="735.5" ></text>
+</g>
+<g >
+<title>__fget_light (10,101,010 samples, 0.07%)</title><rect x="545.4" y="645" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="548.41" y="655.5" ></text>
+</g>
+<g >
+<title>folio_memcg_lock (10,101,010 samples, 0.07%)</title><rect x="515.7" y="549" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="518.67" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="757.2" y="549" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="760.24" y="559.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="971.8" y="725" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="974.76" y="735.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (10,101,010 samples, 0.07%)</title><rect x="441.8" y="693" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="444.76" y="703.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.07%)</title><rect x="340.8" y="805" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="343.80" y="815.5" ></text>
+</g>
+<g >
+<title>walk_component (30,303,030 samples, 0.20%)</title><rect x="924.9" y="533" width="2.7" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="927.89" y="543.5" ></text>
+</g>
+<g >
+<title>rm_rf (2,919,191,890 samples, 18.88%)</title><rect x="182.2" y="917" width="260.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="185.16" y="927.5" >rm_rf</text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="510.3" y="597" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="513.26" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.07%)</title><rect x="915.0" y="485" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="917.98" y="495.5" ></text>
+</g>
+<g >
+<title>net_send_buf (121,212,120 samples, 0.78%)</title><rect x="1326.0" y="917" width="10.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1329.00" y="927.5" ></text>
+</g>
+<g >
+<title>tasklet_action (10,101,010 samples, 0.07%)</title><rect x="127.2" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="130.18" y="751.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.07%)</title><rect x="180.4" y="805" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="183.36" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="883.4" y="661" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="886.43" y="671.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (10,101,010 samples, 0.07%)</title><rect x="63.2" y="421" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="66.18" y="431.5" ></text>
+</g>
+<g >
+<title>scsi_log_completion (10,101,010 samples, 0.07%)</title><rect x="92.0" y="741" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="95.02" y="751.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.07%)</title><rect x="757.2" y="485" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="760.24" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="935.7" y="501" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="938.71" y="511.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="920.4" y="645" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="923.39" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="810.4" y="565" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="813.42" y="575.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.07%)</title><rect x="599.5" y="693" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="602.50" y="703.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (10,101,010 samples, 0.07%)</title><rect x="905.1" y="549" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="908.06" y="559.5" ></text>
+</g>
+<g >
+<title>__do_sys_clone3 (141,414,140 samples, 0.91%)</title><rect x="27.1" y="981" width="12.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="30.13" y="991.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="1188.1" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1191.09" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (60,606,060 samples, 0.39%)</title><rect x="399.4" y="773" width="5.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="402.39" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="805.9" y="741" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="808.91" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (13,616,161,480 samples, 88.05%)</title><rect x="175.0" y="1013" width="1215.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="177.95" y="1023.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>ip_finish_output2 (20,202,020 samples, 0.13%)</title><rect x="1349.4" y="661" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1352.44" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="1034.9" y="613" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1037.86" y="623.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.07%)</title><rect x="398.5" y="789" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="401.49" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="1063.7" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1066.70" y="639.5" ></text>
+</g>
+<g >
+<title>do_open (30,303,030 samples, 0.20%)</title><rect x="749.1" y="533" width="2.7" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="752.12" y="543.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="318.3" y="613" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="321.27" y="623.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="483.2" y="645" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="486.22" y="655.5" ></text>
+</g>
+<g >
+<title>security_d_instantiate (10,101,010 samples, 0.07%)</title><rect x="146.1" y="805" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="149.11" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="68.6" y="837" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="71.59" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.07%)</title><rect x="924.9" y="469" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="927.89" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="865.4" y="709" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="868.40" y="719.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.07%)</title><rect x="768.1" y="501" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="771.05" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.07%)</title><rect x="533.7" y="661" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="536.70" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="586.0" y="501" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="588.98" y="511.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.07%)</title><rect x="782.5" y="581" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="785.48" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.20%)</title><rect x="691.4" y="597" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="694.44" y="607.5" ></text>
+</g>
+<g >
+<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.07%)</title><rect x="802.3" y="645" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="805.31" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.07%)</title><rect x="193.9" y="613" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="196.88" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="378.7" y="805" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="381.66" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_delayed_block (10,101,010 samples, 0.07%)</title><rect x="762.6" y="485" width="0.9" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="765.65" y="495.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="475.1" y="581" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="478.11" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1228.7" y="741" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1231.65" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_da_reserve_space (10,101,010 samples, 0.07%)</title><rect x="907.8" y="549" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="910.77" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="1143.9" y="677" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1146.93" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="521.1" y="597" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="524.08" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.46%)</title><rect x="780.7" y="773" width="6.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="783.67" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_rename (101,010,100 samples, 0.65%)</title><rect x="1006.9" y="629" width="9.0" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1009.92" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (111,111,110 samples, 0.72%)</title><rect x="86.6" y="949" width="9.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="89.62" y="959.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (60,606,060 samples, 0.39%)</title><rect x="232.6" y="709" width="5.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="235.64" y="719.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.07%)</title><rect x="173.1" y="837" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="176.15" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="498.5" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="501.54" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="884.3" y="581" width="1.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="887.33" y="591.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (484,848,480 samples, 3.14%)</title><rect x="1130.4" y="757" width="43.3" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1133.40" y="767.5" >do_m..</text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="492.2" y="533" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="495.23" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.07%)</title><rect x="536.4" y="613" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="539.40" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (30,303,030 samples, 0.20%)</title><rect x="386.8" y="581" width="2.7" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="389.77" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="981.7" y="533" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="984.68" y="543.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="75.8" y="805" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="78.80" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1189.9" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1192.90" y="719.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="768.1" y="485" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="771.05" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.07%)</title><rect x="1185.4" y="677" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1188.39" y="687.5" ></text>
+</g>
+<g >
+<title>libjson_to_string_internal (20,202,020 samples, 0.13%)</title><rect x="12.7" y="933" width="1.8" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="15.70" y="943.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.07%)</title><rect x="71.3" y="757" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="74.29" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="901.5" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="904.46" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (707,070,700 samples, 4.57%)</title><rect x="100.1" y="949" width="63.1" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="103.14" y="959.5" >__x64_..</text>
+</g>
+<g >
+<title>__es_remove_extent (20,202,020 samples, 0.13%)</title><rect x="300.2" y="549" width="1.8" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="303.24" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (323,232,320 samples, 2.09%)</title><rect x="567.0" y="725" width="28.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="570.05" y="735.5" >do..</text>
+</g>
+<g >
+<title>ext4_mkdir (40,404,040 samples, 0.26%)</title><rect x="695.9" y="613" width="3.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="698.94" y="623.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (10,101,010 samples, 0.07%)</title><rect x="406.6" y="453" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="409.60" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (20,202,020 samples, 0.13%)</title><rect x="609.4" y="645" width="1.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="612.41" y="655.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (10,101,010 samples, 0.07%)</title><rect x="957.3" y="517" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="960.34" y="527.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.07%)</title><rect x="406.6" y="533" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="409.60" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (40,404,040 samples, 0.26%)</title><rect x="195.7" y="629" width="3.6" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="198.68" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_io_submit (30,303,030 samples, 0.20%)</title><rect x="839.3" y="533" width="2.7" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="842.26" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1236.8" y="677" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1239.77" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="499.4" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="502.44" y="767.5" ></text>
+</g>
+<g >
+<title>kprobe_dispatcher (20,202,020 samples, 0.13%)</title><rect x="1381.0" y="757" width="1.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1383.99" y="767.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="1199.8" y="677" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1202.81" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="331.8" y="565" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="334.79" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (30,303,030 samples, 0.20%)</title><rect x="1386.4" y="421" width="2.7" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1389.39" y="431.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (262,626,260 samples, 1.70%)</title><rect x="797.8" y="805" width="23.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="800.80" y="815.5" >[..</text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="485.9" y="725" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="488.92" y="735.5" ></text>
+</g>
+<g >
+<title>remove (90,909,090 samples, 0.59%)</title><rect x="203.8" y="709" width="8.1" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="206.79" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (20,202,020 samples, 0.13%)</title><rect x="23.5" y="885" width="1.8" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="26.52" y="895.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.07%)</title><rect x="1194.4" y="677" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1197.40" y="687.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.07%)</title><rect x="541.8" y="677" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="544.81" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="724.8" y="661" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="727.79" y="671.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct_nocheck (10,101,010 samples, 0.07%)</title><rect x="467.9" y="517" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="470.90" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="727.5" y="773" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="730.49" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (303,030,300 samples, 1.96%)</title><rect x="730.2" y="805" width="27.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="733.20" y="815.5" >[..</text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="89.3" y="837" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="92.32" y="847.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.20%)</title><rect x="378.7" y="725" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="381.66" y="735.5" ></text>
+</g>
+<g >
+<title>git_buf_set (10,101,010 samples, 0.07%)</title><rect x="499.4" y="773" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="502.44" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (393,939,390 samples, 2.55%)</title><rect x="923.1" y="725" width="35.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="926.09" y="735.5" >[l..</text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.07%)</title><rect x="492.2" y="581" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="495.23" y="591.5" ></text>
+</g>
+<g >
+<title>libgit_checkout (1,323,232,310 samples, 8.56%)</title><rect x="442.7" y="917" width="118.0" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="445.66" y="927.5" >libgit_checkout</text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="244.4" y="549" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="247.36" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="855.5" y="677" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="858.49" y="687.5" ></text>
+</g>
+<g >
+<title>down_write (30,303,030 samples, 0.20%)</title><rect x="1281.8" y="725" width="2.7" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="1284.84" y="735.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (111,111,110 samples, 0.72%)</title><rect x="668.9" y="581" width="9.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="671.90" y="591.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.07%)</title><rect x="814.9" y="405" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="817.92" y="415.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="870.8" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="873.81" y="671.5" ></text>
+</g>
+<g >
+<title>__x86_indirect_thunk_rax (10,101,010 samples, 0.07%)</title><rect x="311.1" y="629" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="314.06" y="639.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.07%)</title><rect x="769.0" y="629" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="771.95" y="639.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="337.2" y="613" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="340.20" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1314.3" y="853" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1317.28" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="395.8" y="629" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="398.79" y="639.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.07%)</title><rect x="1053.8" y="773" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1056.79" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="255.2" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="258.17" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.07%)</title><rect x="1099.8" y="517" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1102.76" y="527.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.07%)</title><rect x="16.3" y="421" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="19.31" y="431.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (20,202,020 samples, 0.13%)</title><rect x="540.0" y="549" width="1.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="543.01" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (565,656,560 samples, 3.66%)</title><rect x="921.3" y="789" width="50.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="924.29" y="799.5" >[libg..</text>
+</g>
+<g >
+<title>__x64_sys_socket (20,202,020 samples, 0.13%)</title><rect x="1337.7" y="885" width="1.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1340.72" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="861.8" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="864.80" y="639.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="1114.2" y="437" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1117.18" y="447.5" ></text>
+</g>
+<g >
+<title>__pmd_alloc (10,101,010 samples, 0.07%)</title><rect x="1274.6" y="693" width="0.9" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="1277.62" y="703.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.07%)</title><rect x="524.7" y="773" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="527.68" y="783.5" ></text>
+</g>
+<g >
+<title>git_config_get_bool (10,101,010 samples, 0.07%)</title><rect x="822.1" y="821" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="825.14" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1232.3" y="789" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1235.26" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (202,020,200 samples, 1.31%)</title><rect x="1072.7" y="693" width="18.0" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1075.72" y="703.5" ></text>
+</g>
+<g >
+<title>set_root (10,101,010 samples, 0.07%)</title><rect x="736.5" y="549" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="739.51" y="559.5" ></text>
+</g>
+<g >
+<title>chmod (30,303,030 samples, 0.20%)</title><rect x="985.3" y="789" width="2.7" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="988.28" y="799.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.07%)</title><rect x="722.1" y="581" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="725.08" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="298.4" y="517" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="301.44" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="621.1" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="624.13" y="751.5" ></text>
+</g>
+<g >
+<title>opendir (20,202,020 samples, 0.13%)</title><rect x="1222.3" y="741" width="1.8" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="1225.34" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (242,424,240 samples, 1.57%)</title><rect x="658.1" y="741" width="21.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="661.09" y="751.5" >e..</text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="621.1" y="693" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="624.13" y="703.5" ></text>
+</g>
+<g >
+<title>folio_create_empty_buffers (10,101,010 samples, 0.07%)</title><rect x="1051.1" y="613" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1054.08" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.07%)</title><rect x="197.5" y="469" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="200.49" y="479.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="234.4" y="613" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="237.44" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="480.5" y="741" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="483.52" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="79.4" y="837" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="82.41" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,191,919,170 samples, 14.17%)</title><rect x="182.2" y="821" width="195.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="185.16" y="831.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="734.7" y="565" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="737.70" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_link (10,101,010 samples, 0.07%)</title><rect x="961.8" y="629" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="964.85" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_clean_rtx_queue.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1367.5" y="677" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="1370.47" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_write (40,404,040 samples, 0.26%)</title><rect x="1049.3" y="725" width="3.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1052.28" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.07%)</title><rect x="636.5" y="597" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="639.45" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="1193.5" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1196.50" y="671.5" ></text>
+</g>
+<g >
+<title>d_splice_alias (10,101,010 samples, 0.07%)</title><rect x="782.5" y="533" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="785.48" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="740.1" y="645" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="743.11" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.65%)</title><rect x="1209.7" y="789" width="9.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1212.73" y="799.5" ></text>
+</g>
+<g >
+<title>inet_ehashfn (10,101,010 samples, 0.07%)</title><rect x="1373.8" y="277" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1376.78" y="287.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (111,111,110 samples, 0.72%)</title><rect x="668.9" y="549" width="9.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="671.90" y="559.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="632.8" y="629" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="635.85" y="639.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="642.8" y="469" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="645.76" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_no_and_offset (10,101,010 samples, 0.07%)</title><rect x="1161.1" y="597" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1164.05" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (535,353,530 samples, 3.46%)</title><rect x="184.9" y="757" width="47.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="187.87" y="767.5" >[lib..</text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (111,111,110 samples, 0.72%)</title><rect x="585.1" y="565" width="9.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="588.08" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="548.1" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="551.12" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (101,010,100 samples, 0.65%)</title><rect x="1247.6" y="821" width="9.0" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1250.58" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="896.0" y="709" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="899.05" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="985.3" y="757" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="988.28" y="767.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.07%)</title><rect x="15.4" y="661" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="18.41" y="671.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (20,202,020 samples, 0.13%)</title><rect x="1372.9" y="389" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1375.87" y="399.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="169.5" y="789" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="172.54" y="799.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.20%)</title><rect x="749.1" y="581" width="2.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="752.12" y="591.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.07%)</title><rect x="406.6" y="629" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="409.60" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="341.7" y="725" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="344.70" y="735.5" ></text>
+</g>
+<g >
+<title>__rseq_handle_notify_resume (10,101,010 samples, 0.07%)</title><rect x="988.0" y="709" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="990.99" y="719.5" ></text>
+</g>
+<g >
+<title>dentry_kill (50,505,050 samples, 0.33%)</title><rect x="462.5" y="709" width="4.5" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="465.49" y="719.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="533" width="2.7" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1381.28" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="731.1" y="693" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="734.10" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.13%)</title><rect x="1019.5" y="629" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1022.54" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1316.1" y="869" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1319.09" y="879.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="556.2" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="559.23" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="888.8" y="837" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="891.84" y="847.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="1194.4" y="629" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1197.40" y="639.5" ></text>
+</g>
+<g >
+<title>git_signature_default (20,202,020 samples, 0.13%)</title><rect x="476.0" y="837" width="1.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="479.01" y="847.5" ></text>
+</g>
+<g >
+<title>read (20,202,020 samples, 0.13%)</title><rect x="1210.6" y="709" width="1.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1213.63" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="1229.6" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1232.56" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="787.0" y="741" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="789.98" y="751.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.07%)</title><rect x="276.8" y="581" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="279.81" y="591.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (10,101,010 samples, 0.07%)</title><rect x="1079.9" y="421" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1082.93" y="431.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="377.8" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="380.76" y="831.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.07%)</title><rect x="565.2" y="597" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="568.24" y="607.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="1186.3" y="629" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1189.29" y="639.5" ></text>
+</g>
+<g >
+<title>ksys_read (30,303,030 samples, 0.20%)</title><rect x="534.6" y="645" width="2.7" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="537.60" y="655.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.07%)</title><rect x="1236.8" y="645" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1239.77" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_invalidate_folio (10,101,010 samples, 0.07%)</title><rect x="424.6" y="645" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="427.63" y="655.5" ></text>
+</g>
+<g >
+<title>fdopendir (50,505,050 samples, 0.33%)</title><rect x="255.2" y="773" width="4.5" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="258.17" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="1100.7" y="469" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1103.66" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.07%)</title><rect x="426.4" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="429.43" y="703.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="455.3" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="458.28" y="655.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.07%)</title><rect x="903.3" y="613" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="906.26" y="623.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.07%)</title><rect x="1053.8" y="693" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1056.79" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="541.8" y="741" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="544.81" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="736.5" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="739.51" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.07%)</title><rect x="1224.1" y="645" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1227.15" y="655.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (10,101,010 samples, 0.07%)</title><rect x="817.6" y="453" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="820.63" y="463.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.07%)</title><rect x="575.2" y="629" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="578.16" y="639.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (30,303,030 samples, 0.20%)</title><rect x="570.7" y="613" width="2.7" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="573.65" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (40,404,040 samples, 0.26%)</title><rect x="59.6" y="181" width="3.6" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="62.58" y="191.5" ></text>
+</g>
+<g >
+<title>git_config_get_string_buf (10,101,010 samples, 0.07%)</title><rect x="1177.3" y="837" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1180.28" y="847.5" ></text>
+</g>
+<g >
+<title>iterate_dir (80,808,080 samples, 0.52%)</title><rect x="342.6" y="725" width="7.2" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="345.61" y="735.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="437.3" y="581" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="440.25" y="591.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="856.4" y="597" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="859.39" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (40,404,040 samples, 0.26%)</title><rect x="92.9" y="821" width="3.6" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="95.93" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="164.1" y="997" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="167.13" y="1007.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.07%)</title><rect x="995.2" y="613" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="998.20" y="623.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="565" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1221.74" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.07%)</title><rect x="1248.5" y="693" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="1251.48" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="578.8" y="581" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="581.77" y="591.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.07%)</title><rect x="751.8" y="485" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="754.83" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.07%)</title><rect x="908.7" y="613" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="911.67" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="454.4" y="677" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="457.38" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="734.7" y="485" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="737.70" y="495.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="1194.4" y="645" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1197.40" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="502.1" y="645" width="1.0" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="505.15" y="655.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="307.5" y="485" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="310.45" y="495.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.07%)</title><rect x="177.7" y="725" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="180.66" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (414,141,410 samples, 2.68%)</title><rect x="851.9" y="853" width="36.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="854.88" y="863.5" >[li..</text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.07%)</title><rect x="770.8" y="549" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="773.76" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (30,303,030 samples, 0.20%)</title><rect x="370.5" y="581" width="2.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="373.55" y="591.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.07%)</title><rect x="406.6" y="613" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="409.60" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="162.3" y="901" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="165.33" y="911.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="229" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1013.52" y="239.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="1194.4" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1197.40" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="325" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1343.42" y="335.5" ></text>
+</g>
+<g >
+<title>ext4_ext_search_right (10,101,010 samples, 0.07%)</title><rect x="915.9" y="517" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="918.88" y="527.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.07%)</title><rect x="1084.4" y="309" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1087.44" y="319.5" ></text>
+</g>
+<g >
+<title>inet_create.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1337.7" y="821" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1340.72" y="831.5" ></text>
+</g>
+<g >
+<title>dentry_kill (20,202,020 samples, 0.13%)</title><rect x="769.9" y="645" width="1.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="772.86" y="655.5" ></text>
+</g>
+<g >
+<title>bio_alloc_bioset (10,101,010 samples, 0.07%)</title><rect x="1126.8" y="453" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1129.80" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="335.4" y="565" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="338.40" y="575.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="869.9" y="693" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="872.91" y="703.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.07%)</title><rect x="695.0" y="661" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="698.04" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1198.0" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1201.01" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1112.4" y="565" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1115.38" y="575.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (40,404,040 samples, 0.26%)</title><rect x="1386.4" y="501" width="3.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1389.39" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="733.8" y="645" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="736.80" y="655.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (20,202,020 samples, 0.13%)</title><rect x="233.5" y="661" width="1.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="236.54" y="671.5" ></text>
+</g>
+<g >
+<title>__strftime_l (10,101,010 samples, 0.07%)</title><rect x="1354.8" y="901" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="1357.85" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="195.7" y="549" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="198.68" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="621.1" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="624.13" y="767.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (131,313,130 samples, 0.85%)</title><rect x="462.5" y="741" width="11.7" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="465.49" y="751.5" ></text>
+</g>
+<g >
+<title>evict (90,909,090 samples, 0.59%)</title><rect x="384.1" y="693" width="8.1" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="387.07" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="1207.0" y="725" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1210.02" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.07%)</title><rect x="1248.5" y="741" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1251.48" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (20,202,020 samples, 0.13%)</title><rect x="663.5" y="501" width="1.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="666.49" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.07%)</title><rect x="1041.2" y="677" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="1044.17" y="687.5" ></text>
+</g>
+<g >
+<title>pthread_rwlock_rdlock (10,101,010 samples, 0.07%)</title><rect x="516.6" y="805" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="519.57" y="815.5" ></text>
+</g>
+<g >
+<title>pipe_read (20,202,020 samples, 0.13%)</title><rect x="1310.7" y="773" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1313.68" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (141,414,140 samples, 0.91%)</title><rect x="52.4" y="837" width="12.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="55.36" y="847.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.07%)</title><rect x="1239.5" y="581" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="1242.47" y="591.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.07%)</title><rect x="920.4" y="613" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="923.39" y="623.5" ></text>
+</g>
+<g >
+<title>release_sock (50,505,050 samples, 0.33%)</title><rect x="1376.5" y="789" width="4.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1379.48" y="799.5" ></text>
+</g>
+<g >
+<title>__sys_socket (10,101,010 samples, 0.07%)</title><rect x="1375.6" y="869" width="0.9" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="1378.58" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="1065.5" y="741" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1068.51" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_write (30,303,030 samples, 0.20%)</title><rect x="539.1" y="709" width="2.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="542.11" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1206.1" y="661" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1209.12" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (60,606,060 samples, 0.39%)</title><rect x="232.6" y="725" width="5.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="235.64" y="735.5" ></text>
+</g>
+<g >
+<title>srso_alias_return_thunk (10,101,010 samples, 0.07%)</title><rect x="130.8" y="709" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="133.78" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (181,818,180 samples, 1.18%)</title><rect x="478.7" y="789" width="16.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="481.71" y="799.5" ></text>
+</g>
+<g >
+<title>do_softirq (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="501" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1343.42" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (60,606,060 samples, 0.39%)</title><rect x="833.0" y="597" width="5.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="835.95" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="715.8" y="661" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="718.77" y="671.5" ></text>
+</g>
+<g >
+<title>net_send (50,505,050 samples, 0.33%)</title><rect x="1367.5" y="901" width="4.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1370.47" y="911.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1084.73" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.59%)</title><rect x="745.5" y="677" width="8.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="748.52" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1062.8" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1065.80" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="781.6" y="741" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="784.57" y="751.5" ></text>
+</g>
+<g >
+<title>__dd_dispatch_request (10,101,010 samples, 0.07%)</title><rect x="1121.4" y="357" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1124.39" y="367.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="238.0" y="693" width="2.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="241.05" y="703.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (292,929,290 samples, 1.89%)</title><rect x="1064.6" y="805" width="26.1" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1067.60" y="815.5" >g..</text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (10,101,010 samples, 0.07%)</title><rect x="1082.6" y="437" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1085.63" y="447.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.07%)</title><rect x="1389.1" y="469" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1392.10" y="479.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.07%)</title><rect x="589.6" y="501" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="592.58" y="511.5" ></text>
+</g>
+<g >
+<title>lh_table_free (10,101,010 samples, 0.07%)</title><rect x="1358.5" y="821" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1361.45" y="831.5" ></text>
+</g>
+<g >
+<title>rseq_ip_fixup (10,101,010 samples, 0.07%)</title><rect x="613.9" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="616.92" y="687.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.07%)</title><rect x="793.3" y="517" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="796.29" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="1012.3" y="341" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1015.33" y="351.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (20,202,020 samples, 0.13%)</title><rect x="304.7" y="533" width="1.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="307.75" y="543.5" ></text>
+</g>
+<g >
+<title>generic_write_end (20,202,020 samples, 0.13%)</title><rect x="1099.8" y="565" width="1.8" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="1102.76" y="575.5" ></text>
+</g>
+<g >
+<title>git_error_clear (10,101,010 samples, 0.07%)</title><rect x="525.6" y="789" width="0.9" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="528.58" y="799.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1195.3" y="741" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1198.30" y="751.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1114.2" y="469" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1117.18" y="479.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1314.3" y="901" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1317.28" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_journal_check_start (10,101,010 samples, 0.07%)</title><rect x="206.5" y="549" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="209.50" y="559.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.07%)</title><rect x="668.9" y="421" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="671.90" y="431.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="896.0" y="789" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="899.05" y="799.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.07%)</title><rect x="398.5" y="725" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="401.49" y="735.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.07%)</title><rect x="512.1" y="549" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="515.06" y="559.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.07%)</title><rect x="1072.7" y="645" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="1075.72" y="655.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.07%)</title><rect x="109.2" y="741" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="112.15" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="1034.9" y="549" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1037.86" y="559.5" ></text>
+</g>
+<g >
+<title>do_readlinkat (10,101,010 samples, 0.07%)</title><rect x="494.0" y="677" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="497.04" y="687.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.07%)</title><rect x="969.1" y="709" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="972.06" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (50,505,050 samples, 0.33%)</title><rect x="1134.0" y="693" width="4.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1137.01" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="1228.7" y="693" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1231.65" y="703.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.20%)</title><rect x="491.3" y="645" width="2.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="494.33" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="945.6" y="405" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="948.62" y="415.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.07%)</title><rect x="1127.7" y="597" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="1130.70" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (50,505,050 samples, 0.33%)</title><rect x="1056.5" y="693" width="4.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1059.49" y="703.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (20,202,020 samples, 0.13%)</title><rect x="511.2" y="613" width="1.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="514.16" y="623.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="886.1" y="565" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="889.13" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="1226.9" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1229.85" y="687.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.07%)</title><rect x="444.5" y="645" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="447.46" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (545,454,540 samples, 3.53%)</title><rect x="268.7" y="725" width="48.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="271.69" y="735.5" >entr..</text>
+</g>
+<g >
+<title>signal_set_mask (10,101,010 samples, 0.07%)</title><rect x="69.5" y="869" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="72.49" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (30,303,030 samples, 0.20%)</title><rect x="1097.1" y="581" width="2.7" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1100.05" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="537.3" y="629" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="540.30" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1190.8" y="709" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1193.80" y="719.5" ></text>
+</g>
+<g >
+<title>__rq_qos_throttle (10,101,010 samples, 0.07%)</title><rect x="841.1" y="437" width="0.9" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="844.06" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="588.7" y="437" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="591.68" y="447.5" ></text>
+</g>
+<g >
+<title>stat64 (10,101,010 samples, 0.07%)</title><rect x="528.3" y="741" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="531.29" y="751.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="1247.6" y="725" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1250.58" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="953.7" y="661" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="956.74" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.07%)</title><rect x="988.9" y="453" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="991.89" y="463.5" ></text>
+</g>
+<g >
+<title>__x64_sys_connect (151,515,150 samples, 0.98%)</title><rect x="1339.5" y="885" width="13.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1342.52" y="895.5" ></text>
+</g>
+<g >
+<title>fprintf (40,404,040 samples, 0.26%)</title><rect x="1317.0" y="885" width="3.6" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1319.99" y="895.5" ></text>
+</g>
+<g >
+<title>net_rx_action (80,808,080 samples, 0.52%)</title><rect x="1327.8" y="485" width="7.2" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1330.81" y="495.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.07%)</title><rect x="929.4" y="485" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="932.40" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.07%)</title><rect x="545.4" y="693" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="548.41" y="703.5" ></text>
+</g>
+<g >
+<title>ip_local_out (30,303,030 samples, 0.20%)</title><rect x="1349.4" y="725" width="2.7" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1352.44" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1227.8" y="725" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1230.75" y="735.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.07%)</title><rect x="1353.0" y="869" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1356.04" y="879.5" ></text>
+</g>
+<g >
+<title>mntput_no_expire (10,101,010 samples, 0.07%)</title><rect x="831.1" y="645" width="1.0" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="834.15" y="655.5" ></text>
+</g>
+<g >
+<title>__napi_poll (40,404,040 samples, 0.26%)</title><rect x="1386.4" y="549" width="3.6" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1389.39" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="1189.9" y="789" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1192.90" y="799.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.07%)</title><rect x="1075.4" y="453" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1078.42" y="463.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.07%)</title><rect x="1357.6" y="741" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1360.55" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1208.8" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1211.82" y="735.5" ></text>
+</g>
+<g >
+<title>inode_permission (20,202,020 samples, 0.13%)</title><rect x="795.1" y="709" width="1.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="798.09" y="719.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="1222.3" y="597" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1225.34" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (20,202,020 samples, 0.13%)</title><rect x="1364.8" y="597" width="1.8" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1367.76" y="607.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.07%)</title><rect x="603.1" y="661" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="606.10" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="604.0" y="677" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="607.00" y="687.5" ></text>
+</g>
+<g >
+<title>apparmor_file_open (10,101,010 samples, 0.07%)</title><rect x="973.6" y="645" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="976.57" y="655.5" ></text>
+</g>
+<g >
+<title>bio_associate_blkg_from_css (10,101,010 samples, 0.07%)</title><rect x="1013.2" y="437" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="1016.23" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (282,828,280 samples, 1.83%)</title><rect x="449.0" y="837" width="25.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="451.97" y="847.5" >[..</text>
+</g>
+<g >
+<title>strcmp@plt (10,101,010 samples, 0.07%)</title><rect x="552.6" y="773" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="555.63" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="970.0" y="693" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="972.96" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="1251.2" y="645" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1254.19" y="655.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="1000.6" y="645" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1003.61" y="655.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="654.5" y="581" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="657.48" y="591.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (10,101,010 samples, 0.07%)</title><rect x="1379.2" y="277" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1382.18" y="287.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.07%)</title><rect x="870.8" y="581" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="873.81" y="591.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.07%)</title><rect x="599.5" y="677" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="602.50" y="687.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="776.2" y="501" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="779.17" y="511.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.07%)</title><rect x="227.2" y="293" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="230.23" y="303.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="1178.2" y="821" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1181.18" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="901.5" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="904.46" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="450.8" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="453.77" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="151.5" y="693" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="154.52" y="703.5" ></text>
+</g>
+<g >
+<title>kfree (10,101,010 samples, 0.07%)</title><rect x="398.5" y="661" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="401.49" y="671.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="981.7" y="517" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="984.68" y="527.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (20,202,020 samples, 0.13%)</title><rect x="912.3" y="517" width="1.8" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="915.27" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1195.3" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1198.30" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="970.0" y="661" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="972.96" y="671.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (30,303,030 samples, 0.20%)</title><rect x="1119.6" y="501" width="2.7" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1122.59" y="511.5" ></text>
+</g>
+<g >
+<title>get_unused_fd_flags (10,101,010 samples, 0.07%)</title><rect x="1214.2" y="645" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="1217.23" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="335.4" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="338.40" y="639.5" ></text>
+</g>
+<g >
+<title>__napi_poll (20,202,020 samples, 0.13%)</title><rect x="1349.4" y="549" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1352.44" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.59%)</title><rect x="1219.6" y="789" width="8.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1222.64" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (10,101,010 samples, 0.07%)</title><rect x="197.5" y="533" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="200.49" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="10.9" y="901" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="13.90" y="911.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="789" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1339.82" y="799.5" ></text>
+</g>
+<g >
+<title>__schedule (20,202,020 samples, 0.13%)</title><rect x="25.3" y="821" width="1.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="28.32" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1314.3" y="869" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1317.28" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.39%)</title><rect x="504.0" y="805" width="5.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="506.95" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (10,101,010 samples, 0.07%)</title><rect x="915.0" y="501" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="917.98" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="727.5" y="677" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="730.49" y="687.5" ></text>
+</g>
+<g >
+<title>slab_pre_alloc_hook.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="170.4" y="789" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="173.44" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1220.5" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1223.54" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="1153.8" y="629" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1156.84" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.07%)</title><rect x="765.3" y="629" width="1.0" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="768.35" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.07%)</title><rect x="410.2" y="661" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="413.21" y="671.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (20,202,020 samples, 0.13%)</title><rect x="1384.6" y="709" width="1.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1387.59" y="719.5" ></text>
+</g>
+<g >
+<title>sock_close (121,212,120 samples, 0.78%)</title><rect x="54.2" y="725" width="10.8" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="57.17" y="735.5" ></text>
+</g>
+<g >
+<title>__jbd2_journal_file_buffer (10,101,010 samples, 0.07%)</title><rect x="248.9" y="533" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="251.86" y="543.5" ></text>
+</g>
+<g >
+<title>do_linkat (30,303,030 samples, 0.20%)</title><rect x="787.0" y="709" width="2.7" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="789.98" y="719.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.07%)</title><rect x="599.5" y="661" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="602.50" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (545,454,540 samples, 3.53%)</title><rect x="268.7" y="693" width="48.7" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="271.69" y="703.5" >__x6..</text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.07%)</title><rect x="16.3" y="517" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="19.31" y="527.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (111,111,110 samples, 0.72%)</title><rect x="330.0" y="693" width="9.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="332.99" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="968.2" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="971.16" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="688.7" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="691.73" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="1142.1" y="661" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1145.12" y="671.5" ></text>
+</g>
+<g >
+<title>client_destroy (171,717,170 samples, 1.11%)</title><rect x="49.7" y="917" width="15.3" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="52.66" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (181,818,180 samples, 1.18%)</title><rect x="140.7" y="837" width="16.2" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="143.70" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (20,202,020 samples, 0.13%)</title><rect x="541.8" y="773" width="1.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="544.81" y="783.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="890.6" y="693" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="893.64" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="422.8" y="645" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="425.83" y="655.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.07%)</title><rect x="1112.4" y="549" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1115.38" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="1181.8" y="725" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1184.78" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (30,303,030 samples, 0.20%)</title><rect x="295.7" y="597" width="2.7" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="298.73" y="607.5" ></text>
+</g>
+<g >
+<title>current_time (10,101,010 samples, 0.07%)</title><rect x="642.8" y="549" width="0.9" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="645.76" y="559.5" ></text>
+</g>
+<g >
+<title>process_backlog (80,808,080 samples, 0.52%)</title><rect x="1327.8" y="453" width="7.2" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1330.81" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="911.4" y="645" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="914.37" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="869.0" y="805" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="872.01" y="815.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (10,101,010 samples, 0.07%)</title><rect x="429.1" y="853" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="432.14" y="863.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.07%)</title><rect x="414.7" y="709" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="417.72" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (20,202,020 samples, 0.13%)</title><rect x="1043.9" y="677" width="1.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1046.87" y="687.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="1115.1" y="453" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1118.08" y="463.5" ></text>
+</g>
+<g >
+<title>remove (575,757,570 samples, 3.72%)</title><rect x="268.7" y="757" width="51.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="271.69" y="767.5" >remove</text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.07%)</title><rect x="976.3" y="837" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="979.27" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="968.2" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="971.16" y="687.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.1.0] (20,202,020 samples, 0.13%)</title><rect x="12.7" y="869" width="1.8" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="15.70" y="879.5" ></text>
+</g>
+<g >
+<title>security_cred_free (10,101,010 samples, 0.07%)</title><rect x="198.4" y="357" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="201.39" y="367.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.07%)</title><rect x="893.3" y="613" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="896.34" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="449.0" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="451.97" y="799.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="936.6" y="533" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="939.61" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (20,202,020 samples, 0.13%)</title><rect x="190.3" y="565" width="1.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="193.27" y="575.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="1063.7" y="597" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1066.70" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.20%)</title><rect x="994.3" y="677" width="2.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="997.30" y="687.5" ></text>
+</g>
+<g >
+<title>cgroup_post_fork (10,101,010 samples, 0.07%)</title><rect x="1257.5" y="757" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="1260.50" y="767.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="807.7" y="629" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="810.71" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="257.9" y="661" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="260.88" y="671.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (20,202,020 samples, 0.13%)</title><rect x="971.8" y="821" width="1.8" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="974.76" y="831.5" ></text>
+</g>
+<g >
+<title>down_write (10,101,010 samples, 0.07%)</title><rect x="404.8" y="725" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="407.80" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="709.5" y="693" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="712.46" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="847.4" y="805" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="850.37" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="729.3" y="469" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="732.29" y="479.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="1024.9" y="613" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1027.94" y="623.5" ></text>
+</g>
+<g >
+<title>pthread_mutex_lock (10,101,010 samples, 0.07%)</title><rect x="488.6" y="757" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="491.63" y="767.5" ></text>
+</g>
+<g >
+<title>cgroup_can_fork (10,101,010 samples, 0.07%)</title><rect x="34.3" y="933" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="37.34" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="469" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1013.52" y="479.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.07%)</title><rect x="819.4" y="309" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="822.43" y="319.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="602.2" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="605.20" y="639.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="411.1" y="549" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="414.11" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_append (50,505,050 samples, 0.33%)</title><rect x="1252.1" y="741" width="4.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1255.09" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.07%)</title><rect x="609.4" y="581" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="612.41" y="591.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="1109.7" y="661" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1112.67" y="671.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="1257.5" y="693" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1260.50" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.07%)</title><rect x="645.5" y="549" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="648.47" y="559.5" ></text>
+</g>
+<g >
+<title>vmbus_on_event (10,101,010 samples, 0.07%)</title><rect x="1320.6" y="597" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1323.59" y="607.5" ></text>
+</g>
+<g >
+<title>inflate (20,202,020 samples, 0.13%)</title><rect x="964.6" y="677" width="1.8" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="967.55" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.07%)</title><rect x="672.5" y="357" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="675.51" y="367.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="1195.3" y="725" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1198.30" y="735.5" ></text>
+</g>
+<g >
+<title>do_softirq (10,101,010 samples, 0.07%)</title><rect x="1371.1" y="517" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1374.07" y="527.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="793.3" y="581" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="796.29" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="803.2" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="806.21" y="735.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="1320.6" y="645" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1323.59" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="455.3" y="677" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="458.28" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.07%)</title><rect x="1095.3" y="629" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1098.25" y="639.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.07%)</title><rect x="1338.6" y="805" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="1341.62" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="756.3" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="759.34" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="141.6" y="789" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="144.60" y="799.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="357" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1013.52" y="367.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="333.6" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="336.59" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="961.8" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="964.85" y="719.5" ></text>
+</g>
+<g >
+<title>__wake_up_sync_key (30,303,030 samples, 0.20%)</title><rect x="79.4" y="741" width="2.7" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="82.41" y="751.5" ></text>
+</g>
+<g >
+<title>d_lookup (20,202,020 samples, 0.13%)</title><rect x="114.6" y="853" width="1.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="117.56" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="1221.4" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1224.44" y="655.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="1207.0" y="597" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1210.02" y="607.5" ></text>
+</g>
+<g >
+<title>ext4fs_dirhash (20,202,020 samples, 0.13%)</title><rect x="402.1" y="677" width="1.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="405.10" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (7,676,767,600 samples, 49.64%)</title><rect x="560.7" y="885" width="685.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="563.74" y="895.5" >[libgit2.so.1.1.0]</text>
+</g>
+<g >
+<title>d_lru_del (10,101,010 samples, 0.07%)</title><rect x="315.6" y="597" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="318.56" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (20,202,020 samples, 0.13%)</title><rect x="1210.6" y="661" width="1.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1213.63" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (20,202,020 samples, 0.13%)</title><rect x="1331.4" y="277" width="1.8" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1334.41" y="287.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="686.0" y="757" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="689.03" y="767.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (40,404,040 samples, 0.26%)</title><rect x="1386.4" y="693" width="3.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1389.39" y="703.5" ></text>
+</g>
+<g >
+<title>mb_find_order_for_block (10,101,010 samples, 0.07%)</title><rect x="95.6" y="709" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="98.63" y="719.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (30,303,030 samples, 0.20%)</title><rect x="969.1" y="757" width="2.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="972.06" y="767.5" ></text>
+</g>
+<g >
+<title>ksys_read (20,202,020 samples, 0.13%)</title><rect x="641.9" y="661" width="1.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="644.86" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="257.0" y="741" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="259.98" y="751.5" ></text>
+</g>
+<g >
+<title>__libc_fork (575,757,570 samples, 3.72%)</title><rect x="1256.6" y="885" width="51.4" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="1259.60" y="895.5" >__lib..</text>
+</g>
+<g >
+<title>ext4_dirty_inode (30,303,030 samples, 0.20%)</title><rect x="266.0" y="645" width="2.7" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="268.99" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.07%)</title><rect x="835.7" y="485" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="838.66" y="495.5" ></text>
+</g>
+<g >
+<title>opendir (40,404,040 samples, 0.26%)</title><rect x="777.1" y="837" width="3.6" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="780.07" y="847.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="1114.2" y="341" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1117.18" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="266.0" y="565" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="268.99" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (10,101,010 samples, 0.07%)</title><rect x="759.9" y="533" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="762.94" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="1014.1" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1017.13" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="869.0" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="872.01" y="703.5" ></text>
+</g>
+<g >
+<title>__snprintf_chk (10,101,010 samples, 0.07%)</title><rect x="12.7" y="853" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="15.70" y="863.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.07%)</title><rect x="489.5" y="725" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="492.53" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.07%)</title><rect x="542.7" y="677" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="545.71" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="923.1" y="693" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="926.09" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1015.0" y="581" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1018.03" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="877.1" y="613" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="880.12" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1104.3" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1107.27" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="741.0" y="645" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="744.01" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="613.0" y="757" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="616.02" y="767.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (20,202,020 samples, 0.13%)</title><rect x="16.3" y="565" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="19.31" y="575.5" ></text>
+</g>
+<g >
+<title>mtree_range_walk (10,101,010 samples, 0.07%)</title><rect x="1309.8" y="773" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1312.78" y="783.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.07%)</title><rect x="762.6" y="565" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="765.65" y="575.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="955.5" y="661" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="958.54" y="671.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="642.8" y="485" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="645.76" y="495.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (50,505,050 samples, 0.33%)</title><rect x="1367.5" y="805" width="4.5" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1370.47" y="815.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="644.6" y="485" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="647.57" y="495.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="700.5" y="309" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="703.45" y="319.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="889.7" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="892.74" y="751.5" ></text>
+</g>
+<g >
+<title>libjson_free (10,101,010 samples, 0.07%)</title><rect x="1322.4" y="933" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1325.40" y="943.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (141,414,140 samples, 0.91%)</title><rect x="52.4" y="853" width="12.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="55.36" y="863.5" ></text>
+</g>
+<g >
+<title>mkdir (323,232,320 samples, 2.09%)</title><rect x="567.0" y="757" width="28.9" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="570.05" y="767.5" >mk..</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="747.3" y="629" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="750.32" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="712.2" y="677" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="715.17" y="687.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="43.4" y="757" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="46.35" y="767.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.07%)</title><rect x="930.3" y="533" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="933.30" y="543.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="983.5" y="773" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="986.48" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="757.2" y="693" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="760.24" y="703.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (20,202,020 samples, 0.13%)</title><rect x="419.2" y="805" width="1.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="422.22" y="815.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.07%)</title><rect x="1226.9" y="581" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="1229.85" y="591.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="597" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1221.74" y="607.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.07%)</title><rect x="522.9" y="565" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="525.88" y="575.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="877.1" y="565" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="880.12" y="575.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (20,202,020 samples, 0.13%)</title><rect x="912.3" y="405" width="1.8" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="915.27" y="415.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.07%)</title><rect x="625.6" y="549" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="628.64" y="559.5" ></text>
+</g>
+<g >
+<title>get_unused_fd_flags (10,101,010 samples, 0.07%)</title><rect x="982.6" y="693" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="985.58" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.20%)</title><rect x="586.0" y="517" width="2.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="588.98" y="527.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="858.2" y="533" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="861.19" y="543.5" ></text>
+</g>
+<g >
+<title>do_wp_page (10,101,010 samples, 0.07%)</title><rect x="1307.1" y="773" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1310.07" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="67.7" y="821" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="70.69" y="831.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.07%)</title><rect x="324.6" y="709" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="327.58" y="719.5" ></text>
+</g>
+<g >
+<title>link (20,202,020 samples, 0.13%)</title><rect x="541.8" y="821" width="1.8" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="544.81" y="831.5" ></text>
+</g>
+<g >
+<title>do_filp_open (30,303,030 samples, 0.20%)</title><rect x="445.4" y="709" width="2.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="448.36" y="719.5" ></text>
+</g>
+<g >
+<title>readdir64 (30,303,030 samples, 0.20%)</title><rect x="211.9" y="741" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="214.91" y="751.5" ></text>
+</g>
+<g >
+<title>do_filp_open (40,404,040 samples, 0.26%)</title><rect x="232.6" y="693" width="3.6" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="235.64" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="915.0" y="453" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="917.98" y="463.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.07%)</title><rect x="1239.5" y="613" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1242.47" y="623.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="807.7" y="597" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="810.71" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (464,646,460 samples, 3.00%)</title><rect x="638.3" y="773" width="41.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="641.26" y="783.5" >[li..</text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.07%)</title><rect x="1198.0" y="741" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1201.01" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_used_dirs_set (10,101,010 samples, 0.07%)</title><rect x="438.2" y="693" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="441.15" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="937.5" y="469" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="940.51" y="479.5" ></text>
+</g>
+<g >
+<title>git_odb_read_header (90,909,090 samples, 0.59%)</title><rect x="531.0" y="805" width="8.1" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="533.99" y="815.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (40,404,040 samples, 0.26%)</title><rect x="1240.4" y="693" width="3.6" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1243.37" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="411.1" y="629" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="414.11" y="639.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.07%)</title><rect x="1079.9" y="405" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1082.93" y="415.5" ></text>
+</g>
+<g >
+<title>git_remote_disconnect (20,202,020 samples, 0.13%)</title><rect x="888.8" y="853" width="1.8" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="891.84" y="863.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.07%)</title><rect x="1017.7" y="581" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1020.73" y="591.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (50,505,050 samples, 0.33%)</title><rect x="739.2" y="773" width="4.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="742.21" y="783.5" ></text>
+</g>
+<g >
+<title>submit_bio_wait_endio (10,101,010 samples, 0.07%)</title><rect x="109.2" y="645" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="112.15" y="655.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (10,101,010 samples, 0.07%)</title><rect x="838.4" y="453" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="841.36" y="463.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="508.5" y="517" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="511.46" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="920.4" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="923.39" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (20,202,020 samples, 0.13%)</title><rect x="814.0" y="517" width="1.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="817.02" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_mb_release_context.isra.0 (10,101,010 samples, 0.07%)</title><rect x="676.1" y="453" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="679.11" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.07%)</title><rect x="647.3" y="533" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="650.27" y="543.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (70,707,070 samples, 0.46%)</title><rect x="58.7" y="485" width="6.3" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="61.67" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="794.2" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="797.19" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (80,808,080 samples, 0.52%)</title><rect x="342.6" y="741" width="7.2" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="345.61" y="751.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="951.0" y="613" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="954.03" y="623.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="842.0" y="437" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="844.97" y="447.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="261" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1013.52" y="271.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.07%)</title><rect x="1127.7" y="613" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1130.70" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1221.74" y="671.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="759.0" y="565" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="762.04" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="758.1" y="597" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="761.14" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_ack (10,101,010 samples, 0.07%)</title><rect x="56.0" y="581" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="58.97" y="591.5" ></text>
+</g>
+<g >
+<title>do_open (70,707,070 samples, 0.46%)</title><rect x="101.0" y="885" width="6.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="104.04" y="895.5" ></text>
+</g>
+<g >
+<title>generic_fillattr (10,101,010 samples, 0.07%)</title><rect x="887.0" y="533" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="890.03" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_release_io_end (10,101,010 samples, 0.07%)</title><rect x="671.6" y="501" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="674.61" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="177.7" y="853" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="180.66" y="863.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.07%)</title><rect x="889.7" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="892.74" y="783.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="581" width="2.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1381.28" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="1224.1" y="693" width="2.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1227.15" y="703.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (40,404,040 samples, 0.26%)</title><rect x="467.9" y="629" width="3.6" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="470.90" y="639.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.1.0] (10,101,010 samples, 0.07%)</title><rect x="1358.5" y="805" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1361.45" y="815.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="565" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1233.46" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="564.3" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="567.34" y="719.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.07%)</title><rect x="320.1" y="709" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="323.07" y="719.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="549" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1084.73" y="559.5" ></text>
+</g>
+<g >
+<title>ip_build_and_send_pkt (10,101,010 samples, 0.07%)</title><rect x="1388.2" y="309" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="1391.20" y="319.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="517.5" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="520.47" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (181,818,180 samples, 1.18%)</title><rect x="1024.0" y="773" width="16.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1027.04" y="783.5" ></text>
+</g>
+<g >
+<title>bpf_prog_fd16de16241b0bed_kprobe_tcp_connect (20,202,020 samples, 0.13%)</title><rect x="1381.0" y="709" width="1.8" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="1383.99" y="719.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (80,808,080 samples, 0.52%)</title><rect x="57.8" y="565" width="7.2" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="60.77" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="757.2" y="677" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="760.24" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="431.8" y="821" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="434.84" y="831.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="156.0" y="805" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="159.02" y="815.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="734.7" y="549" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="737.70" y="559.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.07%)</title><rect x="957.3" y="581" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="960.34" y="591.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="405" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1343.42" y="415.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="787.0" y="757" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="789.98" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="1002.4" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1005.41" y="559.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.07%)</title><rect x="684.2" y="789" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="687.23" y="799.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (20,202,020 samples, 0.13%)</title><rect x="185.8" y="581" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="188.77" y="591.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="109.2" y="869" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="112.15" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_bread (121,212,120 samples, 0.78%)</title><rect x="584.2" y="613" width="10.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="587.17" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1069.1" y="517" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="1072.11" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="450.8" y="757" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="453.77" y="767.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (20,202,020 samples, 0.13%)</title><rect x="20.8" y="965" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="23.82" y="975.5" ></text>
+</g>
+<g >
+<title>filemap_get_read_batch (20,202,020 samples, 0.13%)</title><rect x="1210.6" y="549" width="1.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1213.63" y="559.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.07%)</title><rect x="1052.0" y="581" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="1054.99" y="591.5" ></text>
+</g>
+<g >
+<title>vm_normal_page (10,101,010 samples, 0.07%)</title><rect x="779.8" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="782.77" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (272,727,270 samples, 1.76%)</title><rect x="797.8" y="821" width="24.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="800.80" y="831.5" >[..</text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.07%)</title><rect x="175.9" y="933" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="178.85" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.07%)</title><rect x="818.5" y="453" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="821.53" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="588.7" y="421" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="591.68" y="431.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="758.1" y="565" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="761.14" y="575.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (30,303,030 samples, 0.20%)</title><rect x="625.6" y="645" width="2.7" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="628.64" y="655.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.07%)</title><rect x="1001.5" y="677" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1004.51" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.20%)</title><rect x="257.0" y="757" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="259.98" y="767.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="902.4" y="613" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="905.36" y="623.5" ></text>
+</g>
+<g >
+<title>io_schedule (10,101,010 samples, 0.07%)</title><rect x="571.6" y="533" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="574.55" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (464,646,460 samples, 3.00%)</title><rect x="923.1" y="757" width="41.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="926.09" y="767.5" >[li..</text>
+</g>
+<g >
+<title>vfs_unlink (20,202,020 samples, 0.13%)</title><rect x="190.3" y="581" width="1.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="193.27" y="591.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.07%)</title><rect x="976.3" y="773" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="979.27" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (40,404,040 samples, 0.26%)</title><rect x="1240.4" y="725" width="3.6" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1243.37" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_desc (10,101,010 samples, 0.07%)</title><rect x="698.6" y="453" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="701.65" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.07%)</title><rect x="835.7" y="517" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="838.66" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="181.3" y="853" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="184.26" y="863.5" ></text>
+</g>
+<g >
+<title>from_kgid (10,101,010 samples, 0.07%)</title><rect x="579.7" y="565" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="582.67" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (161,616,160 samples, 1.05%)</title><rect x="833.0" y="741" width="14.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="835.95" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.07%)</title><rect x="431.8" y="629" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="434.84" y="639.5" ></text>
+</g>
+<g >
+<title>iput (40,404,040 samples, 0.26%)</title><rect x="242.6" y="645" width="3.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="245.55" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (121,212,120 samples, 0.78%)</title><rect x="1326.0" y="821" width="10.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1329.00" y="831.5" ></text>
+</g>
+<g >
+<title>up_write (10,101,010 samples, 0.07%)</title><rect x="1306.2" y="741" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1309.17" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (181,818,180 samples, 1.18%)</title><rect x="757.2" y="757" width="16.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="760.24" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="827.5" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="830.54" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_file_open (30,303,030 samples, 0.20%)</title><rect x="103.7" y="837" width="2.7" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="106.74" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="883.4" y="645" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="886.43" y="655.5" ></text>
+</g>
+<g >
+<title>mntput_no_expire (10,101,010 samples, 0.07%)</title><rect x="380.5" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="383.46" y="687.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.07%)</title><rect x="199.3" y="613" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="202.29" y="623.5" ></text>
+</g>
+<g >
+<title>iterate_dir (90,909,090 samples, 0.59%)</title><rect x="260.6" y="693" width="8.1" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="263.58" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (80,808,080 samples, 0.52%)</title><rect x="910.5" y="693" width="7.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="913.47" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="299.3" y="565" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="302.34" y="575.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.07%)</title><rect x="723.9" y="645" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="726.89" y="655.5" ></text>
+</g>
+<g >
+<title>tzset (10,101,010 samples, 0.07%)</title><rect x="794.2" y="773" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="797.19" y="783.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (70,707,070 samples, 0.46%)</title><rect x="205.6" y="629" width="6.3" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="208.60" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.07%)</title><rect x="625.6" y="629" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="628.64" y="639.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (20,202,020 samples, 0.13%)</title><rect x="439.1" y="741" width="1.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="442.05" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.07%)</title><rect x="961.8" y="693" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="964.85" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1040.3" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1043.27" y="751.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (70,707,070 samples, 0.46%)</title><rect x="149.7" y="805" width="6.3" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="152.71" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.07%)</title><rect x="1224.1" y="613" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1227.15" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.07%)</title><rect x="887.9" y="677" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="890.94" y="687.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (30,303,030 samples, 0.20%)</title><rect x="539.1" y="661" width="2.7" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="542.11" y="671.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="169.5" y="725" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="172.54" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="340.8" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="343.80" y="783.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="309" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1013.52" y="319.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_core.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1372.9" y="357" width="0.9" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1375.87" y="367.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1064.90" y="703.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.07%)</title><rect x="656.3" y="757" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="659.28" y="767.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.07%)</title><rect x="323.7" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="326.68" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="453.5" y="693" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="456.47" y="703.5" ></text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.13%)</title><rect x="196.6" y="581" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="199.58" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.07%)</title><rect x="878.9" y="709" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="881.92" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="769.9" y="709" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="772.86" y="719.5" ></text>
+</g>
+<g >
+<title>path_parentat (20,202,020 samples, 0.13%)</title><rect x="807.7" y="661" width="1.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="810.71" y="671.5" ></text>
+</g>
+<g >
+<title>ksys_mmap_pgoff (10,101,010 samples, 0.07%)</title><rect x="67.7" y="789" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="70.69" y="799.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (90,909,090 samples, 0.59%)</title><rect x="910.5" y="725" width="8.1" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="913.47" y="735.5" ></text>
+</g>
+<g >
+<title>__memset (20,202,020 samples, 0.13%)</title><rect x="611.2" y="677" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="614.21" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="878.9" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="881.92" y="751.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (20,202,020 samples, 0.13%)</title><rect x="983.5" y="645" width="1.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="986.48" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.59%)</title><rect x="260.6" y="725" width="8.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="263.58" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="553.5" y="869" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="556.53" y="879.5" ></text>
+</g>
+<g >
+<title>git_reference_symbolic_create (161,616,160 samples, 1.05%)</title><rect x="780.7" y="853" width="14.4" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="783.67" y="863.5" ></text>
+</g>
+<g >
+<title>dentry_kill (10,101,010 samples, 0.07%)</title><rect x="51.5" y="725" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="54.46" y="735.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.07%)</title><rect x="1205.2" y="693" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1208.22" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="21.7" y="933" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="24.72" y="943.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.07%)</title><rect x="446.3" y="645" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="449.26" y="655.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (10,101,010 samples, 0.07%)</title><rect x="838.4" y="469" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="841.36" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="553.5" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="556.53" y="767.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.07%)</title><rect x="489.5" y="661" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="492.53" y="671.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.1.0] (20,202,020 samples, 0.13%)</title><rect x="12.7" y="885" width="1.8" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="15.70" y="895.5" ></text>
+</g>
+<g >
+<title>__strftime_l (10,101,010 samples, 0.07%)</title><rect x="77.6" y="917" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="80.60" y="927.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.07%)</title><rect x="500.3" y="629" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="503.35" y="639.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (40,404,040 samples, 0.26%)</title><rect x="1317.0" y="853" width="3.6" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1319.99" y="863.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="954.6" y="549" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="957.64" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.52%)</title><rect x="509.4" y="757" width="7.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="512.36" y="767.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="450.8" y="661" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="453.77" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (30,303,030 samples, 0.20%)</title><rect x="715.8" y="709" width="2.7" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="718.77" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="951.9" y="469" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="954.93" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap (10,101,010 samples, 0.07%)</title><rect x="591.4" y="501" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="594.38" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1207.0" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1210.02" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="307.5" y="405" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="310.45" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (50,505,050 samples, 0.33%)</title><rect x="286.7" y="565" width="4.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="289.72" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="441.8" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="444.76" y="783.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (20,202,020 samples, 0.13%)</title><rect x="1310.7" y="725" width="1.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1313.68" y="735.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (40,404,040 samples, 0.26%)</title><rect x="1386.4" y="613" width="3.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1389.39" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="195.7" y="661" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="198.68" y="671.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (131,313,130 samples, 0.85%)</title><rect x="1028.5" y="693" width="11.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1031.55" y="703.5" ></text>
+</g>
+<g >
+<title>ip_output (30,303,030 samples, 0.20%)</title><rect x="1372.9" y="581" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1375.87" y="591.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (30,303,030 samples, 0.20%)</title><rect x="1119.6" y="517" width="2.7" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1122.59" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.07%)</title><rect x="924.9" y="437" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="927.89" y="447.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1190.8" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1193.80" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (30,303,030 samples, 0.20%)</title><rect x="93.8" y="789" width="2.7" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="96.83" y="799.5" ></text>
+</g>
+<g >
+<title>rmdir (545,454,540 samples, 3.53%)</title><rect x="268.7" y="741" width="48.7" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="271.69" y="751.5" >rmdir</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="971.8" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="974.76" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.59%)</title><rect x="880.7" y="741" width="8.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="883.73" y="751.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (70,707,070 samples, 0.46%)</title><rect x="323.7" y="725" width="6.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="326.68" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (30,303,030 samples, 0.20%)</title><rect x="286.7" y="517" width="2.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="289.72" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (90,909,090 samples, 0.59%)</title><rect x="567.9" y="645" width="8.2" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="570.95" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.07%)</title><rect x="472.4" y="661" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="475.40" y="671.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.1.0] (10,101,010 samples, 0.07%)</title><rect x="13.6" y="837" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="16.61" y="847.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="856.4" y="565" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="859.39" y="575.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.07%)</title><rect x="499.4" y="725" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="502.44" y="735.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (131,313,130 samples, 0.85%)</title><rect x="1028.5" y="677" width="11.8" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="1031.55" y="687.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="33.4" y="933" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="36.44" y="943.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="362.4" y="597" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="365.44" y="607.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1111.5" y="517" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1114.48" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_open (20,202,020 samples, 0.13%)</title><rect x="522.0" y="597" width="1.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="524.98" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="686.0" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="689.03" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="1016.8" y="629" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1019.83" y="639.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.07%)</title><rect x="1037.6" y="565" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1040.56" y="575.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.07%)</title><rect x="700.5" y="485" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="703.45" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="793.3" y="597" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="796.29" y="607.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="629" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1064.90" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="1222.3" y="677" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1225.34" y="687.5" ></text>
+</g>
+<g >
+<title>touch_atime (50,505,050 samples, 0.33%)</title><rect x="345.3" y="709" width="4.5" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="348.31" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.46%)</title><rect x="1182.7" y="789" width="6.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1185.68" y="799.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.07%)</title><rect x="1309.8" y="853" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1312.78" y="863.5" ></text>
+</g>
+<g >
+<title>iput (40,404,040 samples, 0.26%)</title><rect x="330.9" y="677" width="3.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="333.89" y="687.5" ></text>
+</g>
+<g >
+<title>inet_sendmsg (50,505,050 samples, 0.33%)</title><rect x="1367.5" y="789" width="4.5" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1370.47" y="799.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="712.2" y="613" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="715.17" y="623.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (80,808,080 samples, 0.52%)</title><rect x="1327.8" y="613" width="7.2" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1330.81" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="450.8" y="773" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="453.77" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="586.9" y="485" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="589.88" y="495.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="364.2" y="613" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="367.24" y="623.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.07%)</title><rect x="1212.4" y="581" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="1215.43" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="453.5" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="456.47" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="508.5" y="549" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="511.46" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="736.5" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="739.51" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="150.6" y="773" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="153.61" y="783.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1186.3" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1189.29" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="849.2" y="741" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="852.18" y="751.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.07%)</title><rect x="672.5" y="405" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="675.51" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="508.5" y="597" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="511.46" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.07%)</title><rect x="1226.0" y="597" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1228.95" y="607.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.07%)</title><rect x="858.2" y="549" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="861.19" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="143.4" y="805" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="146.40" y="815.5" ></text>
+</g>
+<g >
+<title>filemap_read (20,202,020 samples, 0.13%)</title><rect x="728.4" y="581" width="1.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="731.39" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="1010.5" y="485" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1013.52" y="495.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.07%)</title><rect x="807.7" y="533" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="810.71" y="543.5" ></text>
+</g>
+<g >
+<title>___d_drop (10,101,010 samples, 0.07%)</title><rect x="440.0" y="693" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="442.95" y="703.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.07%)</title><rect x="502.1" y="517" width="1.0" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="505.15" y="527.5" ></text>
+</g>
+<g >
+<title>__napi_poll (20,202,020 samples, 0.13%)</title><rect x="1372.9" y="421" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1375.87" y="431.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="1189.9" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1192.90" y="687.5" ></text>
+</g>
+<g >
+<title>pthread_sigmask (10,101,010 samples, 0.07%)</title><rect x="69.5" y="837" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="72.49" y="847.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="759.9" y="597" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="762.94" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="663.5" y="405" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="666.49" y="415.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.07%)</title><rect x="477.8" y="901" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="480.81" y="911.5" ></text>
+</g>
+<g >
+<title>inode_needs_update_time.part.0 (10,101,010 samples, 0.07%)</title><rect x="509.4" y="629" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="512.36" y="639.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="405" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1084.73" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.07%)</title><rect x="595.0" y="613" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="597.99" y="623.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.07%)</title><rect x="456.2" y="645" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="459.18" y="655.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (30,303,030 samples, 0.20%)</title><rect x="79.4" y="725" width="2.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="82.41" y="735.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.07%)</title><rect x="1320.6" y="757" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1323.59" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (20,202,020 samples, 0.13%)</title><rect x="1364.8" y="645" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1367.76" y="655.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.07%)</title><rect x="521.1" y="613" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="524.08" y="623.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.07%)</title><rect x="595.9" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="598.89" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="1209.7" y="741" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1212.73" y="751.5" ></text>
+</g>
+<g >
+<title>net_connect (161,616,160 samples, 1.05%)</title><rect x="1375.6" y="949" width="14.4" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1378.58" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (30,303,030 samples, 0.20%)</title><rect x="696.8" y="549" width="2.7" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="699.85" y="559.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="655.4" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="658.38" y="655.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.07%)</title><rect x="1079.0" y="501" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1082.03" y="511.5" ></text>
+</g>
+<g >
+<title>git_oid_is_zero (10,101,010 samples, 0.07%)</title><rect x="549.9" y="837" width="0.9" height="15.0" fill="rgb(0,207,75)" rx="2" ry="2" />
+<text x="552.92" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="673.4" y="405" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="676.41" y="415.5" ></text>
+</g>
+<g >
+<title>evict (90,909,090 samples, 0.59%)</title><rect x="1073.6" y="581" width="8.1" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1076.62" y="591.5" ></text>
+</g>
+<g >
+<title>iput (60,606,060 samples, 0.39%)</title><rect x="409.3" y="709" width="5.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="412.31" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.07%)</title><rect x="697.7" y="485" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="700.75" y="495.5" ></text>
+</g>
+<g >
+<title>git_repository_config_snapshot (151,515,150 samples, 0.98%)</title><rect x="1232.3" y="853" width="13.5" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1235.26" y="863.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="779.8" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="782.77" y="815.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (80,808,080 samples, 0.52%)</title><rect x="57.8" y="581" width="7.2" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="60.77" y="591.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.07%)</title><rect x="227.2" y="373" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="230.23" y="383.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.07%)</title><rect x="225.4" y="501" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="228.43" y="511.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="669.8" y="437" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="672.80" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.07%)</title><rect x="1171.0" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1173.97" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="737.4" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="740.41" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="417.4" y="741" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="420.42" y="751.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (10,101,010 samples, 0.07%)</title><rect x="498.5" y="773" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="501.54" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.07%)</title><rect x="469.7" y="485" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="472.70" y="495.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (10,101,010 samples, 0.07%)</title><rect x="814.9" y="453" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="817.92" y="463.5" ></text>
+</g>
+<g >
+<title>write (80,808,080 samples, 0.52%)</title><rect x="509.4" y="773" width="7.2" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="512.36" y="783.5" ></text>
+</g>
+<g >
+<title>getdents64 (60,606,060 samples, 0.39%)</title><rect x="399.4" y="821" width="5.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="402.39" y="831.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="1180.9" y="693" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1183.88" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (20,202,020 samples, 0.13%)</title><rect x="636.5" y="613" width="1.8" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="639.45" y="623.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="358.8" y="565" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="361.83" y="575.5" ></text>
+</g>
+<g >
+<title>unlink (131,313,130 samples, 0.85%)</title><rect x="240.8" y="725" width="11.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="243.75" y="735.5" ></text>
+</g>
+<g >
+<title>inet_wait_for_connect (50,505,050 samples, 0.33%)</title><rect x="1376.5" y="805" width="4.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1379.48" y="815.5" ></text>
+</g>
+<g >
+<title>printbuf_memappend (10,101,010 samples, 0.07%)</title><rect x="1325.1" y="837" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1328.10" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (161,616,160 samples, 1.05%)</title><rect x="833.0" y="757" width="14.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="835.95" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="766.3" y="677" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="769.25" y="687.5" ></text>
+</g>
+<g >
+<title>ksys_write (50,505,050 samples, 0.33%)</title><rect x="704.1" y="645" width="4.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="707.06" y="655.5" ></text>
+</g>
+<g >
+<title>storvsc_on_channel_callback (10,101,010 samples, 0.07%)</title><rect x="1320.6" y="581" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1323.59" y="591.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="432.7" y="757" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="435.74" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="662.6" y="453" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="665.59" y="463.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="707.7" y="533" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="710.66" y="543.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.07%)</title><rect x="441.8" y="709" width="0.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="444.76" y="719.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (212,121,210 samples, 1.37%)</title><rect x="1110.6" y="693" width="18.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="1113.57" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="780.7" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="783.67" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="67.7" y="837" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="70.69" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="849.2" y="773" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="852.18" y="783.5" ></text>
+</g>
+<g >
+<title>__dput_to_list (10,101,010 samples, 0.07%)</title><rect x="315.6" y="613" width="0.9" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="318.56" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.07%)</title><rect x="907.8" y="581" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="910.77" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="887.0" y="597" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="890.03" y="607.5" ></text>
+</g>
+<g >
+<title>end_bio_bh_io_sync (10,101,010 samples, 0.07%)</title><rect x="807.7" y="437" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="810.71" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_getattr (10,101,010 samples, 0.07%)</title><rect x="887.0" y="549" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="890.03" y="559.5" ></text>
+</g>
+<g >
+<title>all (15,464,646,310 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>readlink (10,101,010 samples, 0.07%)</title><rect x="1040.3" y="773" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1043.27" y="783.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.07%)</title><rect x="1216.9" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1219.94" y="639.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="230.8" y="629" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="233.84" y="639.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="984.4" y="533" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="987.38" y="543.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (60,606,060 samples, 0.39%)</title><rect x="1008.7" y="565" width="5.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1011.72" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="218.2" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="221.22" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1041.2" y="645" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1044.17" y="655.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.07%)</title><rect x="167.7" y="885" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="170.74" y="895.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.20%)</title><rect x="994.3" y="709" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="997.30" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (131,313,130 samples, 0.85%)</title><rect x="299.3" y="581" width="11.8" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="302.34" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="733.8" y="597" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="736.80" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.20%)</title><rect x="1070.0" y="661" width="2.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1073.01" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="407.5" y="677" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="410.50" y="687.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="850.1" y="661" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="853.08" y="671.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (40,404,040 samples, 0.26%)</title><rect x="914.1" y="549" width="3.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="917.08" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="549.0" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="552.02" y="799.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="795.1" y="805" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="798.09" y="815.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.07%)</title><rect x="57.8" y="517" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="60.77" y="527.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="268.7" y="629" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="271.69" y="639.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="484.1" y="629" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="487.12" y="639.5" ></text>
+</g>
+<g >
+<title>block_write_end (10,101,010 samples, 0.07%)</title><rect x="765.3" y="533" width="1.0" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="768.35" y="543.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="485.9" y="661" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="488.92" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_drop_inode (10,101,010 samples, 0.07%)</title><rect x="271.4" y="645" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="274.40" y="655.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.07%)</title><rect x="539.1" y="565" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="542.11" y="575.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.07%)</title><rect x="256.1" y="741" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="259.07" y="751.5" ></text>
+</g>
+<g >
+<title>dentry_kill (80,808,080 samples, 0.52%)</title><rect x="658.1" y="661" width="7.2" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="661.09" y="671.5" ></text>
+</g>
+<g >
+<title>rwsem_optimistic_spin (10,101,010 samples, 0.07%)</title><rect x="440.9" y="725" width="0.9" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="443.86" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.85%)</title><rect x="1234.1" y="789" width="11.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1237.06" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.07%)</title><rect x="206.5" y="565" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="209.50" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="534.6" y="693" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="537.60" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1221.74" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (30,303,030 samples, 0.20%)</title><rect x="292.1" y="581" width="2.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="295.13" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (909,090,900 samples, 5.88%)</title><rect x="83.0" y="1013" width="81.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="86.01" y="1023.5" >[libgit2...</text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (101,010,100 samples, 0.65%)</title><rect x="838.4" y="613" width="9.0" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="841.36" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="715.8" y="677" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="718.77" y="687.5" ></text>
+</g>
+<g >
+<title>json_object_to_json_string_length (30,303,030 samples, 0.20%)</title><rect x="1323.3" y="885" width="2.7" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="1326.30" y="895.5" ></text>
+</g>
+<g >
+<title>____fput (10,101,010 samples, 0.07%)</title><rect x="193.0" y="597" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="195.98" y="607.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="650.9" y="629" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="653.88" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_htree_store_dirent (10,101,010 samples, 0.07%)</title><rect x="263.3" y="613" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="266.29" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="1016.8" y="613" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1019.83" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (181,818,180 samples, 1.18%)</title><rect x="10.9" y="1029" width="16.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="13.90" y="1039.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.07%)</title><rect x="1001.5" y="693" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="1004.51" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.13%)</title><rect x="588.7" y="517" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="591.68" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="759.9" y="677" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="762.94" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.07%)</title><rect x="465.2" y="549" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="468.19" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="1146.6" y="629" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1149.63" y="639.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.07%)</title><rect x="628.3" y="725" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="631.34" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (80,808,080 samples, 0.52%)</title><rect x="57.8" y="597" width="7.2" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="60.77" y="607.5" ></text>
+</g>
+<g >
+<title>nd_jump_root (10,101,010 samples, 0.07%)</title><rect x="1187.2" y="581" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="1190.19" y="591.5" ></text>
+</g>
+<g >
+<title>do_filp_open (30,303,030 samples, 0.20%)</title><rect x="616.6" y="693" width="2.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="619.62" y="703.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (50,505,050 samples, 0.33%)</title><rect x="616.6" y="773" width="4.5" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="619.62" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="610.3" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="613.31" y="623.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.07%)</title><rect x="768.1" y="533" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="771.05" y="543.5" ></text>
+</g>
+<g >
+<title>fscrypt_fname_free_buffer (10,101,010 samples, 0.07%)</title><rect x="264.2" y="613" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="267.19" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="90.2" y="773" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="93.22" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="190.3" y="485" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="193.27" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="893.3" y="725" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="896.34" y="735.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="586.9" y="405" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="589.88" y="415.5" ></text>
+</g>
+<g >
+<title>out_of_line_wait_on_bit (10,101,010 samples, 0.07%)</title><rect x="473.3" y="613" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="476.31" y="623.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.07%)</title><rect x="998.8" y="725" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1001.80" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mb_use_best_found (10,101,010 samples, 0.07%)</title><rect x="1166.5" y="565" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="1169.46" y="575.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.07%)</title><rect x="559.8" y="741" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="562.84" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.07%)</title><rect x="1079.9" y="453" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1082.93" y="463.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (70,707,070 samples, 0.46%)</title><rect x="1132.2" y="709" width="6.3" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1135.21" y="719.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.07%)</title><rect x="1246.7" y="853" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1249.68" y="863.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.07%)</title><rect x="1219.6" y="709" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1222.64" y="719.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.07%)</title><rect x="779.8" y="725" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="782.77" y="735.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="293.9" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="296.93" y="511.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.07%)</title><rect x="650.0" y="597" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="652.97" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="588.7" y="453" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="591.68" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.07%)</title><rect x="996.1" y="581" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="999.10" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="684.2" y="805" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="687.23" y="815.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.07%)</title><rect x="567.0" y="677" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="570.05" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (50,505,050 samples, 0.33%)</title><rect x="15.4" y="741" width="4.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="18.41" y="751.5" ></text>
+</g>
+<g >
+<title>slab_pre_alloc_hook.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="991.6" y="581" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="994.59" y="591.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="341.7" y="789" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="344.70" y="799.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.13%)</title><rect x="1043.9" y="709" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1046.87" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="444.5" y="805" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="447.46" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.46%)</title><rect x="1096.2" y="693" width="6.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1099.15" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="662.6" y="405" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="665.59" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.07%)</title><rect x="842.0" y="229" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="844.97" y="239.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.33%)</title><rect x="695.9" y="693" width="4.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="698.94" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="200.2" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="203.19" y="735.5" ></text>
+</g>
+<g >
+<title>json_object_put (10,101,010 samples, 0.07%)</title><rect x="1358.5" y="869" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="1361.45" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="894.2" y="597" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="897.25" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="316.5" y="677" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="319.47" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="1012.3" y="357" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1015.33" y="367.5" ></text>
+</g>
+<g >
+<title>string_append (10,101,010 samples, 0.07%)</title><rect x="65.9" y="901" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="68.89" y="911.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="776.2" y="581" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="779.17" y="591.5" ></text>
+</g>
+<g >
+<title>__sys_socket (20,202,020 samples, 0.13%)</title><rect x="1337.7" y="869" width="1.8" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="1340.72" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="964.6" y="757" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="967.55" y="767.5" ></text>
+</g>
+<g >
+<title>git_worktree_list (20,202,020 samples, 0.13%)</title><rect x="755.4" y="789" width="1.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="758.43" y="799.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.07%)</title><rect x="362.4" y="581" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="365.44" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="667.1" y="629" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="670.10" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="1048.4" y="661" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1051.38" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_find_dest_de (10,101,010 samples, 0.07%)</title><rect x="153.3" y="789" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="156.32" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="851.0" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="853.98" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="1190.8" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1193.80" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1197.1" y="645" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1200.11" y="655.5" ></text>
+</g>
+<g >
+<title>do_softirq (20,202,020 samples, 0.13%)</title><rect x="16.3" y="549" width="1.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="19.31" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="914.1" y="469" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="917.08" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="1153.8" y="661" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1156.84" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_file_open (20,202,020 samples, 0.13%)</title><rect x="504.9" y="661" width="1.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="507.85" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (30,303,030 samples, 0.20%)</title><rect x="539.1" y="629" width="2.7" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="542.11" y="639.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.07%)</title><rect x="547.2" y="597" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="550.22" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.52%)</title><rect x="342.6" y="773" width="7.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="345.61" y="783.5" ></text>
+</g>
+<g >
+<title>scsi_dispatch_cmd (10,101,010 samples, 0.07%)</title><rect x="668.9" y="341" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="671.90" y="351.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (40,404,040 samples, 0.26%)</title><rect x="989.8" y="757" width="3.6" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="992.79" y="767.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.07%)</title><rect x="10.9" y="853" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="13.90" y="863.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="373" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1084.73" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (20,202,020 samples, 0.13%)</title><rect x="980.8" y="613" width="1.8" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="983.78" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="378.7" y="773" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="381.66" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="370.5" y="549" width="1.0" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="373.55" y="559.5" ></text>
+</g>
+<g >
+<title>new_inode (20,202,020 samples, 0.13%)</title><rect x="1151.1" y="693" width="1.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1154.14" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (464,646,460 samples, 3.00%)</title><rect x="638.3" y="789" width="41.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="641.26" y="799.5" >[li..</text>
+</g>
+<g >
+<title>futex_wait_queue (20,202,020 samples, 0.13%)</title><rect x="25.3" y="853" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="28.32" y="863.5" ></text>
+</g>
+<g >
+<title>log_entry_start (20,202,020 samples, 0.13%)</title><rect x="558.9" y="901" width="1.8" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="561.94" y="911.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (252,525,250 samples, 1.63%)</title><rect x="824.8" y="789" width="22.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="827.84" y="799.5" >[..</text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.07%)</title><rect x="680.6" y="805" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="683.62" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.07%)</title><rect x="714.0" y="549" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="716.97" y="559.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.07%)</title><rect x="890.6" y="661" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="893.64" y="671.5" ></text>
+</g>
+<g >
+<title>out_of_line_wait_on_bit (10,101,010 samples, 0.07%)</title><rect x="571.6" y="581" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="574.55" y="591.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.07%)</title><rect x="1353.0" y="901" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1356.04" y="911.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (60,606,060 samples, 0.39%)</title><rect x="1082.6" y="581" width="5.4" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="1085.63" y="591.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="355.2" y="629" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="358.23" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="1146.6" y="661" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1149.63" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.39%)</title><rect x="904.2" y="741" width="5.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="907.16" y="751.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.20%)</title><rect x="928.5" y="581" width="2.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="931.50" y="591.5" ></text>
+</g>
+<g >
+<title>mas_store (80,808,080 samples, 0.52%)</title><rect x="1285.4" y="725" width="7.3" height="15.0" fill="rgb(0,213,96)" rx="2" ry="2" />
+<text x="1288.44" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="727.5" y="789" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="730.49" y="799.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_put (10,101,010 samples, 0.07%)</title><rect x="1328.7" y="325" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1331.71" y="335.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="430.9" y="837" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="433.94" y="847.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (20,202,020 samples, 0.13%)</title><rect x="570.7" y="597" width="1.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="573.65" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mb_prefetch_fini (10,101,010 samples, 0.07%)</title><rect x="949.2" y="453" width="0.9" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="952.23" y="463.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="476.9" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="479.91" y="719.5" ></text>
+</g>
+<g >
+<title>submit_bio_wait_endio (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="405" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1221.74" y="415.5" ></text>
+</g>
+<g >
+<title>__d_instantiate (10,101,010 samples, 0.07%)</title><rect x="145.2" y="805" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="148.21" y="815.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.07%)</title><rect x="1031.3" y="517" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1034.25" y="527.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="896.0" y="677" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="899.05" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="1115.1" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1118.08" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.13%)</title><rect x="1171.9" y="677" width="1.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1174.87" y="687.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="1133.1" y="597" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1136.11" y="607.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="198.4" y="325" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="201.39" y="335.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (101,010,100 samples, 0.65%)</title><rect x="1327.8" y="725" width="9.0" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1330.81" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.07%)</title><rect x="471.5" y="677" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="474.50" y="687.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (10,101,010 samples, 0.07%)</title><rect x="817.6" y="501" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="820.63" y="511.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.07%)</title><rect x="834.8" y="533" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="837.76" y="543.5" ></text>
+</g>
+<g >
+<title>rename (212,121,210 samples, 1.37%)</title><rect x="1110.6" y="757" width="18.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1113.57" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="547.2" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="550.22" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (60,606,060 samples, 0.39%)</title><rect x="334.5" y="645" width="5.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="337.49" y="655.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="1217.8" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1220.84" y="655.5" ></text>
+</g>
+<g >
+<title>filemap_release_folio (10,101,010 samples, 0.07%)</title><rect x="424.6" y="613" width="0.9" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="427.63" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.07%)</title><rect x="894.2" y="629" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="897.25" y="639.5" ></text>
+</g>
+<g >
+<title>lockref_get_not_zero (10,101,010 samples, 0.07%)</title><rect x="750.9" y="437" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="753.93" y="447.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.07%)</title><rect x="98.3" y="853" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="101.33" y="863.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.07%)</title><rect x="543.6" y="741" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="546.61" y="751.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (20,202,020 samples, 0.13%)</title><rect x="938.4" y="517" width="1.8" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="941.41" y="527.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="1126.8" y="405" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1129.80" y="415.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="776.2" y="533" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="779.17" y="543.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="752.7" y="613" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="755.73" y="623.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1320.6" y="837" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1323.59" y="847.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (50,505,050 samples, 0.33%)</title><rect x="58.7" y="245" width="4.5" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="61.67" y="255.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (20,202,020 samples, 0.13%)</title><rect x="912.3" y="485" width="1.8" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="915.27" y="495.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.07%)</title><rect x="1157.4" y="581" width="0.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="1160.45" y="591.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (80,808,080 samples, 0.52%)</title><rect x="658.1" y="629" width="7.2" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="661.09" y="639.5" ></text>
+</g>
+<g >
+<title>__jbd2_update_log_tail (10,101,010 samples, 0.07%)</title><rect x="1073.6" y="437" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1076.62" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.07%)</title><rect x="1041.2" y="661" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="1044.17" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (10,101,010 samples, 0.07%)</title><rect x="962.7" y="629" width="1.0" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="965.75" y="639.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (70,707,070 samples, 0.46%)</title><rect x="58.7" y="453" width="6.3" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="61.67" y="463.5" ></text>
+</g>
+<g >
+<title>sd_done (10,101,010 samples, 0.07%)</title><rect x="610.3" y="469" width="0.9" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="613.31" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (414,141,410 samples, 2.68%)</title><rect x="851.9" y="837" width="36.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="854.88" y="847.5" >[li..</text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.07%)</title><rect x="1021.3" y="645" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1024.34" y="655.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.07%)</title><rect x="732.9" y="485" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="735.90" y="495.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.07%)</title><rect x="489.5" y="693" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="492.53" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="889.7" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="892.74" y="767.5" ></text>
+</g>
+<g >
+<title>unlink_cb (90,909,090 samples, 0.59%)</title><rect x="421.0" y="853" width="8.1" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="424.03" y="863.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="793.3" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="796.29" y="623.5" ></text>
+</g>
+<g >
+<title>memcg_list_lru_alloc (20,202,020 samples, 0.13%)</title><rect x="138.0" y="741" width="1.8" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="140.99" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.07%)</title><rect x="1116.9" y="517" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1119.88" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.07%)</title><rect x="1039.4" y="661" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1042.37" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="416.5" y="805" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="419.52" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="686.0" y="805" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="689.03" y="815.5" ></text>
+</g>
+<g >
+<title>try_charge_memcg (10,101,010 samples, 0.07%)</title><rect x="957.3" y="469" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="960.34" y="479.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="485.9" y="629" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="488.92" y="639.5" ></text>
+</g>
+<g >
+<title>git_reference_normalize_name (10,101,010 samples, 0.07%)</title><rect x="918.6" y="805" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="921.58" y="815.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.07%)</title><rect x="440.9" y="773" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="443.86" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.07%)</title><rect x="1057.4" y="565" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1060.39" y="575.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.07%)</title><rect x="778.0" y="741" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="780.97" y="751.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (20,202,020 samples, 0.13%)</title><rect x="10.9" y="933" width="1.8" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="13.90" y="943.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (70,707,070 samples, 0.46%)</title><rect x="14.5" y="837" width="6.3" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="17.51" y="847.5" ></text>
+</g>
+<g >
+<title>git_buf_dispose (10,101,010 samples, 0.07%)</title><rect x="918.6" y="789" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="921.58" y="799.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="855.5" y="661" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="858.49" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.07%)</title><rect x="514.8" y="581" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="517.77" y="591.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.07%)</title><rect x="1146.6" y="597" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1149.63" y="607.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.07%)</title><rect x="316.5" y="629" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="319.47" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="952.8" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="955.83" y="687.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.07%)</title><rect x="559.8" y="837" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="562.84" y="847.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.07%)</title><rect x="163.2" y="853" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="166.23" y="863.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (90,909,090 samples, 0.59%)</title><rect x="1119.6" y="581" width="8.1" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1122.59" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.07%)</title><rect x="705.9" y="501" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="708.86" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="759.9" y="645" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="762.94" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.07%)</title><rect x="343.5" y="677" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="346.51" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (20,202,020 samples, 0.13%)</title><rect x="476.0" y="821" width="1.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="479.01" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="1252.1" y="597" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1255.09" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (30,303,030 samples, 0.20%)</title><rect x="662.6" y="565" width="2.7" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="665.59" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="498.5" y="725" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="501.54" y="735.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.07%)</title><rect x="756.3" y="709" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="759.34" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.07%)</title><rect x="435.4" y="629" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="438.45" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="445.4" y="757" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="448.36" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="832.1" y="709" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="835.05" y="719.5" ></text>
+</g>
+<g >
+<title>file_ra_state_init (10,101,010 samples, 0.07%)</title><rect x="1212.4" y="565" width="0.9" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="1215.43" y="575.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="785.2" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="788.18" y="623.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="761.7" y="629" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="764.74" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="770.8" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="773.76" y="527.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="933.0" y="517" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="936.00" y="527.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.07%)</title><rect x="887.9" y="661" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="890.94" y="671.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (121,212,120 samples, 0.78%)</title><rect x="810.4" y="709" width="10.8" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="813.42" y="719.5" ></text>
+</g>
+<g >
+<title>__blk_mq_end_request (10,101,010 samples, 0.07%)</title><rect x="819.4" y="277" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="822.43" y="287.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (60,606,060 samples, 0.39%)</title><rect x="1082.6" y="613" width="5.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1085.63" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="1004.2" y="469" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1007.21" y="479.5" ></text>
+</g>
+<g >
+<title>task_work_run (10,101,010 samples, 0.07%)</title><rect x="988.9" y="709" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="991.89" y="719.5" ></text>
+</g>
+<g >
+<title>json_object_object_add_ex (10,101,010 samples, 0.07%)</title><rect x="1357.6" y="869" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1360.55" y="879.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="714.0" y="597" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="716.97" y="607.5" ></text>
+</g>
+<g >
+<title>save_fpregs_to_fpstate (10,101,010 samples, 0.07%)</title><rect x="275.9" y="549" width="0.9" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="278.90" y="559.5" ></text>
+</g>
+<g >
+<title>close_fd (10,101,010 samples, 0.07%)</title><rect x="252.5" y="709" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="255.47" y="719.5" ></text>
+</g>
+<g >
+<title>do_filp_open (30,303,030 samples, 0.20%)</title><rect x="521.1" y="645" width="2.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="524.08" y="655.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.07%)</title><rect x="16.3" y="437" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="19.31" y="447.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (10,101,010 samples, 0.07%)</title><rect x="1373.8" y="341" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1376.78" y="351.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="548.1" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="551.12" y="751.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (101,010,100 samples, 0.65%)</title><rect x="1247.6" y="805" width="9.0" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1250.58" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="923.1" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="926.09" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="541.8" y="789" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="544.81" y="799.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.07%)</title><rect x="765.3" y="709" width="1.0" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="768.35" y="719.5" ></text>
+</g>
+<g >
+<title>tasklet_action (10,101,010 samples, 0.07%)</title><rect x="654.5" y="549" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="657.48" y="559.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (20,202,020 samples, 0.13%)</title><rect x="1349.4" y="645" width="1.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1352.44" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="849.2" y="757" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="852.18" y="767.5" ></text>
+</g>
+<g >
+<title>ip_output (40,404,040 samples, 0.26%)</title><rect x="1386.4" y="709" width="3.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1389.39" y="719.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (20,202,020 samples, 0.13%)</title><rect x="668.9" y="485" width="1.8" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="671.90" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.39%)</title><rect x="643.7" y="709" width="5.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="646.66" y="719.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.07%)</title><rect x="818.5" y="293" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="821.53" y="303.5" ></text>
+</g>
+<g >
+<title>destroy_inode (20,202,020 samples, 0.13%)</title><rect x="283.1" y="613" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="286.12" y="623.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="621.1" y="645" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="624.13" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="855.5" y="645" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="858.49" y="655.5" ></text>
+</g>
+<g >
+<title>free_unref_page_prepare (10,101,010 samples, 0.07%)</title><rect x="293.9" y="341" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="296.93" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.07%)</title><rect x="163.2" y="901" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="166.23" y="911.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="426.4" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="429.43" y="687.5" ></text>
+</g>
+<g >
+<title>generic_fillattr (10,101,010 samples, 0.07%)</title><rect x="329.1" y="645" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="332.09" y="655.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="642.8" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="645.76" y="511.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="756.3" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="759.34" y="703.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="1084.4" y="421" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1087.44" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (20,202,020 samples, 0.13%)</title><rect x="1253.9" y="645" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1256.89" y="655.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.07%)</title><rect x="1226.9" y="597" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="1229.85" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (565,656,560 samples, 3.66%)</title><rect x="1256.6" y="853" width="50.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1259.60" y="863.5" >entry..</text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.07%)</title><rect x="1223.2" y="645" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1226.25" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.07%)</title><rect x="477.8" y="789" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="480.81" y="799.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="764.4" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="767.45" y="607.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (40,404,040 samples, 0.26%)</title><rect x="1049.3" y="677" width="3.6" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="1052.28" y="687.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (70,707,070 samples, 0.46%)</title><rect x="58.7" y="501" width="6.3" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="61.67" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (313,131,310 samples, 2.02%)</title><rect x="567.9" y="661" width="28.0" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="570.95" y="671.5" >e..</text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="225.4" y="485" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="228.43" y="495.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (40,404,040 samples, 0.26%)</title><rect x="1045.7" y="693" width="3.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1048.68" y="703.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (181,818,180 samples, 1.18%)</title><rect x="1024.0" y="741" width="16.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1027.04" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (161,616,160 samples, 1.05%)</title><rect x="1002.4" y="709" width="14.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1005.41" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="257.9" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="260.88" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="150.6" y="725" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="153.61" y="735.5" ></text>
+</g>
+<g >
+<title>file_modified (10,101,010 samples, 0.07%)</title><rect x="829.3" y="629" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="832.35" y="639.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.07%)</title><rect x="933.0" y="565" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="936.00" y="575.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.07%)</title><rect x="543.6" y="821" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="546.61" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="386.8" y="517" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="389.77" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="983.5" y="677" width="1.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="986.48" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1226.9" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1229.85" y="751.5" ></text>
+</g>
+<g >
+<title>cap_inode_need_killpriv (10,101,010 samples, 0.07%)</title><rect x="704.1" y="517" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="707.06" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (111,111,110 samples, 0.72%)</title><rect x="1199.8" y="805" width="9.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1202.81" y="815.5" ></text>
+</g>
+<g >
+<title>shrink_dentry_list (20,202,020 samples, 0.13%)</title><rect x="439.1" y="725" width="1.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="442.05" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="79.4" y="821" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="82.41" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1337.7" y="901" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1340.72" y="911.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="801.4" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="804.40" y="719.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (10,101,010 samples, 0.07%)</title><rect x="787.0" y="661" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="789.98" y="671.5" ></text>
+</g>
+<g >
+<title>block_write_end (10,101,010 samples, 0.07%)</title><rect x="515.7" y="597" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="518.67" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="758.1" y="581" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="761.14" y="591.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.07%)</title><rect x="318.3" y="645" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="321.27" y="655.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="97.4" y="869" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="100.43" y="879.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.07%)</title><rect x="170.4" y="757" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="173.44" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="896.0" y="693" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="899.05" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.07%)</title><rect x="765.3" y="597" width="1.0" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="768.35" y="607.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.07%)</title><rect x="1015.0" y="421" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1018.03" y="431.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="695.0" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="698.04" y="687.5" ></text>
+</g>
+<g >
+<title>wake_up_bit (10,101,010 samples, 0.07%)</title><rect x="16.3" y="341" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="19.31" y="351.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="459.8" y="581" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="462.78" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="559.8" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="562.84" y="799.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="655.4" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="658.38" y="623.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (131,313,130 samples, 0.85%)</title><rect x="1234.1" y="805" width="11.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1237.06" y="815.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (10,101,010 samples, 0.07%)</title><rect x="802.3" y="661" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="805.31" y="671.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="421" width="0.9" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1368.66" y="431.5" ></text>
+</g>
+<g >
+<title>tcp_v4_syn_recv_sock (10,101,010 samples, 0.07%)</title><rect x="1378.3" y="277" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1381.28" y="287.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="394.0" y="613" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="396.98" y="623.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.07%)</title><rect x="961.8" y="741" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="964.85" y="751.5" ></text>
+</g>
+<g >
+<title>file_read (40,404,040 samples, 0.26%)</title><rect x="1309.8" y="885" width="3.6" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1312.78" y="895.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.07%)</title><rect x="1077.2" y="453" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1080.22" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="453.5" y="757" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="456.47" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="971.8" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="974.76" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (20,202,020 samples, 0.13%)</title><rect x="371.5" y="565" width="1.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="374.45" y="575.5" ></text>
+</g>
+<g >
+<title>expand_files (10,101,010 samples, 0.07%)</title><rect x="1214.2" y="629" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1217.23" y="639.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.07%)</title><rect x="1102.5" y="661" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1105.46" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="1181.8" y="693" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1184.78" y="703.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="830.2" y="645" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="833.25" y="655.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.07%)</title><rect x="952.8" y="629" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="955.83" y="639.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.07%)</title><rect x="429.1" y="789" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="432.14" y="799.5" ></text>
+</g>
+<g >
+<title>git_refdb_open (40,404,040 samples, 0.26%)</title><rect x="865.4" y="757" width="3.6" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="868.40" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_file_open (20,202,020 samples, 0.13%)</title><rect x="1024.9" y="645" width="1.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1027.94" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.65%)</title><rect x="1209.7" y="821" width="9.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1212.73" y="831.5" ></text>
+</g>
+<g >
+<title>libgit_clone (7,696,969,620 samples, 49.77%)</title><rect x="560.7" y="901" width="686.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="563.74" y="911.5" >libgit_clone</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="733.8" y="709" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="736.80" y="719.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.07%)</title><rect x="1268.3" y="677" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1271.31" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_read (20,202,020 samples, 0.13%)</title><rect x="721.2" y="613" width="1.8" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="724.18" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_io_submit (10,101,010 samples, 0.07%)</title><rect x="467.9" y="565" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="470.90" y="575.5" ></text>
+</g>
+<g >
+<title>rename (202,020,200 samples, 1.31%)</title><rect x="1072.7" y="741" width="18.0" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1075.72" y="751.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.07%)</title><rect x="231.7" y="645" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="234.74" y="655.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="451.7" y="629" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="454.67" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1064.90" y="767.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="951.0" y="597" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="954.03" y="607.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.07%)</title><rect x="177.7" y="821" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="180.66" y="831.5" ></text>
+</g>
+<g >
+<title>do_filp_open (40,404,040 samples, 0.26%)</title><rect x="700.5" y="629" width="3.6" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="703.45" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="937.5" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="940.51" y="527.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_set_param_int (10,101,010 samples, 0.07%)</title><rect x="1357.6" y="933" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1360.55" y="943.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="406.6" y="485" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="409.60" y="495.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (30,303,030 samples, 0.20%)</title><rect x="570.7" y="629" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="573.65" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="737.4" y="693" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="740.41" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_bread (20,202,020 samples, 0.13%)</title><rect x="1019.5" y="661" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1022.54" y="671.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="917" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1339.82" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_writepage_trans_blocks (10,101,010 samples, 0.07%)</title><rect x="389.5" y="645" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="392.48" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (20,202,020 samples, 0.13%)</title><rect x="507.6" y="661" width="1.8" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="510.56" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="1014.1" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1017.13" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1189.9" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1192.90" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="1250.3" y="693" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1253.29" y="703.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="16.3" y="645" width="1.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="19.31" y="655.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (20,202,020 samples, 0.13%)</title><rect x="1222.3" y="725" width="1.8" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="1225.34" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (30,303,030 samples, 0.20%)</title><rect x="260.6" y="613" width="2.7" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="263.58" y="623.5" ></text>
+</g>
+<g >
+<title>nf_nat_init (20,202,020 samples, 0.13%)</title><rect x="1381.0" y="789" width="1.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1383.99" y="799.5" ></text>
+</g>
+<g >
+<title>net_close (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="949" width="3.6" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1374.97" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="934.8" y="565" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="937.81" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="528.3" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="531.29" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1191.7" y="773" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1194.70" y="783.5" ></text>
+</g>
+<g >
+<title>__vm_area_free (10,101,010 samples, 0.07%)</title><rect x="1114.2" y="357" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="1117.18" y="367.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="1227.8" y="837" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1230.75" y="847.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.07%)</title><rect x="1366.6" y="773" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1369.56" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (30,303,030 samples, 0.20%)</title><rect x="1339.5" y="741" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1342.52" y="751.5" ></text>
+</g>
+<g >
+<title>__wake_up (10,101,010 samples, 0.07%)</title><rect x="272.3" y="581" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="275.30" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="188.5" y="517" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="191.47" y="527.5" ></text>
+</g>
+<g >
+<title>rmdir (303,030,300 samples, 1.96%)</title><rect x="349.8" y="773" width="27.1" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="352.82" y="783.5" >r..</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (292,929,290 samples, 1.89%)</title><rect x="1064.6" y="789" width="26.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1067.60" y="799.5" >[..</text>
+</g>
+<g >
+<title>server_main (454,545,450 samples, 2.94%)</title><rect x="41.5" y="981" width="40.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="44.55" y="991.5" >ser..</text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="496.7" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="499.74" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="871.7" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="874.71" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="546.3" y="709" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="549.32" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.20%)</title><rect x="691.4" y="613" width="2.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="694.44" y="623.5" ></text>
+</g>
+<g >
+<title>__strdup (10,101,010 samples, 0.07%)</title><rect x="1198.9" y="741" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1201.91" y="751.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1114.2" y="453" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1117.18" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="545.4" y="821" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="548.41" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (303,030,300 samples, 1.96%)</title><rect x="349.8" y="725" width="27.1" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="352.82" y="735.5" >_..</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="474.2" y="805" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="477.21" y="815.5" ></text>
+</g>
+<g >
+<title>inet_wait_for_connect (30,303,030 samples, 0.20%)</title><rect x="1339.5" y="805" width="2.7" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1342.52" y="815.5" ></text>
+</g>
+<g >
+<title>close_fd (10,101,010 samples, 0.07%)</title><rect x="854.6" y="661" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="857.59" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.20%)</title><rect x="749.1" y="597" width="2.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="752.12" y="607.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.07%)</title><rect x="1015.0" y="389" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1018.03" y="399.5" ></text>
+</g>
+<g >
+<title>__pte_offset_map_lock (10,101,010 samples, 0.07%)</title><rect x="1277.3" y="677" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1280.33" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="861.8" y="597" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="864.80" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="1186.3" y="613" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1189.29" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="970.0" y="677" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="972.96" y="687.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="853" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1339.82" y="863.5" ></text>
+</g>
+<g >
+<title>submit_bio (10,101,010 samples, 0.07%)</title><rect x="467.9" y="549" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="470.90" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="496.7" y="773" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="499.74" y="783.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.13%)</title><rect x="769.9" y="581" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="772.86" y="591.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="793.3" y="677" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="796.29" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="794.2" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="797.19" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="490.4" y="757" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="493.43" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (30,303,030 samples, 0.20%)</title><rect x="817.6" y="549" width="2.7" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="820.63" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.07%)</title><rect x="803.2" y="629" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="806.21" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.07%)</title><rect x="862.7" y="581" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="865.70" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1191.7" y="725" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1194.70" y="735.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.07%)</title><rect x="185.8" y="517" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="188.77" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="659.9" y="501" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="662.89" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.07%)</title><rect x="996.1" y="629" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="999.10" y="639.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.07%)</title><rect x="1102.5" y="597" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1105.46" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="341.7" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="344.70" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="936.6" y="549" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="939.61" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="810.4" y="581" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="813.42" y="591.5" ></text>
+</g>
+<g >
+<title>do_eventfd (10,101,010 samples, 0.07%)</title><rect x="71.3" y="821" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="74.29" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.07%)</title><rect x="647.3" y="581" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="650.27" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1113.3" y="533" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1116.28" y="543.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.07%)</title><rect x="430.9" y="821" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="433.94" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (10,101,010 samples, 0.07%)</title><rect x="1017.7" y="693" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1020.73" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="785.2" y="757" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="788.18" y="767.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="883.4" y="565" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="886.43" y="575.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="565" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1343.42" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.07%)</title><rect x="444.5" y="693" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="447.46" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_file_open (10,101,010 samples, 0.07%)</title><rect x="979.0" y="613" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="981.97" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="210.1" y="501" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="213.10" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_create (20,202,020 samples, 0.13%)</title><rect x="974.5" y="677" width="1.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="977.47" y="687.5" ></text>
+</g>
+<g >
+<title>filemap_read (20,202,020 samples, 0.13%)</title><rect x="641.9" y="597" width="1.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="644.86" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="586.9" y="469" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="589.88" y="479.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.07%)</title><rect x="265.1" y="629" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="268.09" y="639.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="887.9" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="890.94" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="339.0" y="597" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="342.00" y="607.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="198.4" y="437" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="201.39" y="447.5" ></text>
+</g>
+<g >
+<title>skb_do_copy_data_nocache (10,101,010 samples, 0.07%)</title><rect x="1368.4" y="741" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1371.37" y="751.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.07%)</title><rect x="11.8" y="869" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="14.80" y="879.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="533" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1368.66" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="732.0" y="629" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="735.00" y="639.5" ></text>
+</g>
+<g >
+<title>dput (50,505,050 samples, 0.33%)</title><rect x="1002.4" y="661" width="4.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1005.41" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.20%)</title><rect x="1240.4" y="661" width="2.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1243.37" y="671.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.07%)</title><rect x="1114.2" y="405" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1117.18" y="415.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="741.0" y="597" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="744.01" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="780.7" y="661" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="783.67" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="384.1" y="645" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="387.07" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="1133.1" y="645" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1136.11" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_readlink (10,101,010 samples, 0.07%)</title><rect x="1194.4" y="709" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="1197.40" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.07%)</title><rect x="220.9" y="565" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="223.92" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.07%)</title><rect x="1069.1" y="501" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1072.11" y="511.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.07%)</title><rect x="713.1" y="597" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="716.07" y="607.5" ></text>
+</g>
+<g >
+<title>release_sock (20,202,020 samples, 0.13%)</title><rect x="1364.8" y="677" width="1.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1367.76" y="687.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="679.7" y="693" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="682.72" y="703.5" ></text>
+</g>
+<g >
+<title>link (141,414,140 samples, 0.91%)</title><rect x="600.4" y="773" width="12.6" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="603.40" y="783.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="379.6" y="677" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="382.56" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (111,111,110 samples, 0.72%)</title><rect x="745.5" y="725" width="9.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="748.52" y="735.5" ></text>
+</g>
+<g >
+<title>ip_output (30,303,030 samples, 0.20%)</title><rect x="1349.4" y="709" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1352.44" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="71.3" y="853" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="74.29" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.13%)</title><rect x="1019.5" y="613" width="1.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1022.54" y="623.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.07%)</title><rect x="993.4" y="645" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="996.40" y="655.5" ></text>
+</g>
+<g >
+<title>log_entry_start (10,101,010 samples, 0.07%)</title><rect x="441.8" y="901" width="0.9" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="444.76" y="911.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="753.6" y="677" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="756.63" y="687.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.07%)</title><rect x="378.7" y="661" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="381.66" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (20,202,020 samples, 0.13%)</title><rect x="412.9" y="613" width="1.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="415.91" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="924.9" y="661" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="927.89" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="347.1" y="581" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="350.11" y="591.5" ></text>
+</g>
+<g >
+<title>log_entry_start (20,202,020 samples, 0.13%)</title><rect x="1245.8" y="885" width="1.8" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1248.78" y="895.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="1284.5" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1287.54" y="687.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.07%)</title><rect x="838.4" y="405" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="841.36" y="415.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="910.5" y="661" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="913.47" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="489.5" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="492.53" y="751.5" ></text>
+</g>
+<g >
+<title>select_collect (10,101,010 samples, 0.07%)</title><rect x="198.4" y="549" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="201.39" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (131,313,130 samples, 0.85%)</title><rect x="601.3" y="725" width="11.7" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="604.30" y="735.5" ></text>
+</g>
+<g >
+<title>pipe_write (30,303,030 samples, 0.20%)</title><rect x="1317.9" y="725" width="2.7" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1320.89" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="842.0" y="501" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="844.97" y="511.5" ></text>
+</g>
+<g >
+<title>security_file_permission (10,101,010 samples, 0.07%)</title><rect x="1363.9" y="725" width="0.9" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" />
+<text x="1366.86" y="735.5" ></text>
+</g>
+<g >
+<title>write (30,303,030 samples, 0.20%)</title><rect x="79.4" y="853" width="2.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="82.41" y="863.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="775.3" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="778.26" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1063.7" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1066.70" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="565.2" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="568.24" y="751.5" ></text>
+</g>
+<g >
+<title>__wait_on_bit (10,101,010 samples, 0.07%)</title><rect x="571.6" y="565" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="574.55" y="575.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1084.4" y="453" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1087.44" y="463.5" ></text>
+</g>
+<g >
+<title>get_unused_fd_flags (10,101,010 samples, 0.07%)</title><rect x="1185.4" y="661" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="1188.39" y="671.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.07%)</title><rect x="340.8" y="725" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="343.80" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="1253.0" y="565" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1255.99" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_flex_group.isra.0 (10,101,010 samples, 0.07%)</title><rect x="943.8" y="581" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="946.82" y="591.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="759.9" y="613" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="762.94" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_symlink (10,101,010 samples, 0.07%)</title><rect x="1041.2" y="725" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1044.17" y="735.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.07%)</title><rect x="426.4" y="645" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="429.43" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fname_prepare_lookup (10,101,010 samples, 0.07%)</title><rect x="992.5" y="613" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="995.50" y="623.5" ></text>
+</g>
+<g >
+<title>d_lookup (10,101,010 samples, 0.07%)</title><rect x="351.6" y="661" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="354.62" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="526.5" y="821" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="529.49" y="831.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.1.0] (20,202,020 samples, 0.13%)</title><rect x="1323.3" y="837" width="1.8" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1326.30" y="847.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.07%)</title><rect x="208.3" y="485" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="211.30" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1207.0" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1210.02" y="687.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (20,202,020 samples, 0.13%)</title><rect x="702.3" y="597" width="1.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="705.25" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="697.7" y="469" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="700.75" y="479.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="565.2" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="568.24" y="639.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.07%)</title><rect x="655.4" y="581" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="658.38" y="591.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (10,101,010 samples, 0.07%)</title><rect x="817.6" y="517" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="820.63" y="527.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.07%)</title><rect x="165.0" y="885" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="168.04" y="895.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (50,505,050 samples, 0.33%)</title><rect x="44.3" y="821" width="4.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="47.25" y="831.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="870.8" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="873.81" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (20,202,020 samples, 0.13%)</title><rect x="568.9" y="629" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="571.85" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="485.9" y="645" width="1.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="488.92" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.07%)</title><rect x="697.7" y="437" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="700.75" y="447.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="1084.4" y="229" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1087.44" y="239.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="700.5" y="549" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="703.45" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="89.3" y="821" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="92.32" y="831.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (10,101,010 samples, 0.07%)</title><rect x="1316.1" y="901" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1319.09" y="911.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="397.6" y="725" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="400.59" y="735.5" ></text>
+</g>
+<g >
+<title>dput (80,808,080 samples, 0.52%)</title><rect x="810.4" y="693" width="7.2" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="813.42" y="703.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="565" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1084.73" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_bread (20,202,020 samples, 0.13%)</title><rect x="147.9" y="789" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="150.91" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (111,111,110 samples, 0.72%)</title><rect x="404.8" y="757" width="9.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="407.80" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.07%)</title><rect x="469.7" y="501" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="472.70" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.07%)</title><rect x="358.8" y="629" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="361.83" y="639.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="654.5" y="629" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="657.48" y="639.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (50,505,050 samples, 0.33%)</title><rect x="58.7" y="309" width="4.5" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="61.67" y="319.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="642.8" y="533" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="645.76" y="543.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.07%)</title><rect x="284.9" y="565" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="287.92" y="575.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="630.1" y="693" width="1.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="633.14" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.26%)</title><rect x="490.4" y="773" width="3.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="493.43" y="783.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.07%)</title><rect x="372.4" y="421" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="375.35" y="431.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="736.5" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="739.51" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="195.7" y="565" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="198.68" y="575.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="736.5" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="739.51" y="623.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.07%)</title><rect x="1239.5" y="645" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1242.47" y="655.5" ></text>
+</g>
+<g >
+<title>ksys_write (30,303,030 samples, 0.20%)</title><rect x="79.4" y="789" width="2.7" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="82.41" y="799.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.07%)</title><rect x="16.3" y="469" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="19.31" y="479.5" ></text>
+</g>
+<g >
+<title>list_lru_del (10,101,010 samples, 0.07%)</title><rect x="312.9" y="581" width="0.9" height="15.0" fill="rgb(0,216,113)" rx="2" ry="2" />
+<text x="315.86" y="591.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.07%)</title><rect x="303.8" y="453" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="306.85" y="463.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="995.2" y="661" width="1.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="998.20" y="671.5" ></text>
+</g>
+<g >
+<title>open64 (30,303,030 samples, 0.20%)</title><rect x="749.1" y="645" width="2.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="752.12" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="179.5" y="853" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="182.46" y="863.5" ></text>
+</g>
+<g >
+<title>git_revparse_single (50,505,050 samples, 0.33%)</title><rect x="553.5" y="901" width="4.5" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="556.53" y="911.5" ></text>
+</g>
+<g >
+<title>free_unref_page_commit (10,101,010 samples, 0.07%)</title><rect x="227.2" y="181" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="230.23" y="191.5" ></text>
+</g>
+<g >
+<title>fprintf (20,202,020 samples, 0.13%)</title><rect x="74.9" y="917" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="77.90" y="927.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="727.5" y="661" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="730.49" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="556.2" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="559.23" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="1224.1" y="709" width="2.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1227.15" y="719.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.07%)</title><rect x="1153.8" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1156.84" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="794.2" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="797.19" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (30,303,030 samples, 0.20%)</title><rect x="914.1" y="533" width="2.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="917.08" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="651.8" y="741" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="654.78" y="751.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.07%)</title><rect x="1157.4" y="645" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1160.45" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (242,424,240 samples, 1.57%)</title><rect x="690.5" y="741" width="21.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="693.54" y="751.5" >[..</text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="785.2" y="661" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="788.18" y="671.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.07%)</title><rect x="1176.4" y="773" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1179.37" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.07%)</title><rect x="395.8" y="661" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="398.79" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="729.3" y="485" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="732.29" y="495.5" ></text>
+</g>
+<g >
+<title>opendir (20,202,020 samples, 0.13%)</title><rect x="500.3" y="789" width="1.8" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="503.35" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_find_dest_de (10,101,010 samples, 0.07%)</title><rect x="581.5" y="613" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="584.47" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="976.3" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="979.27" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="1070.0" y="725" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1073.01" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.52%)</title><rect x="880.7" y="725" width="7.2" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="883.73" y="735.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.07%)</title><rect x="475.1" y="677" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="478.11" y="687.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.07%)</title><rect x="929.4" y="501" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="932.40" y="511.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="424.6" y="549" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="427.63" y="559.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.07%)</title><rect x="842.0" y="277" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="844.97" y="287.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (40,404,040 samples, 0.26%)</title><rect x="1010.5" y="501" width="3.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1013.52" y="511.5" ></text>
+</g>
+<g >
+<title>fsnotify_perm.part.0 (10,101,010 samples, 0.07%)</title><rect x="1225.0" y="629" width="1.0" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="1228.05" y="639.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.07%)</title><rect x="1151.1" y="645" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="1154.14" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.07%)</title><rect x="372.4" y="501" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="375.35" y="511.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (10,101,010 samples, 0.07%)</title><rect x="1388.2" y="245" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1391.20" y="255.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.07%)</title><rect x="961.8" y="613" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="964.85" y="623.5" ></text>
+</g>
+<g >
+<title>build_open_flags (10,101,010 samples, 0.07%)</title><rect x="533.7" y="645" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="536.70" y="655.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="1109.7" y="693" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1112.67" y="703.5" ></text>
+</g>
+<g >
+<title>__slab_free (10,101,010 samples, 0.07%)</title><rect x="1114.2" y="325" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="1117.18" y="335.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.07%)</title><rect x="765.3" y="581" width="1.0" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="768.35" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="709" width="2.7" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1381.28" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="556.2" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="559.23" y="623.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (40,404,040 samples, 0.26%)</title><rect x="723.0" y="773" width="3.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="725.98" y="783.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.07%)</title><rect x="768.1" y="517" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="771.05" y="527.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (50,505,050 samples, 0.33%)</title><rect x="260.6" y="629" width="4.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="263.58" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1133.1" y="613" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1136.11" y="623.5" ></text>
+</g>
+<g >
+<title>vm_normal_page (10,101,010 samples, 0.07%)</title><rect x="1280.9" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1283.93" y="671.5" ></text>
+</g>
+<g >
+<title>opendir (30,303,030 samples, 0.20%)</title><rect x="858.2" y="677" width="2.7" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="861.19" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.07%)</title><rect x="197.5" y="485" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="200.49" y="495.5" ></text>
+</g>
+<g >
+<title>__sock_release (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="757" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1339.82" y="767.5" ></text>
+</g>
+<g >
+<title>ext4fs_dirhash (10,101,010 samples, 0.07%)</title><rect x="193.9" y="549" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="196.88" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.07%)</title><rect x="705.9" y="485" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="708.86" y="495.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="406.6" y="597" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="409.60" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="753.6" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="756.63" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="781.6" y="677" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="784.57" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_attach_jinode (10,101,010 samples, 0.07%)</title><rect x="979.0" y="597" width="0.9" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="981.97" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="777.1" y="805" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="780.07" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="408.4" y="613" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="411.41" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (212,121,210 samples, 1.37%)</title><rect x="932.1" y="645" width="18.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="935.10" y="655.5" ></text>
+</g>
+<g >
+<title>git_repository_open_ext (222,222,220 samples, 1.44%)</title><rect x="869.0" y="821" width="19.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="872.01" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.07%)</title><rect x="1254.8" y="629" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1257.79" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.20%)</title><rect x="733.8" y="613" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="736.80" y="623.5" ></text>
+</g>
+<g >
+<title>rwsem_down_write_slowpath (10,101,010 samples, 0.07%)</title><rect x="440.9" y="741" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="443.86" y="751.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.07%)</title><rect x="1070.9" y="597" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1073.91" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.07%)</title><rect x="893.3" y="661" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="896.34" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_bio_write_folio (10,101,010 samples, 0.07%)</title><rect x="1013.2" y="453" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1016.23" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="1250.3" y="677" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1253.29" y="687.5" ></text>
+</g>
+<g >
+<title>git_index_write (60,606,060 samples, 0.39%)</title><rect x="539.1" y="869" width="5.4" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="542.11" y="879.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1040.3" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1043.27" y="655.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.07%)</title><rect x="569.8" y="613" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="572.75" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (161,616,160 samples, 1.05%)</title><rect x="1002.4" y="693" width="14.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1005.41" y="703.5" ></text>
+</g>
+<g >
+<title>tlb_remove_table_rcu (10,101,010 samples, 0.07%)</title><rect x="227.2" y="245" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="230.23" y="255.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="405" width="2.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1381.28" y="415.5" ></text>
+</g>
+<g >
+<title>getdents64 (30,303,030 samples, 0.20%)</title><rect x="431.8" y="853" width="2.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="434.84" y="863.5" ></text>
+</g>
+<g >
+<title>lockref_put_return (10,101,010 samples, 0.07%)</title><rect x="112.8" y="869" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="115.76" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="474.2" y="773" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="477.21" y="783.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="1042.1" y="581" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1045.07" y="591.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (10,101,010 samples, 0.07%)</title><rect x="1366.6" y="757" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1369.56" y="767.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (10,101,010 samples, 0.07%)</title><rect x="1082.6" y="469" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1085.63" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="851.9" y="741" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="854.88" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="500.3" y="757" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="503.35" y="767.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.07%)</title><rect x="53.3" y="725" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="56.27" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.59%)</title><rect x="910.5" y="773" width="8.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="913.47" y="783.5" ></text>
+</g>
+<g >
+<title>blk_mq_submit_bio (30,303,030 samples, 0.20%)</title><rect x="839.3" y="453" width="2.7" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="842.26" y="463.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.07%)</title><rect x="1070.0" y="613" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1073.01" y="623.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="378.7" y="693" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="381.66" y="703.5" ></text>
+</g>
+<g >
+<title>inode_set_flags (10,101,010 samples, 0.07%)</title><rect x="1150.2" y="677" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1153.24" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1104.3" y="709" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1107.27" y="719.5" ></text>
+</g>
+<g >
+<title>git_reference_create (404,040,400 samples, 2.61%)</title><rect x="690.5" y="837" width="36.1" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="693.54" y="847.5" >git..</text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="919.5" y="789" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="922.48" y="799.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="381.4" y="773" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="384.37" y="783.5" ></text>
+</g>
+<g >
+<title>iterate_dir (30,303,030 samples, 0.20%)</title><rect x="1224.1" y="661" width="2.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1227.15" y="671.5" ></text>
+</g>
+<g >
+<title>link (30,303,030 samples, 0.20%)</title><rect x="807.7" y="773" width="2.7" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="810.71" y="783.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.07%)</title><rect x="1325.1" y="805" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1328.10" y="815.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="778.9" y="821" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="781.87" y="831.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (20,202,020 samples, 0.13%)</title><rect x="1370.2" y="693" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1373.17" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1249.4" y="757" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1252.39" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="207.4" y="565" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="210.40" y="575.5" ></text>
+</g>
+<g >
+<title>iterate_dir (10,101,010 samples, 0.07%)</title><rect x="193.9" y="629" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="196.88" y="639.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (161,616,160 samples, 1.05%)</title><rect x="833.0" y="709" width="14.4" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="835.95" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_empty_dir (10,101,010 samples, 0.07%)</title><rect x="354.3" y="661" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="357.32" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="417.4" y="757" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="420.42" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1052.0" y="613" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="1054.99" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="307.5" y="421" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="310.45" y="431.5" ></text>
+</g>
+<g >
+<title>git_signature_default (40,404,040 samples, 0.26%)</title><rect x="723.0" y="789" width="3.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="725.98" y="799.5" ></text>
+</g>
+<g >
+<title>_compound_head (20,202,020 samples, 0.13%)</title><rect x="1278.2" y="677" width="1.8" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="1281.23" y="687.5" ></text>
+</g>
+<g >
+<title>write (30,303,030 samples, 0.20%)</title><rect x="539.1" y="789" width="2.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="542.11" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="474.2" y="821" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="477.21" y="831.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.07%)</title><rect x="517.5" y="645" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="520.47" y="655.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="1068.2" y="709" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1071.21" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1360.3" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1363.25" y="799.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="469.7" y="469" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="472.70" y="479.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.07%)</title><rect x="105.5" y="789" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="108.55" y="799.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.07%)</title><rect x="1226.0" y="645" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="1228.95" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1336.8" y="901" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1339.82" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="370.5" y="533" width="1.0" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="373.55" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.26%)</title><rect x="933.9" y="581" width="3.6" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="936.91" y="591.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="989.8" y="725" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="992.79" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (30,303,030 samples, 0.20%)</title><rect x="1097.1" y="533" width="2.7" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="1100.05" y="543.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (20,202,020 samples, 0.13%)</title><rect x="815.8" y="581" width="1.8" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="818.83" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (40,404,040 samples, 0.26%)</title><rect x="624.7" y="677" width="3.6" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="627.74" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="650.0" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="652.97" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="832.1" y="693" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="835.05" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="709.5" y="709" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="712.46" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.59%)</title><rect x="857.3" y="757" width="8.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="860.29" y="767.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1072.7" y="629" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1075.72" y="639.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.07%)</title><rect x="475.1" y="629" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="478.11" y="639.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="357" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1381.28" y="367.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.07%)</title><rect x="571.6" y="517" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="574.55" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="1002.4" y="469" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1005.41" y="479.5" ></text>
+</g>
+<g >
+<title>____fput (20,202,020 samples, 0.13%)</title><rect x="1308.0" y="757" width="1.8" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1310.98" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="662.6" y="437" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="665.59" y="447.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="1290.8" y="645" width="1.0" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1293.85" y="655.5" ></text>
+</g>
+<g >
+<title>generic_write_end (10,101,010 samples, 0.07%)</title><rect x="908.7" y="597" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="911.67" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="885" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1374.97" y="895.5" ></text>
+</g>
+<g >
+<title>lru_add_drain_cpu (10,101,010 samples, 0.07%)</title><rect x="677.0" y="485" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="680.02" y="495.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.07%)</title><rect x="458.0" y="533" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="460.98" y="543.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="238.0" y="581" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="241.05" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.65%)</title><rect x="1209.7" y="805" width="9.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1212.73" y="815.5" ></text>
+</g>
+<g >
+<title>__vm_enough_memory (10,101,010 samples, 0.07%)</title><rect x="1292.7" y="709" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1295.65" y="719.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="1314.3" y="757" width="1.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1317.28" y="767.5" ></text>
+</g>
+<g >
+<title>read (30,303,030 samples, 0.20%)</title><rect x="534.6" y="709" width="2.7" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="537.60" y="719.5" ></text>
+</g>
+<g >
+<title>release_pages (10,101,010 samples, 0.07%)</title><rect x="423.7" y="645" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="426.73" y="655.5" ></text>
+</g>
+<g >
+<title>__close (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="917" width="3.6" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1374.97" y="927.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="386.8" y="421" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="389.77" y="431.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="1109.7" y="677" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1112.67" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_journal_mode (10,101,010 samples, 0.07%)</title><rect x="136.2" y="821" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="139.19" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.20%)</title><rect x="121.8" y="789" width="2.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="124.77" y="799.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (20,202,020 samples, 0.13%)</title><rect x="522.0" y="581" width="1.8" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="524.98" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="931.2" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="934.20" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_append (181,818,180 samples, 1.18%)</title><rect x="1155.6" y="693" width="16.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1158.64" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (1,545,454,530 samples, 9.99%)</title><rect x="182.2" y="789" width="137.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="185.16" y="799.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>[libz.so.1.2.11] (10,101,010 samples, 0.07%)</title><rect x="686.9" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="689.93" y="719.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (30,303,030 samples, 0.20%)</title><rect x="1386.4" y="469" width="2.7" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1389.39" y="479.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.07%)</title><rect x="1241.3" y="613" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1244.27" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_release_dir (10,101,010 samples, 0.07%)</title><rect x="398.5" y="693" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="401.49" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.07%)</title><rect x="954.6" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="957.64" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="741.0" y="661" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="744.01" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="545.4" y="773" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="548.41" y="783.5" ></text>
+</g>
+<g >
+<title>accept4 (20,202,020 samples, 0.13%)</title><rect x="72.2" y="885" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="75.19" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="303.8" y="501" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="306.85" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="902.4" y="645" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="905.36" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1320.6" y="885" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1323.59" y="895.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1221.4" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1224.44" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (20,202,020 samples, 0.13%)</title><rect x="407.5" y="693" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="410.50" y="703.5" ></text>
+</g>
+<g >
+<title>ci_cleanup_git_repo (2,979,797,950 samples, 19.27%)</title><rect x="176.8" y="933" width="265.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="179.75" y="943.5" >ci_cleanup_git_repo</text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.13%)</title><rect x="842.9" y="517" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="845.87" y="527.5" ></text>
+</g>
+<g >
+<title>ima_file_check (10,101,010 samples, 0.07%)</title><rect x="617.5" y="645" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="620.52" y="655.5" ></text>
+</g>
+<g >
+<title>__block_commit_write.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="515.7" y="581" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="518.67" y="591.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="1071.8" y="581" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1074.82" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.07%)</title><rect x="952.8" y="597" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="955.83" y="607.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="700.5" y="501" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="703.45" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.07%)</title><rect x="1254.8" y="613" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1257.79" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (40,404,040 samples, 0.26%)</title><rect x="769.9" y="693" width="3.6" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="772.86" y="703.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.07%)</title><rect x="542.7" y="629" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="545.71" y="639.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1099.8" y="549" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1102.76" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (20,202,020 samples, 0.13%)</title><rect x="275.9" y="613" width="1.8" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="278.90" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (70,707,070 samples, 0.46%)</title><rect x="223.6" y="533" width="6.3" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="226.63" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="780.7" y="757" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="783.67" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.07%)</title><rect x="1249.4" y="709" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1252.39" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="199.3" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="202.29" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.07%)</title><rect x="235.3" y="645" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="238.34" y="655.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.07%)</title><rect x="459.8" y="597" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="462.78" y="607.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.07%)</title><rect x="227.2" y="277" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="230.23" y="287.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="1070.0" y="677" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1073.01" y="687.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (40,404,040 samples, 0.26%)</title><rect x="1386.4" y="629" width="3.6" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1389.39" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="476.9" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="479.91" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (50,505,050 samples, 0.33%)</title><rect x="306.6" y="517" width="4.5" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="309.55" y="527.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.07%)</title><rect x="467.0" y="661" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="470.00" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.46%)</title><rect x="890.6" y="837" width="6.3" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="893.64" y="847.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="753.6" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="756.63" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_fname_setup_filename (10,101,010 samples, 0.07%)</title><rect x="1088.0" y="597" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1091.04" y="607.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (60,606,060 samples, 0.39%)</title><rect x="833.0" y="661" width="5.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="835.95" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="1007.8" y="533" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1010.82" y="543.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="202.0" y="565" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="204.99" y="575.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="1024.0" y="677" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1027.04" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_open (20,202,020 samples, 0.13%)</title><rect x="1024.9" y="677" width="1.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1027.94" y="687.5" ></text>
+</g>
+<g >
+<title>current_time (10,101,010 samples, 0.07%)</title><rect x="336.3" y="629" width="0.9" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="339.30" y="639.5" ></text>
+</g>
+<g >
+<title>git_reference_list (131,313,130 samples, 0.85%)</title><rect x="857.3" y="821" width="11.7" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="860.29" y="831.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="677" width="2.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1381.28" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (40,404,040 samples, 0.26%)</title><rect x="490.4" y="725" width="3.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="493.43" y="735.5" ></text>
+</g>
+<g >
+<title>ip_rcv_finish_core.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="261" width="0.9" height="15.0" fill="rgb(0,216,113)" rx="2" ry="2" />
+<text x="1368.66" y="271.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.59%)</title><rect x="517.5" y="789" width="8.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="520.47" y="799.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.07%)</title><rect x="198.4" y="405" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="201.39" y="415.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.07%)</title><rect x="546.3" y="645" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="549.32" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_read_block_bitmap (10,101,010 samples, 0.07%)</title><rect x="835.7" y="469" width="0.9" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="838.66" y="479.5" ></text>
+</g>
+<g >
+<title>do_linkat (20,202,020 samples, 0.13%)</title><rect x="541.8" y="757" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="544.81" y="767.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.07%)</title><rect x="441.8" y="741" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="444.76" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.07%)</title><rect x="302.0" y="517" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="305.04" y="527.5" ></text>
+</g>
+<g >
+<title>realpath (20,202,020 samples, 0.13%)</title><rect x="1174.6" y="821" width="1.8" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="1177.57" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="489.5" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="492.53" y="767.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="556.2" y="757" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="559.23" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.20%)</title><rect x="257.0" y="693" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="259.98" y="703.5" ></text>
+</g>
+<g >
+<title>file_update_time (10,101,010 samples, 0.07%)</title><rect x="10.9" y="805" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="13.90" y="815.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (30,303,030 samples, 0.20%)</title><rect x="1372.9" y="501" width="2.7" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1375.87" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.33%)</title><rect x="695.9" y="677" width="4.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="698.94" y="687.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.07%)</title><rect x="672.5" y="421" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="675.51" y="431.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1337.7" y="917" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1340.72" y="927.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.07%)</title><rect x="635.6" y="581" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="638.55" y="591.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.07%)</title><rect x="838.4" y="437" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="841.36" y="447.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="1034.9" y="533" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1037.86" y="543.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="987.1" y="693" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="990.09" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="867.2" y="549" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="870.20" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (30,303,030 samples, 0.20%)</title><rect x="539.1" y="741" width="2.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="542.11" y="751.5" ></text>
+</g>
+<g >
+<title>__memcg_kmem_charge_page (10,101,010 samples, 0.07%)</title><rect x="1274.6" y="661" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1277.62" y="671.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.07%)</title><rect x="765.3" y="469" width="1.0" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="768.35" y="479.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.07%)</title><rect x="1204.3" y="549" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1207.32" y="559.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (90,909,090 samples, 0.59%)</title><rect x="1073.6" y="629" width="8.1" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1076.62" y="639.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="510.3" y="549" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="513.26" y="559.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.07%)</title><rect x="862.7" y="549" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="865.70" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="242.6" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="245.55" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="521.1" y="709" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="524.08" y="719.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="1349.4" y="677" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1352.44" y="687.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.07%)</title><rect x="1118.7" y="613" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1121.69" y="623.5" ></text>
+</g>
+<g >
+<title>net_rx_action (10,101,010 samples, 0.07%)</title><rect x="17.2" y="517" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="20.21" y="527.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="403.9" y="725" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="406.90" y="735.5" ></text>
+</g>
+<g >
+<title>git_repository_is_empty (202,020,200 samples, 1.31%)</title><rect x="1209.7" y="869" width="18.1" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1212.73" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (161,616,160 samples, 1.05%)</title><rect x="780.7" y="821" width="14.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="783.67" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="1116.0" y="485" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1118.98" y="495.5" ></text>
+</g>
+<g >
+<title>__strdup (10,101,010 samples, 0.07%)</title><rect x="740.1" y="661" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="743.11" y="671.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="870.8" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="873.81" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.26%)</title><rect x="865.4" y="629" width="3.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="868.40" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="208.3" y="517" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="211.30" y="527.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="169.5" y="773" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="172.54" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.33%)</title><rect x="457.1" y="661" width="4.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="460.08" y="671.5" ></text>
+</g>
+<g >
+<title>dup_task_struct (30,303,030 samples, 0.20%)</title><rect x="36.1" y="933" width="2.7" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="39.14" y="943.5" ></text>
+</g>
+<g >
+<title>walk_component (30,303,030 samples, 0.20%)</title><rect x="990.7" y="677" width="2.7" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="993.69" y="687.5" ></text>
+</g>
+<g >
+<title>__folio_batch_release (10,101,010 samples, 0.07%)</title><rect x="815.8" y="549" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="818.83" y="559.5" ></text>
+</g>
+<g >
+<title>__es_remove_extent (10,101,010 samples, 0.07%)</title><rect x="222.7" y="517" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="225.72" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="896.9" y="789" width="1.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="899.95" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (252,525,250 samples, 1.63%)</title><rect x="824.8" y="805" width="22.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="827.84" y="815.5" >[..</text>
+</g>
+<g >
+<title>__ext4_link (10,101,010 samples, 0.07%)</title><rect x="542.7" y="709" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="545.71" y="719.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="1199.8" y="693" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1202.81" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (30,303,030 samples, 0.20%)</title><rect x="681.5" y="725" width="2.7" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="684.52" y="735.5" ></text>
+</g>
+<g >
+<title>__napi_poll (50,505,050 samples, 0.33%)</title><rect x="58.7" y="357" width="4.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="61.67" y="367.5" ></text>
+</g>
+<g >
+<title>ext4_read_inode_bitmap (10,101,010 samples, 0.07%)</title><rect x="294.8" y="581" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="297.83" y="591.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.07%)</title><rect x="138.9" y="709" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="141.90" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (292,929,290 samples, 1.89%)</title><rect x="1064.6" y="757" width="26.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1067.60" y="767.5" >[..</text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.07%)</title><rect x="1132.2" y="661" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1135.21" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="985.3" y="773" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="988.28" y="783.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1112.4" y="517" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1115.38" y="527.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.07%)</title><rect x="559.8" y="709" width="0.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="562.84" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="523.8" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="526.78" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_rename (90,909,090 samples, 0.59%)</title><rect x="1081.7" y="629" width="8.1" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1084.73" y="639.5" ></text>
+</g>
+<g >
+<title>unlink (30,303,030 samples, 0.20%)</title><rect x="317.4" y="741" width="2.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="320.37" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="1226.9" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1229.85" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_set_inode_flags (10,101,010 samples, 0.07%)</title><rect x="1150.2" y="693" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="1153.24" y="703.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (60,606,060 samples, 0.39%)</title><rect x="1384.6" y="773" width="5.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1387.59" y="783.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.07%)</title><rect x="441.8" y="821" width="0.9" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="444.76" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="850.1" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="853.08" y="687.5" ></text>
+</g>
+<g >
+<title>__getblk_gfp (10,101,010 samples, 0.07%)</title><rect x="502.1" y="581" width="1.0" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="505.15" y="591.5" ></text>
+</g>
+<g >
+<title>filename_lookup (111,111,110 samples, 0.72%)</title><rect x="165.0" y="917" width="10.0" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="168.04" y="927.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="737.4" y="661" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="740.41" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (10,101,010 samples, 0.07%)</title><rect x="951.0" y="533" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="954.03" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (20,202,020 samples, 0.13%)</title><rect x="663.5" y="469" width="1.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="666.49" y="479.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="1241.3" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1244.27" y="639.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="988.9" y="613" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="991.89" y="623.5" ></text>
+</g>
+<g >
+<title>alloc_pages (10,101,010 samples, 0.07%)</title><rect x="906.0" y="549" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="908.96" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (70,707,070 samples, 0.46%)</title><rect x="588.7" y="549" width="6.3" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="591.68" y="559.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.07%)</title><rect x="610.3" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="613.31" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (60,606,060 samples, 0.39%)</title><rect x="224.5" y="517" width="5.4" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="227.53" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="1100.7" y="517" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1103.66" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1115.1" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1118.08" y="527.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.07%)</title><rect x="307.5" y="389" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="310.45" y="399.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="597" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1064.90" y="607.5" ></text>
+</g>
+<g >
+<title>connect (151,515,150 samples, 0.98%)</title><rect x="1376.5" y="933" width="13.5" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1379.48" y="943.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="866.3" y="597" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="869.30" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="773.5" y="693" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="776.46" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.07%)</title><rect x="858.2" y="613" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="861.19" y="623.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.07%)</title><rect x="807.7" y="453" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="810.71" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,808,080 samples, 0.52%)</title><rect x="1016.8" y="773" width="7.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1019.83" y="783.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.07%)</title><rect x="452.6" y="757" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="455.57" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (70,707,070 samples, 0.46%)</title><rect x="185.8" y="613" width="6.3" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="188.77" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="586.9" y="453" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="589.88" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.07%)</title><rect x="645.5" y="517" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="648.47" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (30,303,030 samples, 0.20%)</title><rect x="79.4" y="805" width="2.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="82.41" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="689.6" y="757" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="692.63" y="767.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="1371.1" y="501" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1374.07" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="687.8" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="690.83" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_find_entry (10,101,010 samples, 0.07%)</title><rect x="1088.0" y="613" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1091.04" y="623.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="92.0" y="853" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="95.02" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="673.4" y="437" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="676.41" y="447.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="890.6" y="725" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="893.64" y="735.5" ></text>
+</g>
+<g >
+<title>rename (90,909,090 samples, 0.59%)</title><rect x="910.5" y="789" width="8.1" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="913.47" y="799.5" ></text>
+</g>
+<g >
+<title>rseq_update_cpu_node_id (10,101,010 samples, 0.07%)</title><rect x="988.0" y="693" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="990.99" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="476.0" y="757" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="479.01" y="767.5" ></text>
+</g>
+<g >
+<title>close_fd (10,101,010 samples, 0.07%)</title><rect x="1220.5" y="677" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="1223.54" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="964.6" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="967.55" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (30,303,030 samples, 0.20%)</title><rect x="662.6" y="549" width="2.7" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="665.59" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="199.3" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="202.29" y="671.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (20,202,020 samples, 0.13%)</title><rect x="138.0" y="773" width="1.8" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="140.99" y="783.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.07%)</title><rect x="416.5" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="419.52" y="783.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode_prepare (10,101,010 samples, 0.07%)</title><rect x="184.9" y="645" width="0.9" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="187.87" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_es_remove_extent (10,101,010 samples, 0.07%)</title><rect x="366.9" y="597" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="369.94" y="607.5" ></text>
+</g>
+<g >
+<title>mas_wr_modify (50,505,050 samples, 0.33%)</title><rect x="1287.2" y="693" width="4.6" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1290.24" y="703.5" ></text>
+</g>
+<g >
+<title>dup_mmap (515,151,510 samples, 3.33%)</title><rect x="1258.4" y="741" width="46.0" height="15.0" fill="rgb(0,201,46)" rx="2" ry="2" />
+<text x="1261.40" y="751.5" >dup_..</text>
+</g>
+<g >
+<title>ip_finish_output2 (20,202,020 samples, 0.13%)</title><rect x="16.3" y="613" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="19.31" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (30,303,030 samples, 0.20%)</title><rect x="1179.1" y="757" width="2.7" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1182.08" y="767.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (10,101,010 samples, 0.07%)</title><rect x="1053.8" y="757" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1056.79" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="267.8" y="597" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="270.79" y="607.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.13%)</title><rect x="287.6" y="501" width="1.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="290.62" y="511.5" ></text>
+</g>
+<g >
+<title>opendir (30,303,030 samples, 0.20%)</title><rect x="429.1" y="869" width="2.7" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="432.14" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_symlink (20,202,020 samples, 0.13%)</title><rect x="1041.2" y="757" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1044.17" y="767.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="1108.8" y="677" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1111.77" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (80,808,080 samples, 0.52%)</title><rect x="1016.8" y="709" width="7.2" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1019.83" y="719.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.07%)</title><rect x="958.2" y="597" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="961.24" y="607.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.07%)</title><rect x="16.3" y="453" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="19.31" y="463.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.20%)</title><rect x="994.3" y="693" width="2.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="997.30" y="703.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.07%)</title><rect x="957.3" y="549" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="960.34" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (20,202,020 samples, 0.13%)</title><rect x="1145.7" y="693" width="1.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1148.73" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="654.5" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="657.48" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="317.4" y="709" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="320.37" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (212,121,210 samples, 1.37%)</title><rect x="1110.6" y="725" width="18.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1113.57" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (90,909,090 samples, 0.59%)</title><rect x="910.5" y="741" width="8.1" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="913.47" y="751.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.07%)</title><rect x="844.7" y="517" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="847.67" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="411.1" y="613" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="414.11" y="623.5" ></text>
+</g>
+<g >
+<title>libgit_repository_free (60,606,060 samples, 0.39%)</title><rect x="176.8" y="917" width="5.4" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="179.75" y="927.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.07%)</title><rect x="464.3" y="565" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="467.29" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.07%)</title><rect x="714.0" y="565" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="716.97" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.07%)</title><rect x="1353.0" y="789" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1356.04" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mb_complex_scan_group (10,101,010 samples, 0.07%)</title><rect x="1166.5" y="581" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1169.46" y="591.5" ></text>
+</g>
+<g >
+<title>ksys_write (80,808,080 samples, 0.52%)</title><rect x="509.4" y="709" width="7.2" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="512.36" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.13%)</title><rect x="550.8" y="789" width="1.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="553.82" y="799.5" ></text>
+</g>
+<g >
+<title>file_close (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="933" width="3.6" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1374.97" y="943.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="781.6" y="661" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="784.57" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_bread (40,404,040 samples, 0.26%)</title><rect x="92.9" y="837" width="3.6" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="95.93" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (60,606,060 samples, 0.39%)</title><rect x="622.9" y="725" width="5.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="625.93" y="735.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="613" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1221.74" y="623.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (121,212,120 samples, 0.78%)</title><rect x="744.6" y="741" width="10.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="747.62" y="751.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.07%)</title><rect x="848.3" y="821" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="851.28" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="729.3" y="501" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="732.29" y="511.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="744.6" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="747.62" y="671.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (10,101,010 samples, 0.07%)</title><rect x="1248.5" y="773" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1251.48" y="783.5" ></text>
+</g>
+<g >
+<title>sock_alloc (10,101,010 samples, 0.07%)</title><rect x="72.2" y="789" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="75.19" y="799.5" ></text>
+</g>
+<g >
+<title>__schedule (50,505,050 samples, 0.33%)</title><rect x="44.3" y="789" width="4.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="47.25" y="799.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.07%)</title><rect x="720.3" y="709" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="723.28" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.07%)</title><rect x="10.9" y="837" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="13.90" y="847.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (10,101,010 samples, 0.07%)</title><rect x="391.3" y="645" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="394.28" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1186.3" y="693" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1189.29" y="703.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.13%)</title><rect x="1199.8" y="709" width="1.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1202.81" y="719.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.07%)</title><rect x="838.4" y="485" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="841.36" y="495.5" ></text>
+</g>
+<g >
+<title>shrink_dentry_list (40,404,040 samples, 0.26%)</title><rect x="373.3" y="661" width="3.6" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="376.25" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="1145.7" y="661" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1148.73" y="671.5" ></text>
+</g>
+<g >
+<title>__d_add (10,101,010 samples, 0.07%)</title><rect x="782.5" y="517" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="785.48" y="527.5" ></text>
+</g>
+<g >
+<title>new_inode (20,202,020 samples, 0.13%)</title><rect x="938.4" y="565" width="1.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="941.41" y="575.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.07%)</title><rect x="135.3" y="773" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="138.29" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (303,030,300 samples, 1.96%)</title><rect x="184.9" y="741" width="27.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="187.87" y="751.5" >[..</text>
+</g>
+<g >
+<title>ip_output (10,101,010 samples, 0.07%)</title><rect x="1371.1" y="629" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1374.07" y="639.5" ></text>
+</g>
+<g >
+<title>getname (20,202,020 samples, 0.13%)</title><rect x="236.2" y="693" width="1.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="239.24" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="714.0" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="716.97" y="655.5" ></text>
+</g>
+<g >
+<title>do_filp_open (30,303,030 samples, 0.20%)</title><rect x="457.1" y="597" width="2.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="460.08" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="849.2" y="709" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="852.18" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.07%)</title><rect x="957.3" y="597" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="960.34" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.07%)</title><rect x="803.2" y="597" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="806.21" y="607.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range (50,505,050 samples, 0.33%)</title><rect x="44.3" y="837" width="4.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="47.25" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="298.4" y="549" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="301.44" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (30,303,030 samples, 0.20%)</title><rect x="286.7" y="549" width="2.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="289.72" y="559.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_send (90,909,090 samples, 0.59%)</title><rect x="12.7" y="981" width="8.1" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="15.70" y="991.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (10,101,010 samples, 0.07%)</title><rect x="559.8" y="885" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="562.84" y="895.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.07%)</title><rect x="444.5" y="629" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="447.46" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.07%)</title><rect x="1085.3" y="485" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1088.34" y="495.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.07%)</title><rect x="769.0" y="693" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="771.95" y="703.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="679.7" y="677" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="682.72" y="687.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="596.8" y="629" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="599.79" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.07%)</title><rect x="1314.3" y="709" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1317.28" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="305.6" y="501" width="1.0" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="308.65" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="892.4" y="773" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="895.44" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_append (30,303,030 samples, 0.20%)</title><rect x="1019.5" y="677" width="2.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1022.54" y="687.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (80,808,080 samples, 0.52%)</title><rect x="1016.8" y="741" width="7.2" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1019.83" y="751.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.07%)</title><rect x="98.3" y="837" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="101.33" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="757.2" y="661" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="760.24" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="1195.3" y="805" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1198.30" y="815.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (30,303,030 samples, 0.20%)</title><rect x="979.9" y="645" width="2.7" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="982.88" y="655.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="127.2" y="757" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="130.18" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (40,404,040 samples, 0.26%)</title><rect x="1372.0" y="661" width="3.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1374.97" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="695.0" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="698.04" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1011.4" y="421" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1014.42" y="431.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.39%)</title><rect x="539.1" y="853" width="5.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="542.11" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (50,505,050 samples, 0.33%)</title><rect x="1252.1" y="709" width="4.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1255.09" y="719.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.07%)</title><rect x="549.0" y="741" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="552.02" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_put_io_end_defer (10,101,010 samples, 0.07%)</title><rect x="671.6" y="517" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="674.61" y="527.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.07%)</title><rect x="1373.8" y="309" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1376.78" y="319.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.07%)</title><rect x="748.2" y="597" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="751.22" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (30,303,030 samples, 0.20%)</title><rect x="216.4" y="613" width="2.7" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="219.41" y="623.5" ></text>
+</g>
+<g >
+<title>vm_area_free_rcu_cb (10,101,010 samples, 0.07%)</title><rect x="1114.2" y="373" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1117.18" y="383.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="650.0" y="693" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="652.97" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (90,909,090 samples, 0.59%)</title><rect x="630.1" y="757" width="8.2" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="633.14" y="767.5" ></text>
+</g>
+<g >
+<title>git_repository__cleanup (10,101,010 samples, 0.07%)</title><rect x="889.7" y="805" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="892.74" y="815.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="1212.4" y="645" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1215.43" y="655.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_dirty_metadata (20,202,020 samples, 0.13%)</title><rect x="607.6" y="581" width="1.8" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="610.61" y="591.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.07%)</title><rect x="1158.3" y="597" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1161.35" y="607.5" ></text>
+</g>
+<g >
+<title>git_reference_create (565,656,560 samples, 3.66%)</title><rect x="921.3" y="821" width="50.5" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="924.29" y="831.5" >git_r..</text>
+</g>
+<g >
+<title>__alloc_skb (20,202,020 samples, 0.13%)</title><rect x="60.5" y="117" width="1.8" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="63.48" y="127.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="877.1" y="581" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="880.12" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.07%)</title><rect x="860.9" y="629" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="863.89" y="639.5" ></text>
+</g>
+<g >
+<title>wake_up_bit (10,101,010 samples, 0.07%)</title><rect x="282.2" y="613" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="285.21" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.07%)</title><rect x="1060.1" y="661" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1063.10" y="671.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (30,303,030 samples, 0.20%)</title><rect x="651.8" y="693" width="2.7" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="654.78" y="703.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1019.5" y="581" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1022.54" y="591.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="597" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1343.42" y="607.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="129.9" y="709" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="132.88" y="719.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.07%)</title><rect x="1102.5" y="741" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1105.46" y="751.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.07%)</title><rect x="759.0" y="501" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="762.04" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="436.3" y="661" width="1.0" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="439.35" y="671.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.07%)</title><rect x="1357.6" y="773" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1360.55" y="783.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="611.2" y="693" width="1.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="614.21" y="703.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_loop (20,202,020 samples, 0.13%)</title><rect x="50.6" y="805" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="53.56" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="372.4" y="469" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="375.35" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="934.8" y="549" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="937.81" y="559.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.07%)</title><rect x="397.6" y="661" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="400.59" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="893.3" y="709" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="896.34" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="894.2" y="517" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="897.25" y="527.5" ></text>
+</g>
+<g >
+<title>bio_to_wbt_flags (10,101,010 samples, 0.07%)</title><rect x="841.1" y="421" width="0.9" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="844.06" y="431.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="1236.8" y="693" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1239.77" y="703.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.07%)</title><rect x="1205.2" y="629" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1208.22" y="639.5" ></text>
+</g>
+<g >
+<title>realpath (20,202,020 samples, 0.13%)</title><rect x="1193.5" y="789" width="1.8" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="1196.50" y="799.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="109.2" y="853" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="112.15" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1067.3" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1070.31" y="687.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.20%)</title><rect x="883.4" y="613" width="2.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="886.43" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.07%)</title><rect x="1239.5" y="597" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1242.47" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.07%)</title><rect x="1022.2" y="677" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1025.24" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.26%)</title><rect x="121.8" y="821" width="3.6" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="124.77" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (40,404,040 samples, 0.26%)</title><rect x="817.6" y="677" width="3.6" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="820.63" y="687.5" ></text>
+</g>
+<g >
+<title>__fget_light (10,101,010 samples, 0.07%)</title><rect x="828.4" y="645" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="831.45" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="468.8" y="485" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="471.80" y="495.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="236.2" y="677" width="1.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="239.24" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="69.5" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="72.49" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.07%)</title><rect x="353.4" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="356.42" y="671.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (20,202,020 samples, 0.13%)</title><rect x="1349.4" y="613" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1352.44" y="623.5" ></text>
+</g>
+<g >
+<title>_find_next_zero_bit (10,101,010 samples, 0.07%)</title><rect x="1144.8" y="693" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1147.83" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.59%)</title><rect x="531.0" y="837" width="8.1" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="533.99" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (10,101,010 samples, 0.07%)</title><rect x="465.2" y="581" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="468.19" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (494,949,490 samples, 3.20%)</title><rect x="1130.4" y="805" width="44.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1133.40" y="815.5" >entr..</text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="794.2" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="797.19" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_io_submit (10,101,010 samples, 0.07%)</title><rect x="670.7" y="517" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="673.71" y="527.5" ></text>
+</g>
+<g >
+<title>__tcp_ack_snd_check (20,202,020 samples, 0.13%)</title><rect x="1364.8" y="613" width="1.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1367.76" y="623.5" ></text>
+</g>
+<g >
+<title>truncate_cleanup_folio (10,101,010 samples, 0.07%)</title><rect x="424.6" y="661" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="427.63" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.07%)</title><rect x="1229.6" y="709" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1232.56" y="719.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.07%)</title><rect x="818.5" y="309" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="821.53" y="319.5" ></text>
+</g>
+<g >
+<title>access@plt (10,101,010 samples, 0.07%)</title><rect x="538.2" y="741" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="541.20" y="751.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.07%)</title><rect x="945.6" y="373" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="948.62" y="383.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="555.3" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="558.33" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="753.6" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="756.63" y="671.5" ></text>
+</g>
+<g >
+<title>unlock_buffer (10,101,010 samples, 0.07%)</title><rect x="807.7" y="405" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="810.71" y="415.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="739.2" y="725" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="742.21" y="735.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="1036.7" y="549" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="1039.66" y="559.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (30,303,030 samples, 0.20%)</title><rect x="1119.6" y="405" width="2.7" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1122.59" y="415.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.07%)</title><rect x="490.4" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="493.43" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_release_folio (10,101,010 samples, 0.07%)</title><rect x="424.6" y="597" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="427.63" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.07%)</title><rect x="1116.9" y="469" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1119.88" y="479.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="546.3" y="693" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="549.32" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (161,616,160 samples, 1.05%)</title><rect x="1002.4" y="725" width="14.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1005.41" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.33%)</title><rect x="704.1" y="677" width="4.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="707.06" y="687.5" ></text>
+</g>
+<g >
+<title>fdopendir (10,101,010 samples, 0.07%)</title><rect x="341.7" y="805" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="344.70" y="815.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (90,909,090 samples, 0.59%)</title><rect x="630.1" y="741" width="8.2" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="633.14" y="751.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.07%)</title><rect x="619.3" y="661" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="622.33" y="671.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.07%)</title><rect x="487.7" y="629" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="490.73" y="639.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.07%)</title><rect x="1256.6" y="773" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1259.60" y="783.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (30,303,030 samples, 0.20%)</title><rect x="317.4" y="677" width="2.7" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="320.37" y="687.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="738.3" y="693" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="741.31" y="703.5" ></text>
+</g>
+<g >
+<title>new_inode_pseudo (10,101,010 samples, 0.07%)</title><rect x="72.2" y="773" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="75.19" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="855.5" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="858.49" y="719.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.07%)</title><rect x="787.0" y="677" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="789.98" y="687.5" ></text>
+</g>
+<g >
+<title>storvsc_do_io (10,101,010 samples, 0.07%)</title><rect x="912.3" y="341" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="915.27" y="351.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.78%)</title><rect x="478.7" y="773" width="10.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="481.71" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.07%)</title><rect x="1380.1" y="293" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1383.08" y="303.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.07%)</title><rect x="160.5" y="869" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="163.53" y="879.5" ></text>
+</g>
+<g >
+<title>do_softirq (50,505,050 samples, 0.33%)</title><rect x="58.7" y="405" width="4.5" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="61.67" y="415.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="458.0" y="549" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="460.98" y="559.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.20%)</title><rect x="445.4" y="725" width="2.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="448.36" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="847.4" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="850.37" y="783.5" ></text>
+</g>
+<g >
+<title>__send (50,505,050 samples, 0.33%)</title><rect x="1367.5" y="869" width="4.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1370.47" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.33%)</title><rect x="1240.4" y="741" width="4.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1243.37" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.07%)</title><rect x="1039.4" y="581" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1042.37" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_check (10,101,010 samples, 0.07%)</title><rect x="302.0" y="549" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="305.04" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (50,505,050 samples, 0.33%)</title><rect x="1252.1" y="757" width="4.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1255.09" y="767.5" ></text>
+</g>
+<g >
+<title>close_fd (10,101,010 samples, 0.07%)</title><rect x="52.4" y="805" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="55.36" y="815.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="906.9" y="581" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="909.86" y="591.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="539.1" y="549" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="542.11" y="559.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.07%)</title><rect x="16.3" y="485" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="19.31" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (20,202,020 samples, 0.13%)</title><rect x="138.0" y="789" width="1.8" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="140.99" y="799.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="963.7" y="629" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="966.65" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="953.7" y="645" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="956.74" y="655.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.07%)</title><rect x="1230.5" y="581" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1233.46" y="591.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.07%)</title><rect x="710.4" y="485" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="713.37" y="495.5" ></text>
+</g>
+<g >
+<title>fstatat64 (101,010,100 samples, 0.65%)</title><rect x="629.2" y="805" width="9.1" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="632.24" y="815.5" ></text>
+</g>
+<g >
+<title>folio_create_empty_buffers (10,101,010 samples, 0.07%)</title><rect x="706.8" y="533" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="709.76" y="543.5" ></text>
+</g>
+<g >
+<title>git_config_open_ondisk (40,404,040 samples, 0.26%)</title><rect x="1061.0" y="821" width="3.6" height="15.0" fill="rgb(0,205,63)" rx="2" ry="2" />
+<text x="1064.00" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="942.0" y="549" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="945.02" y="559.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="326.4" y="677" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="329.38" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="732.0" y="581" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="735.00" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (50,505,050 samples, 0.33%)</title><rect x="616.6" y="725" width="4.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="619.62" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="761.7" y="661" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="764.74" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="734.7" y="517" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="737.70" y="527.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (10,101,010 samples, 0.07%)</title><rect x="842.0" y="213" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="844.97" y="223.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.07%)</title><rect x="413.8" y="597" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="416.81" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="545.4" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="548.41" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="188.5" y="533" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="191.47" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="730.2" y="741" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="733.20" y="751.5" ></text>
+</g>
+<g >
+<title>gettid (10,101,010 samples, 0.07%)</title><rect x="76.7" y="917" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="79.70" y="927.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="502.1" y="757" width="1.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="505.15" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.07%)</title><rect x="1069.1" y="485" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1072.11" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="1116.0" y="501" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1118.98" y="511.5" ></text>
+</g>
+<g >
+<title>errseq_check (10,101,010 samples, 0.07%)</title><rect x="384.1" y="629" width="0.9" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="387.07" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.07%)</title><rect x="729.3" y="533" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="732.29" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.07%)</title><rect x="835.7" y="501" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="838.66" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.07%)</title><rect x="298.4" y="565" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="301.44" y="575.5" ></text>
+</g>
+<g >
+<title>git_filter_list_stream_data (80,808,080 samples, 0.52%)</title><rect x="509.4" y="821" width="7.2" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="512.36" y="831.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="712.2" y="645" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="715.17" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (30,303,030 samples, 0.20%)</title><rect x="317.4" y="693" width="2.7" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="320.37" y="703.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.07%)</title><rect x="988.9" y="501" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="991.89" y="511.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="864.5" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="867.50" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="739.2" y="741" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="742.21" y="751.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.07%)</title><rect x="111.0" y="853" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="113.95" y="863.5" ></text>
+</g>
+<g >
+<title>storvsc_queuecommand (10,101,010 samples, 0.07%)</title><rect x="912.3" y="357" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="915.27" y="367.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="960.0" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="963.05" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.07%)</title><rect x="695.9" y="597" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="698.94" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="444.5" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="447.46" y="767.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.07%)</title><rect x="675.2" y="421" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="678.21" y="431.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="477.8" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="480.81" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.20%)</title><rect x="578.8" y="613" width="2.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="581.77" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (101,010,100 samples, 0.65%)</title><rect x="1081.7" y="645" width="9.0" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1084.73" y="655.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.07%)</title><rect x="834.8" y="517" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="837.76" y="527.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.07%)</title><rect x="177.7" y="773" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="180.66" y="783.5" ></text>
+</g>
+<g >
+<title>native_apic_wait_icr_idle (30,303,030 samples, 0.20%)</title><rect x="1345.8" y="629" width="2.7" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="1348.83" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.07%)</title><rect x="437.3" y="645" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="440.25" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (50,505,050 samples, 0.33%)</title><rect x="399.4" y="709" width="4.5" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="402.39" y="719.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.07%)</title><rect x="565.2" y="613" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="568.24" y="623.5" ></text>
+</g>
+<g >
+<title>ip_send_check (10,101,010 samples, 0.07%)</title><rect x="1335.0" y="629" width="0.9" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1338.02" y="639.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.07%)</title><rect x="1252.1" y="581" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="1255.09" y="591.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="1217.8" y="629" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1220.84" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1016.8" y="597" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1019.83" y="607.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (20,202,020 samples, 0.13%)</title><rect x="23.5" y="789" width="1.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="26.52" y="799.5" ></text>
+</g>
+<g >
+<title>event_loop_add_once (10,101,010 samples, 0.07%)</title><rect x="70.4" y="885" width="0.9" height="15.0" fill="rgb(0,236,197)" rx="2" ry="2" />
+<text x="73.39" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="545.4" y="789" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="548.41" y="799.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="970.0" y="581" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="972.96" y="591.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="819.4" y="405" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="822.43" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="242.6" y="533" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="245.55" y="543.5" ></text>
+</g>
+<g >
+<title>do_writepages (60,606,060 samples, 0.39%)</title><rect x="1082.6" y="549" width="5.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1085.63" y="559.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.07%)</title><rect x="803.2" y="501" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="806.21" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="783.4" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="786.38" y="719.5" ></text>
+</g>
+<g >
+<title>release_sock (10,101,010 samples, 0.07%)</title><rect x="1326.9" y="757" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1329.90" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="347.1" y="597" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="350.11" y="607.5" ></text>
+</g>
+<g >
+<title>rmdir (111,111,110 samples, 0.72%)</title><rect x="404.8" y="805" width="9.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="407.80" y="815.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.20%)</title><rect x="1179.1" y="709" width="2.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1182.08" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="741.0" y="613" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="744.01" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (101,010,100 samples, 0.65%)</title><rect x="838.4" y="645" width="9.0" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="841.36" y="655.5" ></text>
+</g>
+<g >
+<title>security_vm_enough_memory_mm (10,101,010 samples, 0.07%)</title><rect x="1292.7" y="725" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1295.65" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (80,808,080 samples, 0.52%)</title><rect x="222.7" y="549" width="7.2" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="225.72" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="764.4" y="629" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="767.45" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (434,343,430 samples, 2.81%)</title><rect x="923.1" y="741" width="38.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="926.09" y="751.5" >[li..</text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.07%)</title><rect x="779.8" y="741" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="782.77" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="1061.9" y="789" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1064.90" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="1043.9" y="661" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1046.87" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="1231.4" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1234.36" y="799.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.07%)</title><rect x="227.2" y="261" width="0.9" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="230.23" y="271.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (30,303,030 samples, 0.20%)</title><rect x="1179.1" y="725" width="2.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1182.08" y="735.5" ></text>
+</g>
+<g >
+<title>__legitimize_mnt (10,101,010 samples, 0.07%)</title><rect x="173.1" y="821" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="176.15" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (40,404,040 samples, 0.26%)</title><rect x="673.4" y="501" width="3.6" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="676.41" y="511.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.07%)</title><rect x="705.9" y="469" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="708.86" y="479.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.07%)</title><rect x="655.4" y="597" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="658.38" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.07%)</title><rect x="1226.0" y="613" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1228.95" y="623.5" ></text>
+</g>
+<g >
+<title>__close (30,303,030 samples, 0.20%)</title><rect x="651.8" y="757" width="2.7" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="654.78" y="767.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.07%)</title><rect x="616.6" y="613" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="619.62" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.07%)</title><rect x="281.3" y="597" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="284.31" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (30,303,030 samples, 0.20%)</title><rect x="813.1" y="565" width="2.7" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="816.12" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.07%)</title><rect x="193.9" y="581" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="196.88" y="591.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (10,101,010 samples, 0.07%)</title><rect x="1365.7" y="437" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1368.66" y="447.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.07%)</title><rect x="201.1" y="645" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="204.09" y="655.5" ></text>
+</g>
+<g >
+<title>wake_up_bit (10,101,010 samples, 0.07%)</title><rect x="807.7" y="389" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="810.71" y="399.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.07%)</title><rect x="72.2" y="757" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="75.19" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.07%)</title><rect x="565.2" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="568.24" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="971.8" y="757" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="974.76" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_xattr_security_get (10,101,010 samples, 0.07%)</title><rect x="761.7" y="469" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="764.74" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="1007.8" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1010.82" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (838,383,830 samples, 5.42%)</title><rect x="978.1" y="821" width="74.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="981.07" y="831.5" >[libgit2..</text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.07%)</title><rect x="463.4" y="597" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="466.39" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="1176.4" y="725" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1179.37" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="970.0" y="597" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="972.96" y="607.5" ></text>
+</g>
+<g >
+<title>__close (30,303,030 samples, 0.20%)</title><rect x="49.7" y="885" width="2.7" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="52.66" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="869.0" y="757" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="872.01" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="781.6" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="784.57" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.07%)</title><rect x="468.8" y="517" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="471.80" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (202,020,200 samples, 1.31%)</title><rect x="1072.7" y="725" width="18.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1075.72" y="735.5" ></text>
+</g>
+<g >
+<title>__release_sock (20,202,020 samples, 0.13%)</title><rect x="1364.8" y="661" width="1.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1367.76" y="671.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.07%)</title><rect x="1001.5" y="741" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1004.51" y="751.5" ></text>
+</g>
+<g >
+<title>ip_local_out (10,101,010 samples, 0.07%)</title><rect x="62.3" y="69" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="65.28" y="79.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="1062.8" y="757" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1065.80" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="89.3" y="789" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="92.32" y="799.5" ></text>
+</g>
+<g >
+<title>path_openat (30,303,030 samples, 0.20%)</title><rect x="521.1" y="629" width="2.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="524.08" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.26%)</title><rect x="769.9" y="725" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="772.86" y="735.5" ></text>
+</g>
+<g >
+<title>__sys_connect_file (151,515,150 samples, 0.98%)</title><rect x="1339.5" y="853" width="13.5" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="1342.52" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.07%)</title><rect x="218.2" y="597" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="221.22" y="607.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="795.1" y="757" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="798.09" y="767.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (20,202,020 samples, 0.13%)</title><rect x="750.0" y="501" width="1.8" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="753.03" y="511.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.07%)</title><rect x="75.8" y="869" width="0.9" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="78.80" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="1196.2" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1199.21" y="799.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (10,101,010 samples, 0.07%)</title><rect x="1388.2" y="197" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1391.20" y="207.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.07%)</title><rect x="1015.0" y="533" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1018.03" y="543.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (20,202,020 samples, 0.13%)</title><rect x="988.0" y="757" width="1.8" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="990.99" y="767.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (30,303,030 samples, 0.20%)</title><rect x="168.6" y="853" width="2.7" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="171.64" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.07%)</title><rect x="925.8" y="469" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="928.79" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.20%)</title><rect x="749.1" y="629" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="752.12" y="639.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.1.0] (20,202,020 samples, 0.13%)</title><rect x="12.7" y="901" width="1.8" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="15.70" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="894.2" y="581" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="897.25" y="591.5" ></text>
+</g>
+<g >
+<title>net_send_part (50,505,050 samples, 0.33%)</title><rect x="1367.5" y="885" width="4.5" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1370.47" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="331.8" y="549" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="334.79" y="559.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.07%)</title><rect x="1207.0" y="565" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="1210.02" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.07%)</title><rect x="1188.1" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1191.09" y="751.5" ></text>
+</g>
+<g >
+<title>io_schedule (10,101,010 samples, 0.07%)</title><rect x="816.7" y="485" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="819.73" y="495.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (20,202,020 samples, 0.13%)</title><rect x="1046.6" y="661" width="1.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1049.58" y="671.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.07%)</title><rect x="887.9" y="645" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="890.94" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.07%)</title><rect x="231.7" y="661" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="234.74" y="671.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="988.9" y="581" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="991.89" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="781.6" y="693" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="784.57" y="703.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (50,505,050 samples, 0.33%)</title><rect x="58.7" y="277" width="4.5" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="61.67" y="287.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.07%)</title><rect x="689.6" y="741" width="0.9" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="692.63" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (20,202,020 samples, 0.13%)</title><rect x="814.0" y="533" width="1.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="817.02" y="543.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (60,606,060 samples, 0.39%)</title><rect x="504.0" y="757" width="5.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="506.95" y="767.5" ></text>
+</g>
+<g >
+<title>rw_verify_area (10,101,010 samples, 0.07%)</title><rect x="1317.0" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1319.99" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.07%)</title><rect x="594.1" y="517" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="597.09" y="527.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.07%)</title><rect x="1167.4" y="533" width="0.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="1170.36" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_lookup.part.0 (10,101,010 samples, 0.07%)</title><rect x="786.1" y="565" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="789.08" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="791.5" y="757" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="794.49" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_es_free_extent (10,101,010 samples, 0.07%)</title><rect x="222.7" y="501" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="225.72" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="596.8" y="677" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="599.79" y="687.5" ></text>
+</g>
+<g >
+<title>_Fork (565,656,560 samples, 3.66%)</title><rect x="1256.6" y="869" width="50.5" height="15.0" fill="rgb(0,237,201)" rx="2" ry="2" />
+<text x="1259.60" y="879.5" >_Fork</text>
+</g>
+<g >
+<title>__local_bh_enable_ip (50,505,050 samples, 0.33%)</title><rect x="58.7" y="421" width="4.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="61.67" y="431.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.07%)</title><rect x="536.4" y="597" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="539.40" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.07%)</title><rect x="1079.9" y="437" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1082.93" y="447.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="408.4" y="597" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="411.41" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.07%)</title><rect x="355.2" y="661" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="358.23" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="874.4" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="877.42" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.07%)</title><rect x="1162.9" y="565" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1165.85" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="908.7" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="911.67" y="527.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.07%)</title><rect x="672.5" y="389" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="675.51" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.07%)</title><rect x="1113.3" y="485" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1116.28" y="495.5" ></text>
+</g>
+<g >
+<title>common_perm_cond (10,101,010 samples, 0.07%)</title><rect x="903.3" y="597" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="906.26" y="607.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.07%)</title><rect x="889.7" y="725" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="892.74" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.20%)</title><rect x="733.8" y="677" width="2.7" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="736.80" y="687.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="318.3" y="629" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="321.27" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.20%)</title><rect x="445.4" y="741" width="2.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="448.36" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="537.3" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="540.30" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.07%)</title><rect x="156.9" y="837" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="159.92" y="847.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.07%)</title><rect x="537.3" y="677" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="540.30" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (121,212,120 samples, 0.78%)</title><rect x="1118.7" y="661" width="10.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1121.69" y="671.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (121,212,120 samples, 0.78%)</title><rect x="1326.0" y="805" width="10.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1329.00" y="815.5" ></text>
+</g>
+<g >
+<title>ip_local_out (10,101,010 samples, 0.07%)</title><rect x="1340.4" y="629" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1343.42" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_read_inode_bitmap (10,101,010 samples, 0.07%)</title><rect x="1114.2" y="549" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="1117.18" y="559.5" ></text>
+</g>
+<g >
+<title>unlink_cb (121,212,120 samples, 0.78%)</title><rect x="404.8" y="837" width="10.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="407.80" y="847.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (30,303,030 samples, 0.20%)</title><rect x="817.6" y="597" width="2.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="820.63" y="607.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.07%)</title><rect x="988.9" y="533" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="991.89" y="543.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.07%)</title><rect x="872.6" y="757" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="875.61" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4fs_dirhash (10,101,010 samples, 0.07%)</title><rect x="862.7" y="517" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="865.70" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="503.1" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="506.05" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_bio_write_folio (10,101,010 samples, 0.07%)</title><rect x="844.7" y="485" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="847.67" y="495.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.07%)</title><rect x="1067.3" y="597" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="1070.31" y="607.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (10,101,010 samples, 0.07%)</title><rect x="62.3" y="85" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="65.28" y="95.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.07%)</title><rect x="190.3" y="501" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="193.27" y="511.5" ></text>
+</g>
+<g >
+<title>readdir64 (80,808,080 samples, 0.52%)</title><rect x="342.6" y="805" width="7.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="345.61" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.07%)</title><rect x="1062.8" y="661" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1065.80" y="671.5" ></text>
+</g>
+<g >
+<title>lookup_dcache (10,101,010 samples, 0.07%)</title><rect x="1107.0" y="645" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1109.97" y="655.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.07%)</title><rect x="279.5" y="485" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="282.51" y="495.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.07%)</title><rect x="1205.2" y="613" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1208.22" y="623.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.07%)</title><rect x="142.5" y="741" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="145.50" y="751.5" ></text>
+</g>
+<g >
+<title>signal_set_mask_internal (10,101,010 samples, 0.07%)</title><rect x="69.5" y="853" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="72.49" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="874.4" y="725" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="877.42" y="735.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (30,303,030 samples, 0.20%)</title><rect x="266.0" y="661" width="2.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="268.99" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (20,202,020 samples, 0.13%)</title><rect x="663.5" y="485" width="1.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="666.49" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="468.8" y="469" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="471.80" y="479.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.07%)</title><rect x="1193.5" y="629" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1196.50" y="639.5" ></text>
+</g>
+<g >
+<title>do_rmdir (70,707,070 samples, 0.46%)</title><rect x="434.5" y="773" width="6.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="437.55" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (40,404,040 samples, 0.26%)</title><rect x="226.3" y="485" width="3.6" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="229.33" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (20,202,020 samples, 0.13%)</title><rect x="228.1" y="469" width="1.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="231.13" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="152.4" y="773" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="155.42" y="783.5" ></text>
+</g>
+<g >
+<title>__mutex_lock.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="191.2" y="485" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="194.18" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.33%)</title><rect x="1201.6" y="709" width="4.5" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="1204.61" y="719.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.07%)</title><rect x="1356.6" y="933" width="1.0" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1359.65" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (30,303,030 samples, 0.20%)</title><rect x="386.8" y="629" width="2.7" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="389.77" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (30,303,030 samples, 0.20%)</title><rect x="807.7" y="725" width="2.7" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="810.71" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_bread (30,303,030 samples, 0.20%)</title><rect x="696.8" y="565" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="699.85" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.07%)</title><rect x="248.0" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="250.96" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.07%)</title><rect x="281.3" y="613" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="284.31" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.07%)</title><rect x="762.6" y="501" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="765.65" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.07%)</title><rect x="1114.2" y="565" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1117.18" y="575.5" ></text>
+</g>
+<g >
+<title>__do_softirq (80,808,080 samples, 0.52%)</title><rect x="1327.8" y="501" width="7.2" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1330.81" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.07%)</title><rect x="421.0" y="789" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="424.03" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1222.3" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1225.34" y="719.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="237.1" y="661" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="240.15" y="671.5" ></text>
+</g>
+<g >
+<title>wbt_wait (10,101,010 samples, 0.07%)</title><rect x="1122.3" y="405" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1125.29" y="415.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.07%)</title><rect x="1018.6" y="629" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1021.63" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.26%)</title><rect x="686.0" y="789" width="3.6" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="689.03" y="799.5" ></text>
+</g>
+<g >
+<title>mkdir (111,111,110 samples, 0.72%)</title><rect x="86.6" y="981" width="9.9" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="89.62" y="991.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (20,202,020 samples, 0.13%)</title><rect x="1372.9" y="373" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1375.87" y="383.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="1244.0" y="725" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1246.98" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.07%)</title><rect x="908.7" y="565" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="911.67" y="575.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.07%)</title><rect x="1353.0" y="837" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1356.04" y="847.5" ></text>
+</g>
+<g >
+<title>wake_up_q (10,101,010 samples, 0.07%)</title><rect x="74.0" y="837" width="0.9" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="77.00" y="847.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.07%)</title><rect x="523.8" y="613" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="526.78" y="623.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="758.1" y="613" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="761.14" y="623.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.07%)</title><rect x="162.3" y="853" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="165.33" y="863.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.07%)</title><rect x="290.3" y="549" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="293.33" y="559.5" ></text>
+</g>
+<g >
+<title>rwsem_spin_on_owner (10,101,010 samples, 0.07%)</title><rect x="440.9" y="709" width="0.9" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="443.86" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.13%)</title><rect x="775.3" y="661" width="1.8" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" />
+<text x="778.26" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.72%)</title><rect x="165.0" y="997" width="10.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="168.04" y="1007.5" ></text>
+</g>
+<g >
+<title>touch_atime (20,202,020 samples, 0.13%)</title><rect x="432.7" y="773" width="1.8" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="435.74" y="783.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (20,202,020 samples, 0.13%)</title><rect x="912.3" y="421" width="1.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="915.27" y="431.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (30,303,030 samples, 0.20%)</title><rect x="1119.6" y="437" width="2.7" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1122.59" y="447.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (10,101,010 samples, 0.07%)</title><rect x="699.5" y="661" width="1.0" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="702.55" y="671.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (10,101,010 samples, 0.07%)</title><rect x="858.2" y="661" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="861.19" y="671.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (40,404,040 samples, 0.26%)</title><rect x="1386.4" y="661" width="3.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1389.39" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.07%)</title><rect x="914.1" y="485" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="917.08" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="364.2" y="597" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="367.24" y="607.5" ></text>
+</g>
+<g >
+<title>filename_create (20,202,020 samples, 0.13%)</title><rect x="807.7" y="693" width="1.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="810.71" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.07%)</title><rect x="688.7" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="691.73" y="687.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.07%)</title><rect x="1309.8" y="837" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1312.78" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="331.8" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="334.79" y="591.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.07%)</title><rect x="764.4" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="767.45" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="999.7" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1002.71" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_es_free_extent (10,101,010 samples, 0.07%)</title><rect x="366.9" y="565" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="369.94" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.20%)</title><rect x="718.5" y="725" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="721.48" y="735.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.07%)</title><rect x="988.9" y="677" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="991.89" y="687.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.07%)</title><rect x="891.5" y="677" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="894.54" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.07%)</title><rect x="794.2" y="597" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="797.19" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="902.4" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="905.36" y="735.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.07%)</title><rect x="1185.4" y="725" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1188.39" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.07%)</title><rect x="793.3" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="796.29" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (434,343,430 samples, 2.81%)</title><rect x="1090.7" y="821" width="38.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1093.74" y="831.5" >git..</text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.07%)</title><rect x="1024.0" y="645" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1027.04" y="655.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (80,808,080 samples, 0.52%)</title><rect x="41.5" y="869" width="7.3" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="44.55" y="879.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (30,303,030 samples, 0.20%)</title><rect x="1378.3" y="549" width="2.7" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1381.28" y="559.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (40,404,040 samples, 0.26%)</title><rect x="1124.1" y="517" width="3.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1127.10" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.07%)</title><rect x="1044.8" y="613" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1047.77" y="623.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.07%)</title><rect x="268.7" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="271.69" y="671.5" ></text>
+</g>
+<g >
+<title>ip_local_out (80,808,080 samples, 0.52%)</title><rect x="57.8" y="533" width="7.2" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="60.77" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (111,111,110 samples, 0.72%)</title><rect x="668.9" y="629" width="9.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="671.90" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.07%)</title><rect x="748.2" y="581" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="751.22" y="591.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (30,303,030 samples, 0.20%)</title><rect x="1372.9" y="549" width="2.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1375.87" y="559.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.07%)</title><rect x="176.8" y="789" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="179.75" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.07%)</title><rect x="195.7" y="517" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="198.68" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_read (30,303,030 samples, 0.20%)</title><rect x="1363.9" y="757" width="2.7" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1366.86" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_statx (50,505,050 samples, 0.33%)</title><rect x="1056.5" y="725" width="4.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1059.49" y="735.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.07%)</title><rect x="1081.7" y="453" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1084.73" y="463.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (20,202,020 samples, 0.13%)</title><rect x="777.1" y="821" width="1.8" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="780.07" y="831.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.07%)</title><rect x="1218.7" y="581" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1221.74" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.07%)</title><rect x="1055.6" y="709" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1058.59" y="719.5" ></text>
+</g>
+<g >
+<title>__init_rwsem (10,101,010 samples, 0.07%)</title><rect x="1338.6" y="789" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="1341.62" y="799.5" ></text>
+</g>
+</g>
+</svg>