aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/flame_graphs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--flame_graphs/flame_graph_output_long.svg35250
-rw-r--r--flame_graphs/flame_graph_output_simple.svg32050
2 files changed, 67300 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..5813574
--- /dev/null
+++ b/flame_graphs/flame_graph_output_long.svg
@@ -0,0 +1,35250 @@
+<?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="1174" onload="init(evt)" viewBox="0 0 1400 1174" 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;
+ if (currentSearchTerm === null) return;
+
+ 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="1174.0" fill="url(#background)" />
+<text id="title" x="700.00" y="24" >Flame Graph</text>
+<text id="details" x="10.00" y="1157" > </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="1157" > </text>
+<g id="frames">
+<g >
+<title>net_send_buf (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="965" width="1.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1378.43" y="975.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="56.9" y="869" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="59.90" y="879.5" ></text>
+</g>
+<g >
+<title>folio_mark_accessed (10,101,010 samples, 0.03%)</title><rect x="582.8" y="581" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="585.76" y="591.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (30,303,030 samples, 0.10%)</title><rect x="756.7" y="949" width="1.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="759.68" y="959.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="136.1" y="581" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="139.12" y="591.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="698.0" y="501" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="700.95" y="511.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="274.1" y="757" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="277.07" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="574.1" y="709" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="577.11" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="446.6" y="709" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="449.63" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="789" width="1.9" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="1378.43" y="799.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="535.0" y="581" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="537.96" y="591.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="424.8" y="725" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="427.77" y="735.5" ></text>
+</g>
+<g >
+<title>evict (191,919,190 samples, 0.63%)</title><rect x="353.3" y="645" width="8.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="356.29" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.10%)</title><rect x="72.8" y="821" width="1.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="75.83" y="831.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.03%)</title><rect x="476.7" y="757" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="479.68" y="767.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.03%)</title><rect x="654.7" y="645" width="0.5" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="657.70" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (121,212,120 samples, 0.40%)</title><rect x="675.2" y="837" width="5.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="678.19" y="847.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (50,505,050 samples, 0.16%)</title><rect x="530.9" y="821" width="2.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="533.86" y="831.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="253.1" y="821" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="256.13" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="295.9" y="853" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="298.93" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (20,202,020 samples, 0.07%)</title><rect x="535.0" y="613" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="537.96" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="251.8" y="773" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="254.76" y="783.5" ></text>
+</g>
+<g >
+<title>srso_alias_return_thunk (10,101,010 samples, 0.03%)</title><rect x="580.5" y="709" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="583.48" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.03%)</title><rect x="613.7" y="645" width="0.5" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="616.72" y="655.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.03%)</title><rect x="234.5" y="757" width="0.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="237.46" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_rename (70,707,070 samples, 0.23%)</title><rect x="460.3" y="725" width="3.2" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="463.29" y="735.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="597.3" y="613" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="600.33" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (40,404,040 samples, 0.13%)</title><rect x="167.1" y="565" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="170.08" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="418.4" y="581" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="421.40" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="538.6" y="837" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="541.60" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="606.0" y="597" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="608.98" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="372.0" y="821" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="374.96" y="831.5" ></text>
+</g>
+<g >
+<title>__do_sys_wait4 (40,404,040 samples, 0.13%)</title><rect x="754.0" y="837" width="1.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="756.95" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="481.7" y="773" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="484.69" y="783.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="360.6" y="517" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="363.58" y="527.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="324.2" y="741" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="327.15" y="751.5" ></text>
+</g>
+<g >
+<title>alloc_anon_folio (90,909,090 samples, 0.30%)</title><rect x="1339.0" y="837" width="4.1" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1342.01" y="847.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.10%)</title><rect x="322.3" y="693" width="1.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="325.33" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="21.8" y="885" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="24.84" y="895.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="291.8" y="725" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="294.83" y="735.5" ></text>
+</g>
+<g >
+<title>__inet_lookup_established (10,101,010 samples, 0.03%)</title><rect x="1383.2" y="309" width="0.4" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="1386.17" y="319.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="543.6" y="725" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="546.61" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.03%)</title><rect x="234.5" y="789" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="237.46" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="604.6" y="773" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="607.62" y="783.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="672.5" y="677" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="675.45" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="420.2" y="645" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="423.22" y="655.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (10,101,010 samples, 0.03%)</title><rect x="617.8" y="757" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="620.82" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (10,101,010 samples, 0.03%)</title><rect x="500.4" y="661" width="0.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="503.35" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (494,949,490 samples, 1.62%)</title><rect x="1011.6" y="885" width="22.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1014.65" y="895.5" >d..</text>
+</g>
+<g >
+<title>readdir64 (20,202,020 samples, 0.07%)</title><rect x="369.7" y="869" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="372.68" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_find_dest_de (10,101,010 samples, 0.03%)</title><rect x="624.6" y="709" width="0.5" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="627.65" y="719.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="409.7" y="469" width="0.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="412.75" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (171,717,170 samples, 0.56%)</title><rect x="130.2" y="757" width="7.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="133.20" y="767.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (50,505,050 samples, 0.16%)</title><rect x="188.5" y="645" width="2.3" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="191.48" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="438.4" y="645" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="441.43" y="655.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="539.5" y="597" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="542.51" y="607.5" ></text>
+</g>
+<g >
+<title>alloc_anon_folio (30,303,030 samples, 0.10%)</title><rect x="1052.6" y="837" width="1.4" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1055.63" y="847.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="479.9" y="613" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="482.86" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.23%)</title><rect x="18.2" y="949" width="3.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="21.20" y="959.5" ></text>
+</g>
+<g >
+<title>git_remote_disconnect (10,101,010 samples, 0.03%)</title><rect x="493.1" y="901" width="0.4" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="496.07" y="911.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="667.9" y="613" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="670.90" y="623.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="479.9" y="597" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="482.86" y="607.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.07%)</title><rect x="425.2" y="645" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="428.23" y="655.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (60,606,060 samples, 0.20%)</title><rect x="276.8" y="693" width="2.7" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="279.80" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="227.2" y="613" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="230.18" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="470.3" y="693" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="473.30" y="703.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.03%)</title><rect x="643.3" y="469" width="0.5" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="646.32" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (40,404,040 samples, 0.13%)</title><rect x="547.2" y="565" width="1.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="550.25" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.03%)</title><rect x="1331.7" y="741" width="0.5" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1334.72" y="751.5" ></text>
+</g>
+<g >
+<title>__napi_poll (10,101,010 samples, 0.03%)</title><rect x="11.8" y="517" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="14.82" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="586.4" y="741" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="589.40" y="751.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (20,202,020 samples, 0.07%)</title><rect x="602.3" y="789" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="605.34" y="799.5" ></text>
+</g>
+<g >
+<title>accept4 (70,707,070 samples, 0.23%)</title><rect x="35.5" y="933" width="3.2" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="38.50" y="943.5" ></text>
+</g>
+<g >
+<title>list_lru_add (10,101,010 samples, 0.03%)</title><rect x="683.4" y="789" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="686.38" y="799.5" ></text>
+</g>
+<g >
+<title>path_openat (30,303,030 samples, 0.10%)</title><rect x="428.9" y="533" width="1.3" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="431.87" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="413.4" y="709" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="416.39" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (40,404,040 samples, 0.13%)</title><rect x="1368.1" y="917" width="1.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1371.15" y="927.5" ></text>
+</g>
+<g >
+<title>get_unused_fd_flags (10,101,010 samples, 0.03%)</title><rect x="377.4" y="645" width="0.5" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="380.42" y="655.5" ></text>
+</g>
+<g >
+<title>may_open (10,101,010 samples, 0.03%)</title><rect x="240.4" y="613" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="243.38" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="391.5" y="725" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="394.54" y="735.5" ></text>
+</g>
+<g >
+<title>inet_csk_route_req (10,101,010 samples, 0.03%)</title><rect x="1041.2" y="325" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1044.24" y="335.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.10%)</title><rect x="671.1" y="709" width="1.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="674.09" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.20%)</title><rect x="36.0" y="917" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="38.95" y="927.5" ></text>
+</g>
+<g >
+<title>filemap_release_folio (10,101,010 samples, 0.03%)</title><rect x="231.7" y="645" width="0.5" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="234.73" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="422.5" y="661" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="425.50" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="397.0" y="661" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="400.00" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.03%)</title><rect x="402.9" y="581" width="0.5" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="405.92" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_brk (10,101,010 samples, 0.03%)</title><rect x="1057.2" y="821" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1060.18" y="831.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.03%)</title><rect x="570.0" y="757" width="0.5" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="573.01" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="46.0" y="933" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="48.97" y="943.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.03%)</title><rect x="544.1" y="661" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="547.06" y="671.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="613.3" y="645" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="616.27" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="284.1" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="287.09" y="783.5" ></text>
+</g>
+<g >
+<title>do_filp_open (30,303,030 samples, 0.10%)</title><rect x="677.9" y="645" width="1.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="680.92" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_create (20,202,020 samples, 0.07%)</title><rect x="382.9" y="597" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="385.89" y="607.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (20,202,020 samples, 0.07%)</title><rect x="270.4" y="709" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="273.43" y="719.5" ></text>
+</g>
+<g >
+<title>get_random_u32 (10,101,010 samples, 0.03%)</title><rect x="68.7" y="853" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="71.73" y="863.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="585.5" y="757" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="588.49" y="767.5" ></text>
+</g>
+<g >
+<title>wait4 (40,404,040 samples, 0.13%)</title><rect x="754.0" y="917" width="1.8" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="756.95" y="927.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (252,525,250 samples, 0.82%)</title><rect x="586.4" y="837" width="11.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="589.40" y="847.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="538.1" y="725" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="541.14" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="536.3" y="773" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="539.32" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="615.5" y="645" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="618.54" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.03%)</title><rect x="221.3" y="677" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="224.26" y="687.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="294.6" y="597" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="297.56" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.13%)</title><rect x="506.3" y="741" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="509.27" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.10%)</title><rect x="428.9" y="581" width="1.3" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="431.87" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (20,202,020 samples, 0.07%)</title><rect x="576.8" y="693" width="1.0" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="579.84" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="620.1" y="725" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="623.10" y="735.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_commit_charge (10,101,010 samples, 0.03%)</title><rect x="396.5" y="533" width="0.5" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="399.55" y="543.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="523.1" y="597" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="526.12" y="607.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.03%)</title><rect x="543.2" y="485" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="546.15" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="137.9" y="805" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="140.94" y="815.5" ></text>
+</g>
+<g >
+<title>__fput_sync (20,202,020 samples, 0.07%)</title><rect x="1034.0" y="885" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1036.96" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_setent (10,101,010 samples, 0.03%)</title><rect x="597.3" y="645" width="0.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="600.33" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="236.3" y="693" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="239.28" y="703.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="595.1" y="581" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="598.05" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="233.1" y="677" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="236.09" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="262.7" y="741" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="265.69" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (121,212,120 samples, 0.40%)</title><rect x="628.3" y="645" width="5.5" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="631.29" y="655.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="262.2" y="725" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="265.23" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (474,747,470 samples, 1.55%)</title><rect x="1012.6" y="789" width="21.4" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="1015.56" y="799.5" >t..</text>
+</g>
+<g >
+<title>mem_cgroup_charge_skmem (10,101,010 samples, 0.03%)</title><rect x="1029.4" y="245" width="0.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1032.41" y="255.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="320.5" y="725" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="323.51" y="735.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="721.6" y="869" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="724.63" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="225.8" y="693" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="228.81" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (40,404,040 samples, 0.13%)</title><rect x="355.1" y="613" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="358.11" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="672.9" y="789" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="675.91" y="799.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="885" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1046.98" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="686.6" y="709" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="689.57" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="661.5" y="757" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="664.53" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="319.1" y="645" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="322.15" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.03%)</title><rect x="1041.2" y="421" width="0.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1044.24" y="431.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="237.2" y="901" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="240.19" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="545.9" y="549" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="548.88" y="559.5" ></text>
+</g>
+<g >
+<title>read_tsc (10,101,010 samples, 0.03%)</title><rect x="1375.0" y="661" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1377.98" y="671.5" ></text>
+</g>
+<g >
+<title>__fstat64 (20,202,020 samples, 0.07%)</title><rect x="665.6" y="805" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="668.63" y="815.5" ></text>
+</g>
+<g >
+<title>ip_route_output_key_hash (10,101,010 samples, 0.03%)</title><rect x="1385.0" y="821" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1387.99" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (40,404,040 samples, 0.13%)</title><rect x="293.6" y="773" width="1.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="296.65" y="783.5" ></text>
+</g>
+<g >
+<title>faccessat (10,101,010 samples, 0.03%)</title><rect x="645.1" y="821" width="0.5" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="648.14" y="831.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (10,101,010 samples, 0.03%)</title><rect x="11.8" y="789" width="0.5" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="14.82" y="799.5" ></text>
+</g>
+<g >
+<title>pthread_rwlock_wrlock (10,101,010 samples, 0.03%)</title><rect x="243.6" y="837" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="246.57" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (333,333,330 samples, 1.09%)</title><rect x="423.9" y="837" width="15.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="426.86" y="847.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="122.0" y="501" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="125.00" y="511.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="102.0" y="677" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="104.97" y="687.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.07%)</title><rect x="651.1" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="654.06" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (444,444,440 samples, 1.45%)</title><rect x="616.5" y="837" width="20.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="619.45" y="847.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="543.2" y="709" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="546.15" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="388.4" y="661" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="391.35" y="671.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="722.1" y="917" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="725.08" y="927.5" ></text>
+</g>
+<g >
+<title>__alloc_percpu_gfp (10,101,010 samples, 0.03%)</title><rect x="717.5" y="741" width="0.5" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="720.53" y="751.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.03%)</title><rect x="77.8" y="917" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="80.84" y="927.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="730.3" y="741" width="0.4" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="733.28" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="438.0" y="645" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="440.98" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="430.2" y="613" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="433.24" y="623.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="1010.7" y="773" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1013.74" y="783.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="154.3" y="629" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="157.33" y="639.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.03%)</title><rect x="545.4" y="565" width="0.5" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="548.43" y="575.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="585.0" y="725" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="588.04" y="735.5" ></text>
+</g>
+<g >
+<title>folio_wait_bit_common (10,101,010 samples, 0.03%)</title><rect x="608.7" y="533" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="611.71" y="543.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.03%)</title><rect x="116.1" y="789" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="119.08" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.07%)</title><rect x="161.6" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="164.61" y="607.5" ></text>
+</g>
+<g >
+<title>do_wp_page (10,101,010 samples, 0.03%)</title><rect x="95.6" y="757" width="0.5" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="98.60" y="767.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="348.7" y="789" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="351.74" y="799.5" ></text>
+</g>
+<g >
+<title>mkdir (90,909,090 samples, 0.30%)</title><rect x="378.3" y="757" width="4.1" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="381.33" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_release_dir (10,101,010 samples, 0.03%)</title><rect x="138.4" y="709" width="0.4" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="141.39" y="719.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="459.8" y="517" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="462.83" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="524.0" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="527.03" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="677.9" y="725" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="680.92" y="735.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="348.3" y="789" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="351.28" y="799.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="372.4" y="789" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="375.42" y="799.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (10,101,010 samples, 0.03%)</title><rect x="277.3" y="629" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="280.26" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="256.8" y="709" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="259.77" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="239.0" y="757" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="242.01" y="767.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="96.1" y="757" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="99.05" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (121,212,120 samples, 0.40%)</title><rect x="458.0" y="789" width="5.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="461.01" y="799.5" ></text>
+</g>
+<g >
+<title>file_exists (20,202,020 samples, 0.07%)</title><rect x="755.8" y="965" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="758.77" y="975.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (20,202,020 samples, 0.07%)</title><rect x="1346.7" y="901" width="1.0" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1349.75" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="623.3" y="677" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="626.28" y="687.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (40,404,040 samples, 0.13%)</title><rect x="24.6" y="645" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="27.57" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="278.6" y="629" width="0.5" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="281.62" y="639.5" ></text>
+</g>
+<g >
+<title>__strftime_l (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="949" width="0.4" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="1046.98" y="959.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="28.7" y="773" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="31.67" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_link (10,101,010 samples, 0.03%)</title><rect x="556.8" y="741" width="0.5" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="559.81" y="751.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="637.9" y="725" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="640.85" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="453.9" y="757" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="456.91" y="767.5" ></text>
+</g>
+<g >
+<title>connect (181,818,180 samples, 0.59%)</title><rect x="1035.3" y="981" width="8.2" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1038.32" y="991.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.03%)</title><rect x="96.1" y="741" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="99.05" y="751.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="437.5" y="677" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="440.52" y="687.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (40,404,040 samples, 0.13%)</title><rect x="1040.3" y="661" width="1.9" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1043.33" y="671.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="710.2" y="709" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="713.24" y="719.5" ></text>
+</g>
+<g >
+<title>ktime_get_mono_fast_ns (10,101,010 samples, 0.03%)</title><rect x="546.8" y="261" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="549.79" y="271.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="523.6" y="629" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="526.57" y="639.5" ></text>
+</g>
+<g >
+<title>__block_commit_write (20,202,020 samples, 0.07%)</title><rect x="426.6" y="549" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="429.60" y="559.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="670.6" y="565" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="673.63" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="680.2" y="757" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="683.19" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_update_skb_after_send (10,101,010 samples, 0.03%)</title><rect x="1034.4" y="709" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1037.41" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (20,202,020 samples, 0.07%)</title><rect x="565.0" y="661" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="568.00" y="671.5" ></text>
+</g>
+<g >
+<title>vma_alloc_folio (30,303,030 samples, 0.10%)</title><rect x="1052.6" y="821" width="1.4" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1055.63" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_delayed_block (10,101,010 samples, 0.03%)</title><rect x="577.3" y="629" width="0.5" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="580.30" y="639.5" ></text>
+</g>
+<g >
+<title>security_inode_need_killpriv (10,101,010 samples, 0.03%)</title><rect x="536.3" y="645" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="539.32" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="237.6" y="837" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="240.65" y="847.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="308.7" y="693" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="311.67" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="305.9" y="757" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="308.94" y="767.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="451.6" y="389" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="454.64" y="399.5" ></text>
+</g>
+<g >
+<title>ip_local_out (40,404,040 samples, 0.13%)</title><rect x="24.6" y="613" width="1.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="27.57" y="623.5" ></text>
+</g>
+<g >
+<title>call_filldir (10,101,010 samples, 0.03%)</title><rect x="476.2" y="597" width="0.5" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="479.22" y="607.5" ></text>
+</g>
+<g >
+<title>delete_from_page_cache_batch (10,101,010 samples, 0.03%)</title><rect x="188.0" y="645" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="191.02" y="655.5" ></text>
+</g>
+<g >
+<title>capable_wrt_inode_uidgid (10,101,010 samples, 0.03%)</title><rect x="637.9" y="661" width="0.4" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="640.85" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="606.0" y="581" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="608.98" y="591.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (20,202,020 samples, 0.07%)</title><rect x="608.3" y="597" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="611.26" y="607.5" ></text>
+</g>
+<g >
+<title>wb_get_create (10,101,010 samples, 0.03%)</title><rect x="687.0" y="645" width="0.5" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="690.02" y="655.5" ></text>
+</g>
+<g >
+<title>git_filter_list_stream_buffer (111,111,110 samples, 0.36%)</title><rect x="275.4" y="885" width="5.0" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="278.44" y="895.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="97.9" y="837" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="100.87" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="398.8" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="401.82" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="1374.1" y="853" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1377.06" y="863.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="426.1" y="501" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="429.14" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (8,383,838,300 samples, 27.38%)</title><rect x="304.1" y="933" width="377.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="307.12" y="943.5" >[libgit2.so.1.7.2]</text>
+</g>
+<g >
+<title>__ip_finish_output (60,606,060 samples, 0.20%)</title><rect x="1012.6" y="581" width="2.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1015.56" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_fname_setup_filename (10,101,010 samples, 0.03%)</title><rect x="625.1" y="725" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="628.10" y="735.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.03%)</title><rect x="1332.6" y="869" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1335.63" y="879.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.07%)</title><rect x="178.9" y="661" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="181.91" y="671.5" ></text>
+</g>
+<g >
+<title>__d_alloc (20,202,020 samples, 0.07%)</title><rect x="580.9" y="645" width="1.0" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="583.94" y="655.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.07%)</title><rect x="425.2" y="741" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="428.23" y="751.5" ></text>
+</g>
+<g >
+<title>_find_next_zero_bit (10,101,010 samples, 0.03%)</title><rect x="382.9" y="565" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="385.89" y="575.5" ></text>
+</g>
+<g >
+<title>mkdtemp (121,212,120 samples, 0.40%)</title><rect x="682.9" y="949" width="5.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="685.93" y="959.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (40,404,040 samples, 0.13%)</title><rect x="1040.3" y="597" width="1.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1043.33" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="433.0" y="581" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="435.97" y="591.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.03%)</title><rect x="350.6" y="629" width="0.4" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="353.56" y="639.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited_flags (10,101,010 samples, 0.03%)</title><rect x="346.5" y="597" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="349.46" y="607.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="147.5" y="549" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="150.50" y="559.5" ></text>
+</g>
+<g >
+<title>srso_alias_return_thunk (10,101,010 samples, 0.03%)</title><rect x="659.3" y="629" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="662.25" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="229.5" y="805" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="232.45" y="815.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="300.9" y="613" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="303.93" y="623.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="371.0" y="741" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="374.05" y="751.5" ></text>
+</g>
+<g >
+<title>out_of_line_wait_on_bit (10,101,010 samples, 0.03%)</title><rect x="62.8" y="805" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="65.81" y="815.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.03%)</title><rect x="457.1" y="821" width="0.5" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="460.10" y="831.5" ></text>
+</g>
+<g >
+<title>rename (141,414,140 samples, 0.46%)</title><rect x="447.1" y="821" width="6.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="450.08" y="831.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="468.0" y="709" width="0.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="471.03" y="719.5" ></text>
+</g>
+<g >
+<title>ip_local_out (10,101,010 samples, 0.03%)</title><rect x="11.8" y="709" width="0.5" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="14.82" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="483.1" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="486.05" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="556.8" y="597" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="559.81" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_getattr (10,101,010 samples, 0.03%)</title><rect x="657.9" y="725" width="0.4" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="660.89" y="735.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="444.4" y="565" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="447.35" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="121.1" y="613" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="124.09" y="623.5" ></text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.03%)</title><rect x="330.1" y="629" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="333.07" y="639.5" ></text>
+</g>
+<g >
+<title>generic_write_check_limits (10,101,010 samples, 0.03%)</title><rect x="275.9" y="677" width="0.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="278.89" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="241.7" y="773" width="1.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="244.75" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (141,414,140 samples, 0.46%)</title><rect x="28.7" y="853" width="6.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="31.67" y="863.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="71.5" y="837" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="74.46" y="847.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="372.4" y="709" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="375.42" y="719.5" ></text>
+</g>
+<g >
+<title>jsonrpc_set_version (10,101,010 samples, 0.03%)</title><rect x="1348.6" y="949" width="0.4" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1351.57" y="959.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="464.4" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="467.38" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_ack (10,101,010 samples, 0.03%)</title><rect x="1012.1" y="725" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1015.10" y="735.5" ></text>
+</g>
+<g >
+<title>ksys_write (40,404,040 samples, 0.13%)</title><rect x="576.4" y="773" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="579.39" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (50,505,050 samples, 0.16%)</title><rect x="52.3" y="901" width="2.3" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="55.34" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="195.3" y="693" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="198.31" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="40.0" y="869" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="43.05" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="673.4" y="805" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="676.37" y="815.5" ></text>
+</g>
+<g >
+<title>generic_update_time (20,202,020 samples, 0.07%)</title><rect x="297.7" y="613" width="1.0" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="300.75" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="85.6" y="949" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="88.58" y="959.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="869" width="1.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1378.43" y="879.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="637.9" y="693" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="640.85" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.03%)</title><rect x="23.7" y="677" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="26.66" y="687.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (80,808,080 samples, 0.26%)</title><rect x="1026.2" y="389" width="3.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1029.22" y="399.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="12.7" y="997" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="15.73" y="1007.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.03%)</title><rect x="592.8" y="549" width="0.4" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="595.78" y="559.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.03%)</title><rect x="626.9" y="613" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="629.93" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (80,808,080 samples, 0.26%)</title><rect x="321.0" y="757" width="3.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="323.97" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="368.3" y="805" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="371.32" y="815.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="108.3" y="645" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="111.34" y="655.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="1347.7" y="853" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1350.66" y="863.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="341" width="1.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1386.17" y="351.5" ></text>
+</g>
+<g >
+<title>process_execute_and_capture (1,494,949,480 samples, 4.88%)</title><rect x="688.4" y="949" width="67.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="691.39" y="959.5" >process..</text>
+</g>
+<g >
+<title>security_inode_alloc (10,101,010 samples, 0.03%)</title><rect x="621.9" y="677" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="624.92" y="687.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.03%)</title><rect x="521.3" y="549" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="524.30" y="559.5" ></text>
+</g>
+<g >
+<title>lockref_get_not_zero (10,101,010 samples, 0.03%)</title><rect x="472.1" y="517" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="475.12" y="527.5" ></text>
+</g>
+<g >
+<title>net_rx_action (10,101,010 samples, 0.03%)</title><rect x="11.8" y="533" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="14.82" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.03%)</title><rect x="556.8" y="709" width="0.5" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="559.81" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="346.0" y="661" width="0.5" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="349.01" y="671.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="545.0" y="581" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="547.97" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.03%)</title><rect x="232.6" y="725" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="235.64" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="100.1" y="677" width="1.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="103.15" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (30,303,030 samples, 0.10%)</title><rect x="585.0" y="853" width="1.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="588.04" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.10%)</title><rect x="387.0" y="677" width="1.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="389.98" y="687.5" ></text>
+</g>
+<g >
+<title>__memset (20,202,020 samples, 0.07%)</title><rect x="718.0" y="773" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="720.98" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_no_and_offset (10,101,010 samples, 0.03%)</title><rect x="107.4" y="453" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="110.43" y="463.5" ></text>
+</g>
+<g >
+<title>open64 (50,505,050 samples, 0.16%)</title><rect x="530.9" y="869" width="2.2" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="533.86" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_mb_free_metadata (10,101,010 samples, 0.03%)</title><rect x="209.9" y="549" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="212.87" y="559.5" ></text>
+</g>
+<g >
+<title>cfree (272,727,270 samples, 0.89%)</title><rect x="758.1" y="933" width="12.2" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="761.05" y="943.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.03%)</title><rect x="11.8" y="229" width="0.5" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="14.82" y="239.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="370.6" y="869" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="373.59" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.03%)</title><rect x="558.2" y="693" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="561.18" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="427.5" y="757" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="430.51" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_send_delayed_ack (10,101,010 samples, 0.03%)</title><rect x="25.5" y="229" width="0.4" height="15.0" fill="rgb(0,233,180)" rx="2" ry="2" />
+<text x="28.48" y="239.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="597" width="4.1" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1029.22" y="607.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (10,101,010 samples, 0.03%)</title><rect x="279.1" y="629" width="0.4" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="282.08" y="639.5" ></text>
+</g>
+<g >
+<title>folio_add_new_anon_rmap (10,101,010 samples, 0.03%)</title><rect x="1054.0" y="837" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1056.99" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.03%)</title><rect x="132.0" y="629" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="135.02" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="447.1" y="629" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="450.08" y="639.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="238.1" y="677" width="0.5" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="241.10" y="687.5" ></text>
+</g>
+<g >
+<title>ksys_read (30,303,030 samples, 0.10%)</title><rect x="297.3" y="709" width="1.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="300.29" y="719.5" ></text>
+</g>
+<g >
+<title>__send (50,505,050 samples, 0.16%)</title><rect x="10.0" y="949" width="2.3" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="13.00" y="959.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="608.7" y="501" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="611.71" y="511.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="474.4" y="597" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="477.40" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="661.5" y="677" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="664.53" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_es_remove_extent (10,101,010 samples, 0.03%)</title><rect x="113.4" y="565" width="0.4" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="116.35" y="575.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="722.1" y="853" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="725.08" y="863.5" ></text>
+</g>
+<g >
+<title>do_brk_flags (10,101,010 samples, 0.03%)</title><rect x="1057.2" y="805" width="0.4" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="1060.18" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (131,313,130 samples, 0.43%)</title><rect x="393.8" y="837" width="5.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="396.81" y="847.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="982.5" y="725" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="985.51" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="339.2" y="773" width="1.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="342.18" y="783.5" ></text>
+</g>
+<g >
+<title>destroy_large_folio (10,101,010 samples, 0.03%)</title><rect x="1380.9" y="437" width="0.4" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1383.89" y="447.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="350.6" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="353.56" y="799.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="544.1" y="693" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="547.06" y="703.5" ></text>
+</g>
+<g >
+<title>localtime_r (10,101,010 samples, 0.03%)</title><rect x="529.0" y="773" width="0.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="532.04" y="783.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.03%)</title><rect x="411.1" y="789" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="414.12" y="799.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="291.8" y="645" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="294.83" y="655.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="1334.9" y="821" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1337.91" y="831.5" ></text>
+</g>
+<g >
+<title>opendir (20,202,020 samples, 0.07%)</title><rect x="662.9" y="805" width="0.9" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="665.89" y="815.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="131.6" y="613" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="134.56" y="623.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_charge_skmem (10,101,010 samples, 0.03%)</title><rect x="1033.5" y="725" width="0.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1036.50" y="735.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="565.5" y="581" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="568.46" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.03%)</title><rect x="222.6" y="693" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="225.62" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="558.2" y="677" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="561.18" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="184.4" y="725" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="187.38" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="458.9" y="533" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="461.92" y="543.5" ></text>
+</g>
+<g >
+<title>apparmor_file_open (10,101,010 samples, 0.03%)</title><rect x="335.5" y="629" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="338.54" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="394.3" y="741" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="397.27" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="604.2" y="709" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="607.16" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="486.2" y="613" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="489.24" y="623.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="106.5" y="453" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="109.52" y="463.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="350.6" y="805" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="353.56" y="815.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="86.5" y="821" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="89.49" y="831.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="101.5" y="709" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="104.51" y="719.5" ></text>
+</g>
+<g >
+<title>do_wp_page (10,101,010 samples, 0.03%)</title><rect x="94.7" y="725" width="0.4" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="97.68" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="409.3" y="597" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="412.29" y="607.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.03%)</title><rect x="296.4" y="869" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="299.38" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="264.1" y="773" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="267.05" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="438.0" y="581" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="440.98" y="591.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.03%)</title><rect x="421.6" y="581" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="424.59" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="222.2" y="677" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="225.17" y="687.5" ></text>
+</g>
+<g >
+<title>net_close (111,111,110 samples, 0.36%)</title><rect x="22.3" y="949" width="5.0" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="25.29" y="959.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (151,515,150 samples, 0.49%)</title><rect x="141.6" y="757" width="6.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="144.58" y="767.5" ></text>
+</g>
+<g >
+<title>__folio_throttle_swaprate (20,202,020 samples, 0.07%)</title><rect x="997.5" y="725" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1000.54" y="735.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="546.8" y="453" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="549.79" y="463.5" ></text>
+</g>
+<g >
+<title>perf_event_mmap (10,101,010 samples, 0.03%)</title><rect x="1367.7" y="741" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1370.69" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.03%)</title><rect x="385.6" y="661" width="0.5" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="388.62" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="618.3" y="741" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="621.27" y="751.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.03%)</title><rect x="261.8" y="693" width="0.4" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="264.78" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="538.1" y="741" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="541.14" y="751.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="180.7" y="693" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="183.74" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="104.2" y="581" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="107.25" y="591.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="724.8" y="805" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="727.81" y="815.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="76.5" y="789" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="79.47" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="570.9" y="645" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="573.92" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (545,454,540 samples, 1.78%)</title><rect x="343.7" y="853" width="24.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="346.73" y="863.5" >[..</text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (50,505,050 samples, 0.16%)</title><rect x="316.4" y="581" width="2.3" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="319.41" y="591.5" ></text>
+</g>
+<g >
+<title>tzset (10,101,010 samples, 0.03%)</title><rect x="438.4" y="789" width="0.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="441.43" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.03%)</title><rect x="555.4" y="613" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="558.44" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="85.6" y="933" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="88.58" y="943.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="577.3" y="613" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="580.30" y="623.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="681.1" y="725" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="684.11" y="735.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="296.4" y="693" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="299.38" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="240.4" y="789" width="1.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="243.38" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="481.7" y="677" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="484.69" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="90.6" y="869" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="93.59" y="879.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (60,606,060 samples, 0.20%)</title><rect x="221.3" y="709" width="2.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="224.26" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="221.3" y="693" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="224.26" y="703.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (10,101,010 samples, 0.03%)</title><rect x="577.8" y="645" width="0.4" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="580.75" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="483.1" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="486.05" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="523.6" y="757" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="526.57" y="767.5" ></text>
+</g>
+<g >
+<title>nd_jump_root (10,101,010 samples, 0.03%)</title><rect x="378.3" y="597" width="0.5" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="381.33" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="604.6" y="757" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="607.62" y="767.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="609.2" y="613" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="612.17" y="623.5" ></text>
+</g>
+<g >
+<title>__memset (20,202,020 samples, 0.07%)</title><rect x="713.4" y="741" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="716.43" y="751.5" ></text>
+</g>
+<g >
+<title>ipv6_sock_ac_close (10,101,010 samples, 0.03%)</title><rect x="14.6" y="821" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="17.55" y="831.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (40,404,040 samples, 0.13%)</title><rect x="531.3" y="741" width="1.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="534.31" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.03%)</title><rect x="384.3" y="581" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="387.25" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (313,131,310 samples, 1.02%)</title><rect x="423.9" y="821" width="14.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="426.86" y="831.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="423.9" y="597" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="426.86" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="756.2" y="805" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="759.23" y="815.5" ></text>
+</g>
+<g >
+<title>check_heap_object (20,202,020 samples, 0.07%)</title><rect x="575.5" y="709" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="578.48" y="719.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="342.8" y="661" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="345.82" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="650.1" y="789" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="653.15" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_getattr (10,101,010 samples, 0.03%)</title><rect x="402.9" y="549" width="0.5" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="405.92" y="559.5" ></text>
+</g>
+<g >
+<title>sk_clone_lock (10,101,010 samples, 0.03%)</title><rect x="1035.8" y="245" width="0.4" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="1038.78" y="255.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (262,626,260 samples, 0.86%)</title><rect x="411.6" y="821" width="11.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="414.57" y="831.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.03%)</title><rect x="370.1" y="565" width="0.5" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="373.14" y="575.5" ></text>
+</g>
+<g >
+<title>new_inode (20,202,020 samples, 0.07%)</title><rect x="312.3" y="661" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="315.32" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="484.0" y="741" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="486.96" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="637.9" y="805" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="640.85" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="756.7" y="917" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="759.68" y="927.5" ></text>
+</g>
+<g >
+<title>__x64_sys_connect (151,515,150 samples, 0.49%)</title><rect x="1382.7" y="917" width="6.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1385.72" y="927.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (20,202,020 samples, 0.07%)</title><rect x="159.8" y="613" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="162.79" y="623.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (10,101,010 samples, 0.03%)</title><rect x="1031.2" y="293" width="0.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1034.23" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="566.8" y="629" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="569.83" y="639.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.03%)</title><rect x="535.9" y="645" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="538.87" y="655.5" ></text>
+</g>
+<g >
+<title>__sk_mem_schedule (20,202,020 samples, 0.07%)</title><rect x="1032.1" y="757" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="1035.14" y="767.5" ></text>
+</g>
+<g >
+<title>dput (70,707,070 samples, 0.23%)</title><rect x="590.5" y="693" width="3.2" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="593.50" y="703.5" ></text>
+</g>
+<g >
+<title>cap_inode_need_killpriv (10,101,010 samples, 0.03%)</title><rect x="385.6" y="581" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="388.62" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="300.5" y="661" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="303.48" y="671.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.03%)</title><rect x="587.8" y="629" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="590.77" y="639.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="178.9" y="645" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="181.91" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="80.1" y="949" width="0.5" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="83.12" y="959.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (20,202,020 samples, 0.07%)</title><rect x="1346.7" y="933" width="1.0" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1349.75" y="943.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.30%)</title><rect x="103.8" y="693" width="4.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="106.79" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="639.2" y="789" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="642.22" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_read (575,757,570 samples, 1.88%)</title><rect x="724.8" y="821" width="26.0" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="727.81" y="831.5" >v..</text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="315.0" y="581" width="0.5" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="318.05" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (10,101,010 samples, 0.03%)</title><rect x="1041.2" y="437" width="0.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1044.24" y="447.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (90,909,090 samples, 0.30%)</title><rect x="133.4" y="645" width="4.1" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="136.39" y="655.5" ></text>
+</g>
+<g >
+<title>ip_output (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="645" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1386.17" y="655.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="1056.7" y="901" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1059.72" y="911.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.03%)</title><rect x="321.0" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="323.97" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="386.5" y="725" width="1.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="389.53" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (30,303,030 samples, 0.10%)</title><rect x="117.9" y="709" width="1.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="120.90" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="620.6" y="661" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="623.55" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_info (10,101,010 samples, 0.03%)</title><rect x="611.9" y="405" width="0.5" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="614.90" y="415.5" ></text>
+</g>
+<g >
+<title>read (20,202,020 samples, 0.07%)</title><rect x="489.4" y="677" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="492.43" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="385.6" y="709" width="0.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="388.62" y="719.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.03%)</title><rect x="646.0" y="661" width="0.5" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="649.05" y="671.5" ></text>
+</g>
+<g >
+<title>path_openat (80,808,080 samples, 0.26%)</title><rect x="270.0" y="757" width="3.6" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="272.97" y="767.5" ></text>
+</g>
+<g >
+<title>new_inode_pseudo (20,202,020 samples, 0.07%)</title><rect x="37.3" y="805" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="40.32" y="815.5" ></text>
+</g>
+<g >
+<title>kmalloc_reserve (10,101,010 samples, 0.03%)</title><rect x="1031.7" y="741" width="0.4" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1034.68" y="751.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (10,101,010 samples, 0.03%)</title><rect x="1017.6" y="709" width="0.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1020.57" y="719.5" ></text>
+</g>
+<g >
+<title>__memset (20,202,020 samples, 0.07%)</title><rect x="31.4" y="741" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="34.40" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.07%)</title><rect x="225.4" y="725" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="228.35" y="735.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.07%)</title><rect x="477.6" y="613" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="480.59" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="240.4" y="773" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="243.38" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="548.2" y="469" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="551.16" y="479.5" ></text>
+</g>
+<g >
+<title>dup_userfaultfd (30,303,030 samples, 0.10%)</title><rect x="710.7" y="757" width="1.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="713.70" y="767.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (20,202,020 samples, 0.07%)</title><rect x="40.0" y="789" width="1.0" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="43.05" y="799.5" ></text>
+</g>
+<g >
+<title>copy_page_from_iter_atomic (10,101,010 samples, 0.03%)</title><rect x="346.9" y="613" width="0.5" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="349.92" y="623.5" ></text>
+</g>
+<g >
+<title>jbd2_alloc (10,101,010 samples, 0.03%)</title><rect x="296.4" y="661" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="299.38" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (60,606,060 samples, 0.20%)</title><rect x="552.7" y="549" width="2.7" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="555.71" y="559.5" ></text>
+</g>
+<g >
+<title>inet_release (80,808,080 samples, 0.26%)</title><rect x="23.2" y="757" width="3.6" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="26.20" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (151,515,150 samples, 0.49%)</title><rect x="1382.7" y="933" width="6.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1385.72" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.03%)</title><rect x="396.5" y="645" width="0.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="399.55" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (121,212,120 samples, 0.40%)</title><rect x="579.6" y="773" width="5.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="582.57" y="783.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (10,101,010 samples, 0.03%)</title><rect x="11.8" y="645" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="14.82" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.07%)</title><rect x="477.6" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="480.59" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="224.9" y="821" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="227.90" y="831.5" ></text>
+</g>
+<g >
+<title>__jbd2_journal_file_buffer (10,101,010 samples, 0.03%)</title><rect x="381.1" y="533" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="384.07" y="543.5" ></text>
+</g>
+<g >
+<title>security_file_permission (10,101,010 samples, 0.03%)</title><rect x="250.9" y="661" width="0.4" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" />
+<text x="253.85" y="671.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.07%)</title><rect x="666.5" y="709" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="669.54" y="719.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="279.1" y="613" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="282.08" y="623.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="697.0" y="581" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="700.04" y="591.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="658.8" y="629" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="661.80" y="639.5" ></text>
+</g>
+<g >
+<title>git_attr_cache_flush (10,101,010 samples, 0.03%)</title><rect x="96.1" y="917" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="99.05" y="927.5" ></text>
+</g>
+<g >
+<title>file_close (60,606,060 samples, 0.20%)</title><rect x="1379.1" y="981" width="2.7" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1382.07" y="991.5" ></text>
+</g>
+<g >
+<title>__x64_sys_brk (252,525,250 samples, 0.82%)</title><rect x="759.0" y="805" width="11.3" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="761.96" y="815.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.03%)</title><rect x="241.7" y="565" width="0.5" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="244.75" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="629.2" y="613" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="632.20" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="296.8" y="837" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="299.84" y="847.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="670.6" y="549" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="673.63" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_readlink (20,202,020 samples, 0.07%)</title><rect x="483.1" y="741" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="486.05" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="382.4" y="725" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="385.43" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="292.7" y="741" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="295.74" y="751.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.03%)</title><rect x="539.5" y="613" width="0.5" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="542.51" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="685.7" y="757" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="688.66" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (20,202,020 samples, 0.07%)</title><rect x="614.2" y="645" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="617.18" y="655.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="173.9" y="645" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="176.91" y="655.5" ></text>
+</g>
+<g >
+<title>getdents64 (30,303,030 samples, 0.10%)</title><rect x="339.2" y="821" width="1.3" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="342.18" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.30%)</title><rect x="557.3" y="821" width="4.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="560.26" y="831.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="86.9" y="789" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="89.94" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.03%)</title><rect x="458.0" y="629" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="461.01" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (10,101,010 samples, 0.03%)</title><rect x="51.0" y="821" width="0.4" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="53.98" y="831.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="721.6" y="901" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="724.63" y="911.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="525.8" y="725" width="0.5" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="528.85" y="735.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.03%)</title><rect x="653.3" y="517" width="0.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="656.33" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (40,404,040 samples, 0.13%)</title><rect x="534.5" y="757" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="537.50" y="767.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.03%)</title><rect x="667.0" y="629" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="669.99" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_clean_rtx_queue.constprop.0 (20,202,020 samples, 0.07%)</title><rect x="1015.3" y="693" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="1018.29" y="703.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (50,505,050 samples, 0.16%)</title><rect x="434.8" y="597" width="2.3" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="437.79" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="550.9" y="597" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="553.89" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="467.1" y="725" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="470.12" y="735.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="542.7" y="645" width="0.5" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="545.70" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.07%)</title><rect x="536.3" y="693" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="539.32" y="703.5" ></text>
+</g>
+<g >
+<title>server_ready_for_action (10,101,010 samples, 0.03%)</title><rect x="15.5" y="1029" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="18.46" y="1039.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="391.1" y="629" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="394.08" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="439.8" y="901" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="442.80" y="911.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="487.1" y="741" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="490.15" y="751.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.03%)</title><rect x="456.6" y="677" width="0.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="459.64" y="687.5" ></text>
+</g>
+<g >
+<title>evict (121,212,120 samples, 0.40%)</title><rect x="545.0" y="629" width="5.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="547.97" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="73.3" y="725" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="76.29" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.13%)</title><rect x="167.1" y="549" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="170.08" y="559.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="641.9" y="613" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="644.95" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.07%)</title><rect x="341.9" y="725" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="344.91" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="412.5" y="709" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="415.48" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="757.1" y="917" width="1.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="760.14" y="927.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (10,101,010 samples, 0.03%)</title><rect x="1034.0" y="709" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1036.96" y="719.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="565" width="1.8" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1386.17" y="575.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="80.1" y="1045" width="0.5" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="83.12" y="1055.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="234.9" y="757" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="237.92" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.16%)</title><rect x="751.7" y="901" width="2.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="754.68" y="911.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="280.0" y="757" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="282.99" y="767.5" ></text>
+</g>
+<g >
+<title>security_file_free (10,101,010 samples, 0.03%)</title><rect x="391.5" y="645" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="394.54" y="655.5" ></text>
+</g>
+<g >
+<title>inet6_release (90,909,090 samples, 0.30%)</title><rect x="23.2" y="773" width="4.1" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="26.20" y="783.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.03%)</title><rect x="610.1" y="645" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="613.08" y="655.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="263.1" y="661" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="266.14" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="456.2" y="773" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="459.19" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="679.3" y="741" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="682.28" y="751.5" ></text>
+</g>
+<g >
+<title>__release_sock (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="805" width="3.2" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1038.32" y="815.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="577.8" y="613" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="580.75" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (20,202,020 samples, 0.07%)</title><rect x="126.6" y="693" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="129.56" y="703.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="752.1" y="725" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="755.13" y="735.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (20,202,020 samples, 0.07%)</title><rect x="567.7" y="581" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="570.74" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="301.8" y="693" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="304.84" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_find_entry (30,303,030 samples, 0.10%)</title><rect x="614.2" y="661" width="1.3" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="617.18" y="671.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (10,101,010 samples, 0.03%)</title><rect x="11.8" y="725" width="0.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="14.82" y="735.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (40,404,040 samples, 0.13%)</title><rect x="1013.0" y="341" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1016.02" y="351.5" ></text>
+</g>
+<g >
+<title>wp_page_reuse (20,202,020 samples, 0.07%)</title><rect x="743.9" y="645" width="0.9" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="746.94" y="655.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="25.9" y="197" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="28.94" y="207.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="693" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1386.17" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.10%)</title><rect x="370.6" y="885" width="1.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="373.59" y="895.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.03%)</title><rect x="273.2" y="661" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="276.16" y="671.5" ></text>
+</g>
+<g >
+<title>anon_pipe_buf_release (131,313,130 samples, 0.43%)</title><rect x="726.6" y="789" width="6.0" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="729.63" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="494.4" y="821" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="497.43" y="831.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="606.9" y="565" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="609.89" y="575.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.03%)</title><rect x="601.9" y="501" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="604.88" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (30,303,030 samples, 0.10%)</title><rect x="426.1" y="629" width="1.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="429.14" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_statx (40,404,040 samples, 0.13%)</title><rect x="322.3" y="709" width="1.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="325.33" y="719.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="450.7" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="453.73" y="511.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="505.4" y="725" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="508.36" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="438.4" y="661" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="441.43" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (90,909,090 samples, 0.30%)</title><rect x="103.8" y="661" width="4.1" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="106.79" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.03%)</title><rect x="230.8" y="725" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="233.82" y="735.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (60,606,060 samples, 0.20%)</title><rect x="287.3" y="885" width="2.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="290.27" y="895.5" ></text>
+</g>
+<g >
+<title>git_filter_list_stream_blob (10,101,010 samples, 0.03%)</title><rect x="275.0" y="885" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="277.98" y="895.5" ></text>
+</g>
+<g >
+<title>__d_move (10,101,010 samples, 0.03%)</title><rect x="247.7" y="725" width="0.4" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="250.66" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="664.7" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="667.71" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (20,202,020 samples, 0.07%)</title><rect x="1013.9" y="277" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1016.93" y="287.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="164.3" y="533" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="167.35" y="543.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (10,101,010 samples, 0.03%)</title><rect x="127.5" y="693" width="0.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="130.47" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="470.8" y="741" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="473.76" y="751.5" ></text>
+</g>
+<g >
+<title>block_invalidate_folio (10,101,010 samples, 0.03%)</title><rect x="361.0" y="549" width="0.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="364.03" y="559.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (20,202,020 samples, 0.07%)</title><rect x="1345.8" y="805" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1348.84" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (50,505,050 samples, 0.16%)</title><rect x="443.0" y="677" width="2.3" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="445.99" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_file_getattr (10,101,010 samples, 0.03%)</title><rect x="498.5" y="693" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="501.53" y="703.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.07%)</title><rect x="562.7" y="725" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="565.73" y="735.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.03%)</title><rect x="552.7" y="389" width="0.5" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="555.71" y="399.5" ></text>
+</g>
+<g >
+<title>opendir (30,303,030 samples, 0.10%)</title><rect x="267.7" y="837" width="1.4" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="270.70" y="847.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="462.6" y="597" width="0.4" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="465.56" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="229.5" y="837" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="232.45" y="847.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (40,404,040 samples, 0.13%)</title><rect x="469.8" y="885" width="1.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="472.85" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_release_dir (10,101,010 samples, 0.03%)</title><rect x="343.3" y="757" width="0.4" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="346.28" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="222.2" y="693" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="225.17" y="703.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.07%)</title><rect x="377.4" y="741" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="380.42" y="751.5" ></text>
+</g>
+<g >
+<title>mb_find_extent (20,202,020 samples, 0.07%)</title><rect x="317.8" y="533" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="320.78" y="543.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="982.5" y="821" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="985.51" y="831.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="351.0" y="629" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="354.02" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="553.6" y="517" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="556.62" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="256.8" y="693" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="259.77" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (70,707,070 samples, 0.23%)</title><rect x="685.2" y="821" width="3.2" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="688.20" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="476.2" y="709" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="479.22" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="428.4" y="677" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="431.42" y="687.5" ></text>
+</g>
+<g >
+<title>fsnotify (10,101,010 samples, 0.03%)</title><rect x="463.0" y="693" width="0.5" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="466.02" y="703.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.03%)</title><rect x="649.2" y="613" width="0.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="652.23" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="494.9" y="741" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="497.89" y="751.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="316.4" y="437" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="319.41" y="447.5" ></text>
+</g>
+<g >
+<title>path_openat (40,404,040 samples, 0.13%)</title><rect x="181.2" y="741" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="184.19" y="751.5" ></text>
+</g>
+<g >
+<title>journal_end_buffer_io_sync (10,101,010 samples, 0.03%)</title><rect x="982.5" y="645" width="0.5" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="985.51" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="316.4" y="469" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="319.41" y="479.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (80,808,080 samples, 0.26%)</title><rect x="1385.9" y="661" width="3.6" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1388.90" y="671.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.03%)</title><rect x="396.5" y="773" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="399.55" y="783.5" ></text>
+</g>
+<g >
+<title>validate_xmit_skb (10,101,010 samples, 0.03%)</title><rect x="1034.0" y="565" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1036.96" y="575.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.03%)</title><rect x="722.1" y="821" width="0.4" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="725.08" y="831.5" ></text>
+</g>
+<g >
+<title>__get_free_pages (10,101,010 samples, 0.03%)</title><rect x="296.4" y="645" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="299.38" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="556.8" y="837" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="559.81" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.03%)</title><rect x="685.2" y="805" width="0.5" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="688.20" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="494.9" y="773" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="497.89" y="783.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (20,202,020 samples, 0.07%)</title><rect x="1034.0" y="757" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1036.96" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.07%)</title><rect x="448.9" y="661" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="451.90" y="671.5" ></text>
+</g>
+<g >
+<title>__memcpy (10,101,010 samples, 0.03%)</title><rect x="30.9" y="741" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="33.94" y="751.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.03%)</title><rect x="710.2" y="565" width="0.5" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="713.24" y="575.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="579.6" y="693" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="582.57" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (20,202,020 samples, 0.07%)</title><rect x="522.2" y="581" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="525.21" y="591.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="548.6" y="485" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="551.61" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="96.1" y="901" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="99.05" y="911.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="249.9" y="853" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="252.94" y="863.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (30,303,030 samples, 0.10%)</title><rect x="25.0" y="517" width="1.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="28.02" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.07%)</title><rect x="65.5" y="805" width="1.0" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="68.55" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="679.7" y="661" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="682.74" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="600.5" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="603.52" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="283.2" y="773" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="286.18" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (40,404,040 samples, 0.13%)</title><rect x="1380.0" y="741" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1382.98" y="751.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (80,808,080 samples, 0.26%)</title><rect x="230.4" y="789" width="3.6" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="233.36" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="376.5" y="725" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="379.51" y="735.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="422.0" y="677" width="0.5" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="425.04" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="393.4" y="805" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="396.36" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (30,303,030 samples, 0.10%)</title><rect x="611.0" y="517" width="1.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="613.99" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="559.1" y="581" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="562.09" y="591.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="645" width="1.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1378.43" y="655.5" ></text>
+</g>
+<g >
+<title>filename_create (60,606,060 samples, 0.20%)</title><rect x="325.1" y="725" width="2.7" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="328.06" y="735.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="321.9" y="645" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="324.88" y="655.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="698.0" y="629" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="700.95" y="639.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (20,202,020 samples, 0.07%)</title><rect x="1370.4" y="901" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1373.42" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (141,414,140 samples, 0.46%)</title><rect x="205.3" y="645" width="6.4" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="208.32" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="424.3" y="677" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="427.32" y="687.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="195.8" y="805" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="198.76" y="815.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="529.5" y="597" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="532.49" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="422.0" y="629" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="425.04" y="639.5" ></text>
+</g>
+<g >
+<title>filemap_flush (90,909,090 samples, 0.30%)</title><rect x="363.3" y="645" width="4.1" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="366.31" y="655.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (90,909,090 samples, 0.30%)</title><rect x="1050.8" y="869" width="4.1" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1053.81" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="471.7" y="709" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="474.67" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="388.4" y="645" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="391.35" y="655.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="641.9" y="629" width="0.5" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="644.95" y="639.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.03%)</title><rect x="429.3" y="501" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="432.33" y="511.5" ></text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.03%)</title><rect x="167.5" y="501" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="170.53" y="511.5" ></text>
+</g>
+<g >
+<title>tcp_v4_connect (101,010,100 samples, 0.33%)</title><rect x="1385.0" y="837" width="4.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1387.99" y="847.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="577.8" y="565" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="580.75" y="575.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (20,202,020 samples, 0.07%)</title><rect x="1051.7" y="837" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1054.72" y="847.5" ></text>
+</g>
+<g >
+<title>git_reference_create_matching (313,131,310 samples, 1.02%)</title><rect x="239.5" y="917" width="14.1" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="242.47" y="927.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (10,101,010 samples, 0.03%)</title><rect x="114.7" y="613" width="0.5" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="117.72" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="525.8" y="709" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="528.85" y="719.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (10,101,010 samples, 0.03%)</title><rect x="364.2" y="485" width="0.5" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="367.22" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (60,606,060 samples, 0.20%)</title><rect x="340.5" y="757" width="2.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="343.54" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.03%)</title><rect x="447.5" y="581" width="0.5" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="450.54" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.13%)</title><rect x="386.5" y="741" width="1.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="389.53" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (20,202,020 samples, 0.07%)</title><rect x="622.8" y="725" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="625.83" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="423.4" y="709" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="426.41" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="553.6" y="453" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="556.62" y="463.5" ></text>
+</g>
+<g >
+<title>submit_bio_wait_endio (10,101,010 samples, 0.03%)</title><rect x="708.0" y="501" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="710.97" y="511.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.03%)</title><rect x="126.1" y="533" width="0.5" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="129.10" y="543.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (30,303,030 samples, 0.10%)</title><rect x="93.8" y="821" width="1.3" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="96.77" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="1378.6" y="821" width="0.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1381.62" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="470.3" y="725" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="473.30" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="284.5" y="661" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="287.54" y="671.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="51.4" y="789" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="54.43" y="799.5" ></text>
+</g>
+<g >
+<title>git_odb_read_header (20,202,020 samples, 0.07%)</title><rect x="525.4" y="821" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="528.39" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="585.9" y="757" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="588.95" y="767.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="38.7" y="789" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="41.68" y="799.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="719.8" y="869" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="722.81" y="879.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="250.9" y="741" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="253.85" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="487.1" y="773" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="490.15" y="783.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="457.1" y="725" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="460.10" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="477.1" y="741" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="480.13" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (30,303,030 samples, 0.10%)</title><rect x="106.5" y="469" width="1.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="109.52" y="479.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="565" width="1.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1378.43" y="575.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="1375.9" y="357" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1378.89" y="367.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="495.8" y="757" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="498.80" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="402.5" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="405.46" y="687.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="346.0" y="629" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="349.01" y="639.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="532.7" y="613" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="535.68" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="28.2" y="933" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="31.21" y="943.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="542.2" y="661" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="545.24" y="671.5" ></text>
+</g>
+<g >
+<title>strerror (10,101,010 samples, 0.03%)</title><rect x="644.2" y="773" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="647.23" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="260.0" y="741" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="262.96" y="751.5" ></text>
+</g>
+<g >
+<title>net_rx_action (80,808,080 samples, 0.26%)</title><rect x="1385.9" y="581" width="3.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1388.90" y="591.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="1387.7" y="533" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1390.72" y="543.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="283.2" y="741" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="286.18" y="751.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="590.0" y="661" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="593.05" y="671.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="352.4" y="693" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="355.38" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="402.0" y="645" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="405.01" y="655.5" ></text>
+</g>
+<g >
+<title>sock_alloc_file (10,101,010 samples, 0.03%)</title><rect x="38.2" y="821" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="41.23" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="345.1" y="741" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="348.10" y="751.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.07%)</title><rect x="100.1" y="597" width="1.0" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="103.15" y="607.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="504.9" y="597" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="507.91" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="271.8" y="645" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="274.79" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.03%)</title><rect x="340.1" y="645" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="343.09" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (20,202,020 samples, 0.07%)</title><rect x="261.3" y="757" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="264.32" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="396.1" y="517" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="399.09" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.07%)</title><rect x="158.0" y="629" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="160.97" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (111,111,110 samples, 0.36%)</title><rect x="22.3" y="869" width="5.0" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="25.29" y="879.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="390.6" y="661" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="393.63" y="671.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="613" width="3.2" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1038.32" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="407.0" y="677" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="410.02" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="316.4" y="549" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="319.41" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.03%)</title><rect x="577.8" y="693" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="580.75" y="703.5" ></text>
+</g>
+<g >
+<title>rmdir (161,616,160 samples, 0.53%)</title><rect x="119.3" y="757" width="7.3" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="122.27" y="767.5" ></text>
+</g>
+<g >
+<title>_start (636,363,630 samples, 2.08%)</title><rect x="17.7" y="1093" width="28.7" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="20.74" y="1103.5" >_s..</text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="658.8" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="661.80" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="224.9" y="853" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="227.90" y="863.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (10,101,010 samples, 0.03%)</title><rect x="576.8" y="629" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="579.84" y="639.5" ></text>
+</g>
+<g >
+<title>inode_init_always (10,101,010 samples, 0.03%)</title><rect x="1382.3" y="821" width="0.4" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1385.26" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="52.3" y="853" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="55.34" y="863.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="21.4" y="949" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="24.38" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="49.2" y="789" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="52.16" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="166.2" y="501" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="169.17" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_rename (121,212,120 samples, 0.40%)</title><rect x="550.9" y="661" width="5.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="553.89" y="671.5" ></text>
+</g>
+<g >
+<title>do_rmdir (60,606,060 samples, 0.20%)</title><rect x="226.3" y="773" width="2.7" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="229.27" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="391.1" y="693" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="394.08" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (171,717,170 samples, 0.56%)</title><rect x="561.8" y="821" width="7.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="564.82" y="831.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.13%)</title><rect x="128.4" y="805" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="131.38" y="815.5" ></text>
+</g>
+<g >
+<title>page_counter_cancel (40,404,040 samples, 0.13%)</title><rect x="728.5" y="709" width="1.8" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="731.46" y="719.5" ></text>
+</g>
+<g >
+<title>git_index_set_caps (30,303,030 samples, 0.10%)</title><rect x="300.0" y="901" width="1.4" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="303.02" y="911.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="225.8" y="709" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="228.81" y="719.5" ></text>
+</g>
+<g >
+<title>__sock_release (10,101,010 samples, 0.03%)</title><rect x="14.6" y="853" width="0.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="17.55" y="863.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.03%)</title><rect x="708.0" y="517" width="0.4" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="710.97" y="527.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="229.5" y="757" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="232.45" y="767.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="504.0" y="565" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="507.00" y="575.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.03%)</title><rect x="415.7" y="757" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="418.67" y="767.5" ></text>
+</g>
+<g >
+<title>iput (40,404,040 samples, 0.13%)</title><rect x="230.4" y="773" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="233.36" y="783.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_send (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="997" width="1.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1378.43" y="1007.5" ></text>
+</g>
+<g >
+<title>mas_find (20,202,020 samples, 0.07%)</title><rect x="117.0" y="597" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="119.99" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="542.2" y="693" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="545.24" y="703.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="261.8" y="725" width="0.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="264.78" y="735.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (30,303,030 samples, 0.10%)</title><rect x="413.4" y="789" width="1.4" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="416.39" y="799.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="546.8" y="341" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="549.79" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.03%)</title><rect x="425.7" y="517" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="428.68" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="391.1" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="394.08" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="123.8" y="501" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="126.82" y="511.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.03%)</title><rect x="364.2" y="421" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="367.22" y="431.5" ></text>
+</g>
+<g >
+<title>[libz.so.1.3] (30,303,030 samples, 0.10%)</title><rect x="281.4" y="757" width="1.3" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="284.36" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="394.3" y="725" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="397.27" y="735.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (30,303,030 samples, 0.10%)</title><rect x="10.9" y="869" width="1.4" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="13.91" y="879.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.03%)</title><rect x="303.2" y="917" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="306.21" y="927.5" ></text>
+</g>
+<g >
+<title>rename (121,212,120 samples, 0.40%)</title><rect x="458.0" y="821" width="5.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="461.01" y="831.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (40,404,040 samples, 0.13%)</title><rect x="39.6" y="917" width="1.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="42.59" y="927.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="640.1" y="757" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="643.13" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="548.2" y="453" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="551.16" y="463.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="475.3" y="725" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="478.31" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="611.0" y="453" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="613.99" y="463.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="97.9" y="885" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="100.87" y="895.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="679.3" y="757" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="682.28" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.03%)</title><rect x="524.9" y="645" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="527.94" y="655.5" ></text>
+</g>
+<g >
+<title>_copy_to_user (10,101,010 samples, 0.03%)</title><rect x="370.6" y="773" width="0.4" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="373.59" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.03%)</title><rect x="592.8" y="533" width="0.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="595.78" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="576.4" y="821" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="579.39" y="831.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (20,202,020 samples, 0.07%)</title><rect x="1339.9" y="805" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1342.92" y="815.5" ></text>
+</g>
+<g >
+<title>dup_mmap (585,858,580 samples, 1.91%)</title><rect x="691.1" y="773" width="26.4" height="15.0" fill="rgb(0,201,46)" rx="2" ry="2" />
+<text x="694.12" y="783.5" >d..</text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="164.3" y="517" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="167.35" y="527.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.10%)</title><rect x="472.1" y="661" width="1.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="475.12" y="671.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="168.0" y="501" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="170.99" y="511.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (10,101,010 samples, 0.03%)</title><rect x="722.1" y="773" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="725.08" y="783.5" ></text>
+</g>
+<g >
+<title>vma_complete (10,101,010 samples, 0.03%)</title><rect x="139.8" y="629" width="0.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="142.76" y="639.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.03%)</title><rect x="505.8" y="629" width="0.5" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="508.82" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="498.5" y="837" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="501.53" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="183.5" y="821" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="186.47" y="831.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="112.4" y="549" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="115.44" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_da_update_reserve_space (10,101,010 samples, 0.03%)</title><rect x="436.2" y="485" width="0.4" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="439.16" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="484.4" y="693" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="487.42" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_match (10,101,010 samples, 0.03%)</title><rect x="75.6" y="805" width="0.4" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="78.56" y="815.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="650.1" y="677" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="653.15" y="687.5" ></text>
+</g>
+<g >
+<title>__fput (20,202,020 samples, 0.07%)</title><rect x="719.8" y="821" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="722.81" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="331.9" y="805" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="334.89" y="815.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.10%)</title><rect x="650.6" y="789" width="1.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="653.60" y="799.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="464.8" y="613" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="467.84" y="623.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="397.9" y="789" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="400.91" y="799.5" ></text>
+</g>
+<g >
+<title>blk_mq_submit_bio (10,101,010 samples, 0.03%)</title><rect x="553.2" y="453" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="556.17" y="463.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (40,404,040 samples, 0.13%)</title><rect x="1013.0" y="357" width="1.8" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1016.02" y="367.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="257.2" y="613" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="260.23" y="623.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (40,404,040 samples, 0.13%)</title><rect x="983.0" y="805" width="1.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="985.97" y="815.5" ></text>
+</g>
+<g >
+<title>_compound_head (141,414,140 samples, 0.46%)</title><rect x="702.0" y="709" width="6.4" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="705.05" y="719.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="520.8" y="533" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="523.84" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="38.7" y="853" width="0.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="41.68" y="863.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (80,808,080 samples, 0.26%)</title><rect x="1385.9" y="789" width="3.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1388.90" y="799.5" ></text>
+</g>
+<g >
+<title>mnt_get_write_access (10,101,010 samples, 0.03%)</title><rect x="326.9" y="709" width="0.4" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="329.89" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="556.8" y="677" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="559.81" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="686.6" y="757" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="689.57" y="767.5" ></text>
+</g>
+<g >
+<title>__socket (20,202,020 samples, 0.07%)</title><rect x="1381.8" y="981" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1384.80" y="991.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (191,919,190 samples, 0.63%)</title><rect x="1357.7" y="821" width="8.6" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1360.67" y="831.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="239.0" y="693" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="242.01" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (40,404,040 samples, 0.13%)</title><rect x="1036.2" y="293" width="1.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1039.24" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (141,414,140 samples, 0.46%)</title><rect x="71.0" y="869" width="6.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="74.01" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="243.1" y="693" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="246.11" y="703.5" ></text>
+</g>
+<g >
+<title>path_openat (161,616,160 samples, 0.53%)</title><rect x="562.3" y="741" width="7.3" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="565.27" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="671.1" y="805" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="674.09" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.07%)</title><rect x="402.5" y="597" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="405.46" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (505,050,500 samples, 1.65%)</title><rect x="502.6" y="821" width="22.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="505.63" y="831.5" >[..</text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.03%)</title><rect x="1385.9" y="405" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1388.90" y="415.5" ></text>
+</g>
+<g >
+<title>evict (10,101,010 samples, 0.03%)</title><rect x="500.4" y="677" width="0.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="503.35" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="636.5" y="821" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="639.49" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.03%)</title><rect x="611.0" y="501" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="613.99" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="376.1" y="661" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="379.06" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="372.4" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="375.42" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="232.2" y="725" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="235.18" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.03%)</title><rect x="156.1" y="661" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="159.15" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags (30,303,030 samples, 0.10%)</title><rect x="484.9" y="613" width="1.3" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="487.87" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (20,202,020 samples, 0.07%)</title><rect x="522.2" y="565" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="525.21" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.30%)</title><rect x="275.4" y="805" width="4.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="278.44" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (60,606,060 samples, 0.20%)</title><rect x="357.8" y="517" width="2.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="360.85" y="527.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="22.7" y="725" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="25.75" y="735.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="190.8" y="597" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="193.75" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="377.4" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="380.42" y="719.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="1011.2" y="757" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1014.19" y="767.5" ></text>
+</g>
+<g >
+<title>chdir_wrapper (40,404,040 samples, 0.13%)</title><rect x="86.0" y="981" width="1.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="89.03" y="991.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.03%)</title><rect x="524.5" y="693" width="0.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="527.48" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="650.6" y="741" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="653.60" y="751.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="300.9" y="645" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="303.93" y="655.5" ></text>
+</g>
+<g >
+<title>mas_walk (10,101,010 samples, 0.03%)</title><rect x="117.4" y="581" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="120.45" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.03%)</title><rect x="273.2" y="677" width="0.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="276.16" y="687.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.03%)</title><rect x="682.5" y="821" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="685.47" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (464,646,460 samples, 1.52%)</title><rect x="471.7" y="885" width="20.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="474.67" y="895.5" ></text>
+</g>
+<g >
+<title>jsonrpc_check_params (10,101,010 samples, 0.03%)</title><rect x="1372.2" y="917" width="0.5" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1375.24" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="548.2" y="437" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="551.16" y="447.5" ></text>
+</g>
+<g >
+<title>rename (90,909,090 samples, 0.30%)</title><rect x="245.8" y="853" width="4.1" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="248.84" y="863.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="285.0" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="288.00" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="215.3" y="805" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="218.34" y="815.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (20,202,020 samples, 0.07%)</title><rect x="321.4" y="677" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="324.42" y="687.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="600.5" y="693" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="603.52" y="703.5" ></text>
+</g>
+<g >
+<title>do_anonymous_page (10,101,010 samples, 0.03%)</title><rect x="995.7" y="757" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="998.71" y="767.5" ></text>
+</g>
+<g >
+<title>shrink_dentry_list (20,202,020 samples, 0.07%)</title><rect x="176.6" y="661" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="179.64" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="256.3" y="757" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="259.31" y="767.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="73.7" y="757" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="76.74" y="767.5" ></text>
+</g>
+<g >
+<title>do_filp_open (80,808,080 samples, 0.26%)</title><rect x="270.0" y="773" width="3.6" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="272.97" y="783.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.03%)</title><rect x="683.8" y="709" width="0.5" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="686.84" y="719.5" ></text>
+</g>
+<g >
+<title>ip_local_out (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="213" width="0.4" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1030.58" y="223.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="649.7" y="693" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="652.69" y="703.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.07%)</title><rect x="664.7" y="661" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="667.71" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (30,303,030 samples, 0.10%)</title><rect x="161.6" y="629" width="1.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="164.61" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="1373.6" y="821" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1376.61" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="404.3" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="407.29" y="751.5" ></text>
+</g>
+<g >
+<title>realpath (10,101,010 samples, 0.03%)</title><rect x="569.6" y="853" width="0.4" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="572.56" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="388.4" y="693" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="391.35" y="703.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (80,808,080 samples, 0.26%)</title><rect x="1385.9" y="597" width="3.6" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1388.90" y="607.5" ></text>
+</g>
+<g >
+<title>ip_rcv_finish_core.isra.0 (10,101,010 samples, 0.03%)</title><rect x="1387.3" y="485" width="0.4" height="15.0" fill="rgb(0,192,11)" rx="2" ry="2" />
+<text x="1390.27" y="495.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="109.3" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="112.25" y="703.5" ></text>
+</g>
+<g >
+<title>ip_output (30,303,030 samples, 0.10%)</title><rect x="1380.0" y="661" width="1.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1382.98" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="618.7" y="677" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="621.73" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.07%)</title><rect x="483.1" y="677" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="486.05" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (10,101,010 samples, 0.03%)</title><rect x="296.4" y="757" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="299.38" y="767.5" ></text>
+</g>
+<g >
+<title>process_backlog (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="453" width="3.2" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1038.32" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="229.5" y="885" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="232.45" y="895.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="46.0" y="917" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="48.97" y="927.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="402.5" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="405.46" y="703.5" ></text>
+</g>
+<g >
+<title>__rseq_handle_notify_resume (20,202,020 samples, 0.07%)</title><rect x="723.9" y="853" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="726.90" y="863.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="393.4" y="821" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="396.36" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.03%)</title><rect x="607.8" y="533" width="0.5" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="610.80" y="543.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.03%)</title><rect x="535.4" y="517" width="0.5" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="538.41" y="527.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.03%)</title><rect x="62.8" y="821" width="0.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="65.81" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="383.8" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="386.80" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="655.2" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="658.15" y="735.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="695.2" y="725" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="698.22" y="735.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="97.9" y="805" width="0.4" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="100.87" y="815.5" ></text>
+</g>
+<g >
+<title>git_config_open_default (111,111,110 samples, 0.36%)</title><rect x="637.9" y="885" width="5.0" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="640.85" y="895.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="495.8" y="741" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="498.80" y="751.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="97.0" y="853" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="99.96" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="47.3" y="933" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="50.33" y="943.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="274.1" y="773" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="277.07" y="783.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.10%)</title><rect x="387.0" y="661" width="1.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="389.98" y="671.5" ></text>
+</g>
+<g >
+<title>ip_output (10,101,010 samples, 0.03%)</title><rect x="1034.0" y="661" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1036.96" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="551.8" y="581" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="554.80" y="591.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="244.9" y="709" width="0.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="247.93" y="719.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (20,202,020 samples, 0.07%)</title><rect x="767.6" y="613" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="770.61" y="623.5" ></text>
+</g>
+<g >
+<title>mntput_no_expire (10,101,010 samples, 0.03%)</title><rect x="481.2" y="533" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="484.23" y="543.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="284.1" y="709" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="287.09" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="392.4" y="773" width="1.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="395.45" y="783.5" ></text>
+</g>
+<g >
+<title>mnt_get_write_access (10,101,010 samples, 0.03%)</title><rect x="60.5" y="869" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="63.54" y="879.5" ></text>
+</g>
+<g >
+<title>client_destroy_handler (131,313,130 samples, 0.43%)</title><rect x="21.4" y="981" width="5.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="24.38" y="991.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="469.4" y="613" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="472.39" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="409.3" y="757" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="412.29" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="490.3" y="693" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="493.34" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_generic_write_checks (20,202,020 samples, 0.07%)</title><rect x="275.9" y="693" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="278.89" y="703.5" ></text>
+</g>
+<g >
+<title>lockref_get_not_dead (10,101,010 samples, 0.03%)</title><rect x="483.1" y="613" width="0.4" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="486.05" y="623.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.07%)</title><rect x="637.9" y="773" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="640.85" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="468.9" y="757" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="471.94" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="185.7" y="661" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="188.74" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (50,505,050 samples, 0.16%)</title><rect x="135.2" y="629" width="2.3" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="138.21" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_push (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="773" width="1.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1378.43" y="783.5" ></text>
+</g>
+<g >
+<title>down_read (10,101,010 samples, 0.03%)</title><rect x="584.1" y="693" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="587.13" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (10,101,010 samples, 0.03%)</title><rect x="11.8" y="325" width="0.5" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="14.82" y="335.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="642.9" y="645" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="645.86" y="655.5" ></text>
+</g>
+<g >
+<title>git_odb_read (70,707,070 samples, 0.23%)</title><rect x="296.8" y="901" width="3.2" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="299.84" y="911.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="647.9" y="773" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="650.87" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (20,202,020 samples, 0.07%)</title><rect x="398.8" y="741" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="401.82" y="751.5" ></text>
+</g>
+<g >
+<title>ip_rcv (20,202,020 samples, 0.07%)</title><rect x="25.5" y="357" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="28.48" y="367.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (30,303,030 samples, 0.10%)</title><rect x="596.0" y="613" width="1.3" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="598.97" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (343,434,340 samples, 1.12%)</title><rect x="352.4" y="789" width="15.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="355.38" y="799.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="375.6" y="581" width="0.5" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="378.60" y="591.5" ></text>
+</g>
+<g >
+<title>lock_sock_nested (10,101,010 samples, 0.03%)</title><rect x="26.4" y="725" width="0.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="29.39" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="301.4" y="917" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="304.39" y="927.5" ></text>
+</g>
+<g >
+<title>folio_wait_writeback (10,101,010 samples, 0.03%)</title><rect x="608.7" y="565" width="0.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="611.71" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="406.6" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="409.56" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="376.1" y="709" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="379.06" y="719.5" ></text>
+</g>
+<g >
+<title>rseq_get_rseq_cs (10,101,010 samples, 0.03%)</title><rect x="724.4" y="821" width="0.4" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="727.36" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (90,909,090 samples, 0.30%)</title><rect x="356.9" y="613" width="4.1" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="359.94" y="623.5" ></text>
+</g>
+<g >
+<title>block_write_end (20,202,020 samples, 0.07%)</title><rect x="444.4" y="613" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="447.35" y="623.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (20,202,020 samples, 0.07%)</title><rect x="520.4" y="549" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="523.39" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="601.4" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="604.43" y="751.5" ></text>
+</g>
+<g >
+<title>readdir64 (30,303,030 samples, 0.10%)</title><rect x="117.9" y="789" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="120.90" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (20,202,020 samples, 0.07%)</title><rect x="687.0" y="741" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="690.02" y="751.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.03%)</title><rect x="214.4" y="741" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="217.43" y="751.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="504.0" y="581" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="507.00" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="601.0" y="693" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="603.97" y="703.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="676.6" y="693" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="679.55" y="703.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.03%)</title><rect x="224.4" y="693" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="227.44" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="508.1" y="677" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="511.09" y="687.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_free_hook (10,101,010 samples, 0.03%)</title><rect x="190.8" y="485" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="193.75" y="495.5" ></text>
+</g>
+<g >
+<title>folio_add_lru_vma (10,101,010 samples, 0.03%)</title><rect x="1363.6" y="789" width="0.4" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1366.59" y="799.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="265.4" y="661" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="268.42" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.07%)</title><rect x="63.7" y="821" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="66.72" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="116.5" y="661" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="119.54" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="73.7" y="789" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="76.74" y="799.5" ></text>
+</g>
+<g >
+<title>__split_vma (20,202,020 samples, 0.07%)</title><rect x="759.0" y="757" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="761.96" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (191,919,190 samples, 0.63%)</title><rect x="216.2" y="821" width="8.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="219.25" y="831.5" ></text>
+</g>
+<g >
+<title>tcp_create_openreq_child (10,101,010 samples, 0.03%)</title><rect x="1035.8" y="277" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1038.78" y="287.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.07%)</title><rect x="670.2" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="673.18" y="623.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="710.2" y="613" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="713.24" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="677.0" y="629" width="0.5" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="680.01" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="397.0" y="789" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="400.00" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_pipe2 (50,505,050 samples, 0.16%)</title><rect x="751.7" y="869" width="2.3" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="754.68" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="668.4" y="613" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="671.36" y="623.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="634.2" y="645" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="637.21" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="13.6" y="821" width="0.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="16.64" y="831.5" ></text>
+</g>
+<g >
+<title>storvsc_on_channel_callback (10,101,010 samples, 0.03%)</title><rect x="1332.2" y="821" width="0.4" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1335.18" y="831.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="106.1" y="469" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="109.07" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="300.0" y="853" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="303.02" y="863.5" ></text>
+</g>
+<g >
+<title>__fstat64 (10,101,010 samples, 0.03%)</title><rect x="267.7" y="821" width="0.5" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="270.70" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="414.3" y="645" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="417.30" y="655.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="370.1" y="629" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="373.14" y="639.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="382.4" y="613" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="385.43" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="543.2" y="741" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="546.15" y="751.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="445.3" y="821" width="0.4" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="448.26" y="831.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.03%)</title><rect x="586.4" y="725" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="589.40" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.03%)</title><rect x="1376.3" y="341" width="0.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1379.34" y="351.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="480.3" y="693" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="483.32" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="424.3" y="693" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="427.32" y="703.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.03%)</title><rect x="539.5" y="629" width="0.5" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="542.51" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.03%)</title><rect x="459.8" y="533" width="0.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="462.83" y="543.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.03%)</title><rect x="610.5" y="437" width="0.5" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="613.53" y="447.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (252,525,250 samples, 0.82%)</title><rect x="759.0" y="821" width="11.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="761.96" y="831.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.03%)</title><rect x="476.7" y="677" width="0.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="479.68" y="687.5" ></text>
+</g>
+<g >
+<title>__vfs_getxattr (10,101,010 samples, 0.03%)</title><rect x="576.4" y="645" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="579.39" y="655.5" ></text>
+</g>
+<g >
+<title>crc_pcl (20,202,020 samples, 0.07%)</title><rect x="517.7" y="565" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="520.65" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.03%)</title><rect x="207.6" y="597" width="0.5" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="210.60" y="607.5" ></text>
+</g>
+<g >
+<title>git_signature_default (10,101,010 samples, 0.03%)</title><rect x="438.0" y="821" width="0.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="440.98" y="831.5" ></text>
+</g>
+<g >
+<title>iterate_dir (10,101,010 samples, 0.03%)</title><rect x="269.1" y="741" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="272.06" y="751.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (20,202,020 samples, 0.07%)</title><rect x="90.6" y="821" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="93.59" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (90,909,090 samples, 0.30%)</title><rect x="378.3" y="693" width="4.1" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="381.33" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="585.0" y="805" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="588.04" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="316.4" y="517" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="319.41" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="302.8" y="901" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="305.75" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="577.3" y="645" width="0.5" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="580.30" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="679.3" y="709" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="682.28" y="719.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (10,101,010 samples, 0.03%)</title><rect x="497.6" y="661" width="0.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="500.62" y="671.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="650.1" y="693" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="653.15" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (40,404,040 samples, 0.13%)</title><rect x="55.5" y="949" width="1.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="58.53" y="959.5" ></text>
+</g>
+<g >
+<title>make_vfsuid (10,101,010 samples, 0.03%)</title><rect x="56.0" y="837" width="0.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="58.98" y="847.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="587.3" y="613" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="590.31" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.10%)</title><rect x="680.6" y="789" width="1.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="683.65" y="799.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.03%)</title><rect x="426.1" y="533" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="429.14" y="543.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.03%)</title><rect x="94.7" y="741" width="0.4" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="97.68" y="751.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="700.2" y="677" width="0.5" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="703.23" y="687.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="405" width="1.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1033.32" y="415.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="346.0" y="741" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="349.01" y="751.5" ></text>
+</g>
+<g >
+<title>rmdir (393,939,390 samples, 1.29%)</title><rect x="196.2" y="821" width="17.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="199.22" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (30,303,030 samples, 0.10%)</title><rect x="122.0" y="517" width="1.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="125.00" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (10,101,010 samples, 0.03%)</title><rect x="607.8" y="581" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="610.80" y="591.5" ></text>
+</g>
+<g >
+<title>dup_task_struct (20,202,020 samples, 0.07%)</title><rect x="718.0" y="789" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="720.98" y="799.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="597" width="3.2" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1038.32" y="607.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="83.3" y="805" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="86.30" y="815.5" ></text>
+</g>
+<g >
+<title>git_reference_symbolic_create (333,333,330 samples, 1.09%)</title><rect x="423.9" y="869" width="15.0" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="426.86" y="879.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (222,222,220 samples, 0.73%)</title><rect x="735.7" y="725" width="10.1" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="738.74" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="227.6" y="613" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="230.63" y="623.5" ></text>
+</g>
+<g >
+<title>wp_page_copy (10,101,010 samples, 0.03%)</title><rect x="722.1" y="789" width="0.4" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="725.08" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="468.9" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="471.94" y="815.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.13%)</title><rect x="576.4" y="805" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="579.39" y="815.5" ></text>
+</g>
+<g >
+<title>git_worktree_list (10,101,010 samples, 0.03%)</title><rect x="423.4" y="837" width="0.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="426.41" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_info (10,101,010 samples, 0.03%)</title><rect x="621.0" y="693" width="0.5" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="624.01" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (383,838,380 samples, 1.25%)</title><rect x="373.8" y="821" width="17.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="376.78" y="831.5" ></text>
+</g>
+<g >
+<title>fstatat64 (50,505,050 samples, 0.16%)</title><rect x="473.5" y="757" width="2.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="476.49" y="767.5" ></text>
+</g>
+<g >
+<title>filp_flush (10,101,010 samples, 0.03%)</title><rect x="445.3" y="741" width="0.4" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="448.26" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.07%)</title><rect x="642.9" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="645.86" y="703.5" ></text>
+</g>
+<g >
+<title>capable_wrt_inode_uidgid (10,101,010 samples, 0.03%)</title><rect x="86.5" y="789" width="0.4" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="89.49" y="799.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.13%)</title><rect x="257.2" y="693" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="260.23" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="394.3" y="661" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="397.27" y="671.5" ></text>
+</g>
+<g >
+<title>git_error_set (20,202,020 samples, 0.07%)</title><rect x="643.8" y="805" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="646.77" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="160.7" y="549" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="163.70" y="559.5" ></text>
+</g>
+<g >
+<title>mt_free_rcu (10,101,010 samples, 0.03%)</title><rect x="650.1" y="597" width="0.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="653.15" y="607.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="258.1" y="581" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="261.14" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (20,202,020 samples, 0.07%)</title><rect x="219.9" y="581" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="222.89" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (30,303,030 samples, 0.10%)</title><rect x="389.7" y="741" width="1.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="392.72" y="751.5" ></text>
+</g>
+<g >
+<title>access (121,212,120 samples, 0.40%)</title><rect x="80.6" y="1061" width="5.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="83.57" y="1071.5" ></text>
+</g>
+<g >
+<title>vm_area_dup (101,010,100 samples, 0.33%)</title><rect x="713.0" y="757" width="4.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="715.98" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="391.1" y="821" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="394.08" y="831.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="673.8" y="773" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="676.82" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="432.1" y="757" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="435.06" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="529.9" y="693" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="532.95" y="703.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="546.8" y="485" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="549.79" y="495.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (20,202,020 samples, 0.07%)</title><rect x="1030.3" y="277" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1033.32" y="287.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="496.3" y="613" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="499.26" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (20,202,020 samples, 0.07%)</title><rect x="592.3" y="565" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="595.32" y="575.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="392.9" y="709" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="395.90" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="385.6" y="677" width="0.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="388.62" y="687.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.03%)</title><rect x="384.3" y="613" width="0.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="387.25" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="539.1" y="725" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="542.05" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.13%)</title><rect x="257.2" y="741" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="260.23" y="751.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="351.5" y="693" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="354.47" y="703.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="406.1" y="741" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="409.11" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="199.9" y="661" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="202.86" y="671.5" ></text>
+</g>
+<g >
+<title>lh_table_lookup_ex (10,101,010 samples, 0.03%)</title><rect x="1372.2" y="885" width="0.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1375.24" y="895.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="669.7" y="645" width="1.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="672.72" y="655.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.03%)</title><rect x="364.2" y="501" width="0.5" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="367.22" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (10,101,010 samples, 0.03%)</title><rect x="570.9" y="725" width="0.5" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="573.92" y="735.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="567.3" y="597" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="570.28" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (626,262,620 samples, 2.05%)</title><rect x="149.8" y="741" width="28.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="152.78" y="751.5" >x..</text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="413.4" y="725" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="416.39" y="735.5" ></text>
+</g>
+<g >
+<title>git_transport_new (10,101,010 samples, 0.03%)</title><rect x="492.6" y="885" width="0.5" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="495.61" y="895.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="659.3" y="645" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="662.25" y="655.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (30,303,030 samples, 0.10%)</title><rect x="153.0" y="645" width="1.3" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="155.96" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_clone3 (141,414,140 samples, 0.46%)</title><rect x="28.7" y="821" width="6.3" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="31.67" y="831.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.03%)</title><rect x="535.4" y="565" width="0.5" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="538.41" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="1044.4" y="773" width="0.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1047.43" y="783.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="546.8" y="405" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="549.79" y="415.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="673.8" y="741" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="676.82" y="751.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.03%)</title><rect x="15.0" y="885" width="0.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="18.01" y="895.5" ></text>
+</g>
+<g >
+<title>apparmor_file_permission (10,101,010 samples, 0.03%)</title><rect x="303.2" y="709" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="306.21" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="241.3" y="629" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="244.29" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (616,161,610 samples, 2.01%)</title><rect x="723.0" y="901" width="27.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="725.99" y="911.5" >e..</text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="458.5" y="565" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="461.47" y="575.5" ></text>
+</g>
+<g >
+<title>mntput_no_expire (10,101,010 samples, 0.03%)</title><rect x="455.7" y="693" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="458.73" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="300.0" y="821" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="303.02" y="831.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (30,303,030 samples, 0.10%)</title><rect x="683.8" y="805" width="1.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="686.84" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="687.9" y="757" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="690.93" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="545.9" y="581" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="548.88" y="591.5" ></text>
+</g>
+<g >
+<title>__lookup_mnt (10,101,010 samples, 0.03%)</title><rect x="438.9" y="725" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="441.89" y="735.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="427.5" y="613" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="430.51" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (121,212,120 samples, 0.40%)</title><rect x="675.2" y="853" width="5.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="678.19" y="863.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (20,202,020 samples, 0.07%)</title><rect x="1345.8" y="917" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1348.84" y="927.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="469" width="1.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1033.32" y="479.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.07%)</title><rect x="680.6" y="757" width="1.0" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="683.65" y="767.5" ></text>
+</g>
+<g >
+<title>mutex_lock_killable (10,101,010 samples, 0.03%)</title><rect x="717.5" y="709" width="0.5" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="720.53" y="719.5" ></text>
+</g>
+<g >
+<title>dd_insert_request.isra.0 (10,101,010 samples, 0.03%)</title><rect x="248.6" y="501" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="251.57" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (20,202,020 samples, 0.07%)</title><rect x="614.2" y="629" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="617.18" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="661.5" y="725" width="1.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="664.53" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="412.5" y="789" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="415.48" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="218.5" y="677" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="221.53" y="687.5" ></text>
+</g>
+<g >
+<title>__fdget_pos (10,101,010 samples, 0.03%)</title><rect x="339.2" y="741" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="342.18" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.07%)</title><rect x="240.8" y="709" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="243.83" y="719.5" ></text>
+</g>
+<g >
+<title>anon_vma_clone (60,606,060 samples, 0.20%)</title><rect x="694.3" y="741" width="2.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="697.31" y="751.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="101.1" y="661" width="0.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="104.06" y="671.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="544.1" y="677" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="547.06" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="658.8" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="661.80" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="494.9" y="805" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="497.89" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="756.2" y="837" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="759.23" y="847.5" ></text>
+</g>
+<g >
+<title>futex_wait (40,404,040 samples, 0.13%)</title><rect x="15.9" y="901" width="1.8" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="18.92" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="489.4" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="492.43" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="160.7" y="629" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="163.70" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.07%)</title><rect x="668.8" y="693" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="671.81" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="307.3" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="310.31" y="799.5" ></text>
+</g>
+<g >
+<title>copy_page_to_iter (313,131,310 samples, 1.02%)</title><rect x="732.6" y="789" width="14.1" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="735.55" y="799.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="467.6" y="789" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="470.57" y="799.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="495.3" y="709" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="498.34" y="719.5" ></text>
+</g>
+<g >
+<title>security_path_unlink (10,101,010 samples, 0.03%)</title><rect x="180.3" y="693" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="183.28" y="703.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (20,202,020 samples, 0.07%)</title><rect x="231.3" y="725" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="234.27" y="735.5" ></text>
+</g>
+<g >
+<title>chmod (10,101,010 samples, 0.03%)</title><rect x="537.2" y="837" width="0.5" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="540.23" y="847.5" ></text>
+</g>
+<g >
+<title>skb_page_frag_refill (10,101,010 samples, 0.03%)</title><rect x="11.4" y="789" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="14.37" y="799.5" ></text>
+</g>
+<g >
+<title>security_file_permission (10,101,010 samples, 0.03%)</title><rect x="750.3" y="789" width="0.5" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" />
+<text x="753.31" y="799.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="51.9" y="869" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="54.89" y="879.5" ></text>
+</g>
+<g >
+<title>iput (90,909,090 samples, 0.30%)</title><rect x="121.5" y="645" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="124.55" y="655.5" ></text>
+</g>
+<g >
+<title>copy_page_range (10,101,010 samples, 0.03%)</title><rect x="690.7" y="773" width="0.4" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="693.67" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="641.9" y="725" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="644.95" y="735.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="225.4" y="677" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="228.35" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="667.9" y="645" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="670.90" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (40,404,040 samples, 0.13%)</title><rect x="394.7" y="677" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="397.72" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="107.0" y="421" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="109.98" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_bread (20,202,020 samples, 0.07%)</title><rect x="567.7" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="570.74" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="650.6" y="773" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="653.60" y="783.5" ></text>
+</g>
+<g >
+<title>git_signature_now (30,303,030 samples, 0.10%)</title><rect x="528.6" y="821" width="1.3" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="531.58" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (20,202,020 samples, 0.07%)</title><rect x="531.8" y="693" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="534.77" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="374.2" y="693" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="377.24" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="10.9" y="901" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="13.91" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="193.9" y="645" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="196.94" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="409.3" y="709" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="412.29" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.16%)</title><rect x="751.7" y="917" width="2.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="754.68" y="927.5" ></text>
+</g>
+<g >
+<title>_find_next_zero_bit (10,101,010 samples, 0.03%)</title><rect x="65.1" y="853" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="68.09" y="863.5" ></text>
+</g>
+<g >
+<title>__submit_bio (20,202,020 samples, 0.07%)</title><rect x="434.8" y="469" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="437.79" y="479.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="677.9" y="709" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="680.92" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mb_prefetch (10,101,010 samples, 0.03%)</title><rect x="632.4" y="613" width="0.4" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="635.39" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="643.3" y="597" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="646.32" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="101.5" y="741" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="104.51" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="513.1" y="453" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="516.10" y="463.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (30,303,030 samples, 0.10%)</title><rect x="531.8" y="725" width="1.3" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="534.77" y="735.5" ></text>
+</g>
+<g >
+<title>jsonrpc_check_id (10,101,010 samples, 0.03%)</title><rect x="1371.8" y="917" width="0.4" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="1374.79" y="927.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="565.9" y="661" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="568.92" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="21.4" y="917" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="24.38" y="927.5" ></text>
+</g>
+<g >
+<title>iput (60,606,060 samples, 0.20%)</title><rect x="591.0" y="645" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="593.96" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="238.1" y="821" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="241.10" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="280.4" y="789" width="2.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="283.45" y="799.5" ></text>
+</g>
+<g >
+<title>__fput_sync (20,202,020 samples, 0.07%)</title><rect x="279.5" y="789" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="282.53" y="799.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="1378.6" y="805" width="0.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1381.62" y="815.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="1027.1" y="229" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1030.13" y="239.5" ></text>
+</g>
+<g >
+<title>dquot_initialize (10,101,010 samples, 0.03%)</title><rect x="595.5" y="645" width="0.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="598.51" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="262.7" y="725" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="265.69" y="735.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (10,101,010 samples, 0.03%)</title><rect x="268.2" y="693" width="0.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="271.15" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="471.7" y="821" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="474.67" y="831.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="528.6" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="531.58" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="13.6" y="965" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="16.64" y="975.5" ></text>
+</g>
+<g >
+<title>security_inode_free (10,101,010 samples, 0.03%)</title><rect x="112.4" y="581" width="0.5" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="115.44" y="591.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.03%)</title><rect x="38.7" y="997" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="41.68" y="1007.5" ></text>
+</g>
+<g >
+<title>filemap_flush (70,707,070 samples, 0.23%)</title><rect x="552.3" y="629" width="3.1" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="555.26" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="394.7" y="741" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="397.72" y="751.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="283.2" y="677" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="286.18" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.10%)</title><rect x="382.4" y="693" width="1.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="385.43" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mb_check_limits (10,101,010 samples, 0.03%)</title><rect x="516.7" y="469" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="519.74" y="479.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (50,505,050 samples, 0.16%)</title><rect x="234.9" y="789" width="2.3" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="237.92" y="799.5" ></text>
+</g>
+<g >
+<title>git_odb_read (141,414,140 samples, 0.46%)</title><rect x="280.4" y="869" width="6.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="283.45" y="879.5" ></text>
+</g>
+<g >
+<title>submit_bio (10,101,010 samples, 0.03%)</title><rect x="553.2" y="517" width="0.4" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="556.17" y="527.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.03%)</title><rect x="552.7" y="405" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="555.71" y="415.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="472.1" y="725" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="475.12" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_connect (111,111,110 samples, 0.36%)</title><rect x="1038.5" y="821" width="5.0" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1041.51" y="831.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="386.5" y="677" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="389.53" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="346.0" y="565" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="349.01" y="575.5" ></text>
+</g>
+<g >
+<title>d_lru_add (10,101,010 samples, 0.03%)</title><rect x="387.9" y="581" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="390.90" y="591.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="96.1" y="853" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="99.05" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.03%)</title><rect x="511.3" y="597" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="514.28" y="607.5" ></text>
+</g>
+<g >
+<title>git_config_iterator_glob_new (10,101,010 samples, 0.03%)</title><rect x="453.5" y="869" width="0.4" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="456.46" y="879.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="258.1" y="565" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="261.14" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.03%)</title><rect x="532.7" y="645" width="0.4" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="535.68" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="295.0" y="629" width="0.5" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="298.01" y="639.5" ></text>
+</g>
+<g >
+<title>open64 (40,404,040 samples, 0.13%)</title><rect x="677.5" y="741" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="680.46" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (10,101,010 samples, 0.03%)</title><rect x="246.3" y="629" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="249.30" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="537.7" y="837" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="540.69" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="591.4" y="565" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="594.41" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="514.0" y="437" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="517.01" y="447.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="650.6" y="725" width="1.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="653.60" y="735.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="372.0" y="693" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="374.96" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="757.6" y="789" width="0.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="760.59" y="799.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="407.5" y="661" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="410.47" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="556.8" y="613" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="559.81" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="530.4" y="853" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="533.40" y="863.5" ></text>
+</g>
+<g >
+<title>delete_from_page_cache_batch (10,101,010 samples, 0.03%)</title><rect x="231.3" y="693" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="234.27" y="703.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.03%)</title><rect x="58.7" y="901" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="61.72" y="911.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (161,616,160 samples, 0.53%)</title><rect x="130.2" y="693" width="7.3" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="133.20" y="703.5" ></text>
+</g>
+<g >
+<title>sysvec_reschedule_ipi (10,101,010 samples, 0.03%)</title><rect x="1347.7" y="933" width="0.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="1350.66" y="943.5" ></text>
+</g>
+<g >
+<title>from_kgid_munged (10,101,010 samples, 0.03%)</title><rect x="407.9" y="677" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="410.93" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="265.9" y="725" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="268.88" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (30,303,030 samples, 0.10%)</title><rect x="219.4" y="661" width="1.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="222.44" y="671.5" ></text>
+</g>
+<g >
+<title>net_rx_action (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="501" width="1.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1378.43" y="511.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="491.2" y="725" width="1.0" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="494.25" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (131,313,130 samples, 0.43%)</title><rect x="185.3" y="677" width="5.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="188.29" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="432.1" y="773" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="435.06" y="783.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="629" width="3.2" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1038.32" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="647.0" y="805" width="3.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="649.96" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="71.0" y="821" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="74.01" y="831.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="346.0" y="773" width="0.5" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="349.01" y="783.5" ></text>
+</g>
+<g >
+<title>mktime (10,101,010 samples, 0.03%)</title><rect x="253.1" y="869" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="256.13" y="879.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="299.1" y="821" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="302.11" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.10%)</title><rect x="671.1" y="741" width="1.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="674.09" y="751.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.03%)</title><rect x="680.2" y="709" width="0.4" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="683.19" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.03%)</title><rect x="501.7" y="693" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="504.72" y="703.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="613.7" y="613" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="616.72" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="296.8" y="805" width="1.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="299.84" y="815.5" ></text>
+</g>
+<g >
+<title>strerror_l (10,101,010 samples, 0.03%)</title><rect x="260.9" y="773" width="0.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="263.87" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.26%)</title><rect x="404.3" y="773" width="3.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="407.29" y="783.5" ></text>
+</g>
+<g >
+<title>nf_nat_ipv4_local_in (10,101,010 samples, 0.03%)</title><rect x="1386.8" y="453" width="0.5" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1389.81" y="463.5" ></text>
+</g>
+<g >
+<title>memcg_account_kmem (10,101,010 samples, 0.03%)</title><rect x="728.0" y="725" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="731.00" y="735.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="95.6" y="805" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="98.60" y="815.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="239.0" y="725" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="242.01" y="735.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="604.2" y="661" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="607.16" y="671.5" ></text>
+</g>
+<g >
+<title>dup_task_struct (80,808,080 samples, 0.26%)</title><rect x="30.9" y="757" width="3.7" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="33.94" y="767.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="576.8" y="677" width="0.5" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="579.84" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.07%)</title><rect x="646.0" y="741" width="1.0" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="649.05" y="751.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="331.9" y="757" width="0.4" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="334.89" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (60,606,060 samples, 0.20%)</title><rect x="591.0" y="613" width="2.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="593.96" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="385.6" y="725" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="388.62" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="295.9" y="773" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="298.93" y="783.5" ></text>
+</g>
+<g >
+<title>git_reference_create (444,444,440 samples, 1.45%)</title><rect x="373.8" y="885" width="20.0" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="376.78" y="895.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (60,606,060 samples, 0.20%)</title><rect x="193.0" y="789" width="2.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="196.03" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="401.1" y="757" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="404.10" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_journal_check_start (10,101,010 samples, 0.03%)</title><rect x="271.3" y="661" width="0.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="274.34" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="463.9" y="853" width="1.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="466.93" y="863.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="1363.1" y="741" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1366.14" y="751.5" ></text>
+</g>
+<g >
+<title>brk (30,303,030 samples, 0.10%)</title><rect x="116.5" y="693" width="1.4" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="119.54" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (70,707,070 samples, 0.23%)</title><rect x="449.8" y="677" width="3.2" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="452.82" y="687.5" ></text>
+</g>
+<g >
+<title>free_pages (10,101,010 samples, 0.03%)</title><rect x="1347.2" y="821" width="0.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="1350.20" y="831.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="471.7" y="725" width="0.4" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="474.67" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (535,353,530 samples, 1.75%)</title><rect x="343.7" y="821" width="24.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="346.73" y="831.5" >[..</text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="445.3" y="773" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="448.26" y="783.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="575.0" y="613" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="578.02" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="226.7" y="677" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="229.72" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (101,010,100 samples, 0.33%)</title><rect x="571.8" y="789" width="4.6" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="574.83" y="799.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="708.0" y="565" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="710.97" y="575.5" ></text>
+</g>
+<g >
+<title>try_charge_memcg (10,101,010 samples, 0.03%)</title><rect x="36.9" y="789" width="0.4" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="39.86" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="290.0" y="789" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="293.01" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="411.6" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="414.57" y="799.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="202.6" y="613" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="205.59" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="470.3" y="709" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="473.30" y="719.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (10,101,010 samples, 0.03%)</title><rect x="1380.4" y="405" width="0.5" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1383.44" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="316.4" y="501" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="319.41" y="511.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="524.5" y="741" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="527.48" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="477.1" y="693" width="1.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="480.13" y="703.5" ></text>
+</g>
+<g >
+<title>sodium_bin2base64 (6,434,343,370 samples, 21.02%)</title><rect x="1058.1" y="965" width="290.0" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1061.09" y="975.5" >sodium_bin2base64</text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="309.6" y="597" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="312.58" y="607.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="504.0" y="549" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="507.00" y="559.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="608.7" y="469" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="611.71" y="479.5" ></text>
+</g>
+<g >
+<title>free_unref_page_prepare (10,101,010 samples, 0.03%)</title><rect x="549.1" y="533" width="0.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="552.07" y="543.5" ></text>
+</g>
+<g >
+<title>lh_table_lookup_entry (10,101,010 samples, 0.03%)</title><rect x="1372.2" y="869" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1375.24" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="301.8" y="725" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="304.84" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="409.3" y="613" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="412.29" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="391.1" y="677" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="394.08" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="451.6" y="501" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="454.64" y="511.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="481.2" y="597" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="484.23" y="607.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="483.5" y="645" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="486.51" y="655.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.03%)</title><rect x="214.4" y="725" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="217.43" y="735.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="243.1" y="629" width="0.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="246.11" y="639.5" ></text>
+</g>
+<g >
+<title>dput (20,202,020 samples, 0.07%)</title><rect x="719.8" y="805" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="722.81" y="815.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="504.0" y="533" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="507.00" y="543.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (20,202,020 samples, 0.07%)</title><rect x="1346.7" y="949" width="1.0" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1349.75" y="959.5" ></text>
+</g>
+<g >
+<title>lookup_dcache (10,101,010 samples, 0.03%)</title><rect x="617.8" y="741" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="620.82" y="751.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="651.5" y="613" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="654.51" y="623.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.03%)</title><rect x="606.0" y="533" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="608.98" y="543.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="274.1" y="709" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="277.07" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="509.5" y="597" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="512.46" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="445.3" y="757" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="448.26" y="767.5" ></text>
+</g>
+<g >
+<title>__tcp_close (70,707,070 samples, 0.23%)</title><rect x="23.2" y="725" width="3.2" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="26.20" y="735.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.03%)</title><rect x="482.1" y="789" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="485.14" y="799.5" ></text>
+</g>
+<g >
+<title>git_signature_new (10,101,010 samples, 0.03%)</title><rect x="252.7" y="869" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="255.67" y="879.5" ></text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.07%)</title><rect x="100.1" y="613" width="1.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="103.15" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="297.7" y="565" width="1.0" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="300.75" y="575.5" ></text>
+</g>
+<g >
+<title>unlink_cb (50,505,050 samples, 0.16%)</title><rect x="234.9" y="917" width="2.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="237.92" y="927.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.03%)</title><rect x="274.1" y="693" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="277.07" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="671.1" y="885" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="674.09" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (40,404,040 samples, 0.13%)</title><rect x="547.2" y="581" width="1.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="550.25" y="591.5" ></text>
+</g>
+<g >
+<title>ksys_read (575,757,570 samples, 1.88%)</title><rect x="724.8" y="837" width="26.0" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="727.81" y="847.5" >k..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (181,818,180 samples, 0.59%)</title><rect x="1035.3" y="965" width="8.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1038.32" y="975.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="428.4" y="725" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="431.42" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.03%)</title><rect x="455.3" y="661" width="0.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="458.28" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="523.6" y="709" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="526.57" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (111,111,110 samples, 0.36%)</title><rect x="22.3" y="853" width="5.0" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="25.29" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (90,909,090 samples, 0.30%)</title><rect x="142.5" y="693" width="4.1" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="145.49" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (40,404,040 samples, 0.13%)</title><rect x="573.7" y="741" width="1.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="576.66" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="487.1" y="789" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="490.15" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="289.6" y="741" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="292.55" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (474,747,470 samples, 1.55%)</title><rect x="502.6" y="789" width="21.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="505.63" y="799.5" >[..</text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="377.0" y="709" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="379.97" y="719.5" ></text>
+</g>
+<g >
+<title>__kfree_skb (10,101,010 samples, 0.03%)</title><rect x="1012.1" y="693" width="0.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1015.10" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="669.7" y="821" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="672.72" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="671.1" y="789" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="674.09" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="467.6" y="773" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="470.57" y="783.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.72" y="879.5" ></text>
+</g>
+<g >
+<title>ip_rcv (30,303,030 samples, 0.10%)</title><rect x="1375.9" y="421" width="1.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1378.89" y="431.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="658.3" y="693" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="661.34" y="703.5" ></text>
+</g>
+<g >
+<title>free_rb_tree_fname (10,101,010 samples, 0.03%)</title><rect x="101.1" y="629" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="104.06" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (50,505,050 samples, 0.16%)</title><rect x="656.1" y="773" width="2.2" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="659.06" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="160.7" y="597" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="163.70" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.07%)</title><rect x="522.2" y="517" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="525.21" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="262.2" y="805" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="265.23" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="252.2" y="773" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="255.22" y="783.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.10%)</title><rect x="506.7" y="597" width="1.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="509.73" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="116.1" y="725" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="119.08" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (111,111,110 samples, 0.36%)</title><rect x="81.0" y="1029" width="5.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="84.03" y="1039.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="423.9" y="645" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="426.86" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="115.2" y="565" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="118.17" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="427.5" y="677" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="430.51" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="933" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1046.98" y="943.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="676.6" y="677" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="679.55" y="687.5" ></text>
+</g>
+<g >
+<title>__brelse (10,101,010 samples, 0.03%)</title><rect x="434.3" y="613" width="0.5" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="437.34" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="439.8" y="885" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="442.80" y="895.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_reschedule_ipi (10,101,010 samples, 0.03%)</title><rect x="1347.7" y="949" width="0.4" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="1350.66" y="959.5" ></text>
+</g>
+<g >
+<title>_start (28,929,292,640 samples, 94.49%)</title><rect x="86.0" y="1093" width="1304.0" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="89.03" y="1103.5" >_start</text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.03%)</title><rect x="686.1" y="773" width="0.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="689.11" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="677.0" y="693" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="680.01" y="703.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (10,101,010 samples, 0.03%)</title><rect x="388.4" y="789" width="0.4" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="391.35" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.03%)</title><rect x="271.8" y="677" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="274.79" y="687.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (30,303,030 samples, 0.10%)</title><rect x="1331.3" y="885" width="1.3" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1334.27" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (20,202,020 samples, 0.07%)</title><rect x="499.0" y="773" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="501.99" y="783.5" ></text>
+</g>
+<g >
+<title>wp_page_reuse (10,101,010 samples, 0.03%)</title><rect x="487.1" y="629" width="0.5" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="490.15" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="341.9" y="645" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="344.91" y="655.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="233.1" y="661" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="236.09" y="671.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (10,101,010 samples, 0.03%)</title><rect x="294.6" y="613" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="297.56" y="623.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="391.1" y="645" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="394.08" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (30,303,030 samples, 0.10%)</title><rect x="171.6" y="469" width="1.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="174.63" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="463.9" y="837" width="1.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="466.93" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="239.0" y="773" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="242.01" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_v4_connect (111,111,110 samples, 0.36%)</title><rect x="1038.5" y="837" width="5.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1041.51" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="160.7" y="581" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="163.70" y="591.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.03%)</title><rect x="697.0" y="549" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="700.04" y="559.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="119.3" y="661" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="122.27" y="671.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="208.5" y="565" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="211.51" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (191,919,190 samples, 0.63%)</title><rect x="414.8" y="789" width="8.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="417.76" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="668.8" y="741" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="671.81" y="751.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (30,303,030 samples, 0.10%)</title><rect x="392.0" y="805" width="1.4" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="394.99" y="815.5" ></text>
+</g>
+<g >
+<title>remove (20,202,020 samples, 0.07%)</title><rect x="100.1" y="725" width="1.0" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="103.15" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="407.9" y="725" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="410.93" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="384.7" y="645" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="387.71" y="655.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (10,101,010 samples, 0.03%)</title><rect x="132.5" y="629" width="0.4" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="135.47" y="639.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="542.2" y="677" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="545.24" y="687.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="636.0" y="789" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="639.03" y="799.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="193.9" y="629" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="196.94" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="600.5" y="549" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="603.52" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="556.8" y="661" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="559.81" y="671.5" ></text>
+</g>
+<g >
+<title>file_read (686,868,680 samples, 2.24%)</title><rect x="720.7" y="933" width="31.0" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="723.72" y="943.5" >fi..</text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="424.3" y="725" width="0.5" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="427.32" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="73.3" y="773" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="76.29" y="783.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="396.5" y="693" width="0.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="399.55" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="330.1" y="661" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="333.07" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.03%)</title><rect x="296.4" y="805" width="0.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="299.38" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.07%)</title><rect x="380.2" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="383.16" y="575.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (20,202,020 samples, 0.07%)</title><rect x="312.3" y="613" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="315.32" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="438.9" y="901" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="441.89" y="911.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="489.4" y="629" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="492.43" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="240.8" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="243.83" y="751.5" ></text>
+</g>
+<g >
+<title>inet_wait_for_connect (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="837" width="3.2" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1038.32" y="847.5" ></text>
+</g>
+<g >
+<title>git_revparse_ext (30,303,030 samples, 0.10%)</title><rect x="301.4" y="933" width="1.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="304.39" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (10,101,010 samples, 0.03%)</title><rect x="382.0" y="533" width="0.4" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="384.98" y="543.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="274.1" y="741" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="277.07" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (10,101,010 samples, 0.03%)</title><rect x="436.6" y="485" width="0.5" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="439.61" y="495.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="137.5" y="677" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="140.48" y="687.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="595.1" y="565" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="598.05" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.33%)</title><rect x="403.8" y="821" width="4.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="406.83" y="831.5" ></text>
+</g>
+<g >
+<title>path_lookupat (111,111,110 samples, 0.36%)</title><rect x="580.0" y="725" width="5.0" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="583.03" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (131,313,130 samples, 0.43%)</title><rect x="393.8" y="821" width="5.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="396.81" y="831.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (20,202,020 samples, 0.07%)</title><rect x="612.4" y="533" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="615.36" y="543.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="389.3" y="725" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="392.26" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_read (30,303,030 samples, 0.10%)</title><rect x="1374.1" y="789" width="1.3" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1377.06" y="799.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="984.8" y="773" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="987.79" y="783.5" ></text>
+</g>
+<g >
+<title>fib_table_lookup (10,101,010 samples, 0.03%)</title><rect x="1385.0" y="789" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1387.99" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="555.9" y="629" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="558.90" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="403.4" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="406.38" y="735.5" ></text>
+</g>
+<g >
+<title>get_random_u32 (10,101,010 samples, 0.03%)</title><rect x="49.6" y="885" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="52.61" y="895.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="492.2" y="821" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="495.16" y="831.5" ></text>
+</g>
+<g >
+<title>git_repository_open_ext (242,424,240 samples, 0.79%)</title><rect x="481.7" y="869" width="10.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="484.69" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="243.1" y="741" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="246.11" y="751.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="263.1" y="677" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="266.14" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="205.3" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="208.32" y="639.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (50,505,050 samples, 0.16%)</title><rect x="611.0" y="549" width="2.3" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="613.99" y="559.5" ></text>
+</g>
+<g >
+<title>from_kgid (10,101,010 samples, 0.03%)</title><rect x="64.2" y="805" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="67.18" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="599.6" y="725" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="602.61" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (484,848,480 samples, 1.58%)</title><rect x="58.3" y="1029" width="21.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="61.26" y="1039.5" >e..</text>
+</g>
+<g >
+<title>json_tokener_parse_verbose (30,303,030 samples, 0.10%)</title><rect x="1372.7" y="901" width="1.4" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="1375.70" y="911.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (40,404,040 samples, 0.13%)</title><rect x="86.0" y="885" width="1.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="89.03" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.46%)</title><rect x="416.1" y="693" width="6.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="419.12" y="703.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="189.8" y="581" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="192.84" y="591.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (10,101,010 samples, 0.03%)</title><rect x="1034.0" y="613" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1036.96" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (363,636,360 samples, 1.19%)</title><rect x="197.6" y="725" width="16.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="200.58" y="735.5" ></text>
+</g>
+<g >
+<title>opendir (10,101,010 samples, 0.03%)</title><rect x="468.5" y="805" width="0.4" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="471.48" y="815.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="340.1" y="613" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="343.09" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="390.6" y="613" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="393.63" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="587.3" y="725" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="590.31" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="470.3" y="805" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="473.30" y="815.5" ></text>
+</g>
+<g >
+<title>bvec_alloc (10,101,010 samples, 0.03%)</title><rect x="452.1" y="501" width="0.4" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="455.09" y="511.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="587.3" y="709" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="590.31" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="393.8" y="789" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="396.81" y="799.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.10%)</title><rect x="495.8" y="645" width="1.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="498.80" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="624.2" y="661" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="627.19" y="671.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (20,202,020 samples, 0.07%)</title><rect x="472.1" y="581" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="475.12" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (70,707,070 samples, 0.23%)</title><rect x="449.8" y="581" width="3.2" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="452.82" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="686.6" y="741" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="689.57" y="751.5" ></text>
+</g>
+<g >
+<title>__sys_connect (181,818,180 samples, 0.59%)</title><rect x="1035.3" y="901" width="8.2" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1038.32" y="911.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (60,606,060 samples, 0.20%)</title><rect x="1005.7" y="693" width="2.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1008.73" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="293.2" y="853" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="296.19" y="863.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="1035.8" y="213" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1038.78" y="223.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="1332.6" y="933" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1335.63" y="943.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (282,828,280 samples, 0.92%)</title><rect x="658.3" y="885" width="12.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="661.34" y="895.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="348.7" y="661" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="351.74" y="671.5" ></text>
+</g>
+<g >
+<title>git_error_set (10,101,010 samples, 0.03%)</title><rect x="423.0" y="757" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="425.95" y="767.5" ></text>
+</g>
+<g >
+<title>find_get_pid (10,101,010 samples, 0.03%)</title><rect x="754.9" y="805" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="757.86" y="815.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (10,101,010 samples, 0.03%)</title><rect x="1034.0" y="629" width="0.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1036.96" y="639.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (50,505,050 samples, 0.16%)</title><rect x="458.0" y="693" width="2.3" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="461.01" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="528.6" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="531.58" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (40,404,040 samples, 0.13%)</title><rect x="346.5" y="661" width="1.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="349.46" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.10%)</title><rect x="154.8" y="661" width="1.3" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="157.78" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="675.2" y="757" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="678.19" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="253.1" y="757" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="256.13" y="767.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.07%)</title><rect x="1013.9" y="213" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1016.93" y="223.5" ></text>
+</g>
+<g >
+<title>ip_output (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="645" width="3.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1038.32" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="527.7" y="533" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="530.67" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.03%)</title><rect x="710.2" y="549" width="0.5" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="713.24" y="559.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.03%)</title><rect x="11.8" y="565" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="14.82" y="575.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="586.4" y="661" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="589.40" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="644.7" y="837" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="647.68" y="847.5" ></text>
+</g>
+<g >
+<title>inflateEnd (10,101,010 samples, 0.03%)</title><rect x="292.3" y="773" width="0.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="295.28" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="402.0" y="709" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="405.01" y="719.5" ></text>
+</g>
+<g >
+<title>dput (202,020,200 samples, 0.66%)</title><rect x="352.8" y="709" width="9.1" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="355.84" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="227.6" y="645" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="230.63" y="655.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="268.6" y="693" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="271.61" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="524.9" y="741" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="527.94" y="751.5" ></text>
+</g>
+<g >
+<title>read (20,202,020 samples, 0.07%)</title><rect x="250.4" y="789" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="253.40" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="527.7" y="597" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="530.67" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="362.9" y="661" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="365.85" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_fname_setup_ci_filename (10,101,010 samples, 0.03%)</title><rect x="157.5" y="661" width="0.5" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="160.52" y="671.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="627.4" y="565" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="630.38" y="575.5" ></text>
+</g>
+<g >
+<title>__close (111,111,110 samples, 0.36%)</title><rect x="22.3" y="917" width="5.0" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="25.29" y="927.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="234.0" y="885" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="237.01" y="895.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="123.4" y="533" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="126.37" y="543.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="22.7" y="661" width="0.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="25.75" y="671.5" ></text>
+</g>
+<g >
+<title>__rmqueue_pcplist (10,101,010 samples, 0.03%)</title><rect x="1005.3" y="629" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1008.28" y="639.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.03%)</title><rect x="244.9" y="693" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="247.93" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (60,606,060 samples, 0.20%)</title><rect x="622.8" y="741" width="2.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="625.83" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="504.0" y="613" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="507.00" y="623.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="181" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1030.58" y="191.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (30,303,030 samples, 0.10%)</title><rect x="202.6" y="661" width="1.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="205.59" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_rename (30,303,030 samples, 0.10%)</title><rect x="501.3" y="709" width="1.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="504.26" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="677.9" y="693" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="680.92" y="703.5" ></text>
+</g>
+<g >
+<title>__sk_mem_schedule (20,202,020 samples, 0.07%)</title><rect x="1033.0" y="757" width="1.0" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="1036.05" y="767.5" ></text>
+</g>
+<g >
+<title>d_lru_del (10,101,010 samples, 0.03%)</title><rect x="212.6" y="645" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="215.61" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (333,333,330 samples, 1.09%)</title><rect x="408.8" y="853" width="15.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="411.84" y="863.5" ></text>
+</g>
+<g >
+<title>__dquot_free_space (10,101,010 samples, 0.03%)</title><rect x="219.4" y="581" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="222.44" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="192.1" y="821" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="195.12" y="831.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="414.3" y="613" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="417.30" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_v6_conn_request (10,101,010 samples, 0.03%)</title><rect x="1041.2" y="389" width="0.5" height="15.0" fill="rgb(0,236,197)" rx="2" ry="2" />
+<text x="1044.24" y="399.5" ></text>
+</g>
+<g >
+<title>git_reference_create_matching (444,444,440 samples, 1.45%)</title><rect x="373.8" y="869" width="20.0" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="376.78" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="676.6" y="709" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="679.55" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="100.1" y="693" width="1.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="103.15" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (50,505,050 samples, 0.16%)</title><rect x="380.2" y="629" width="2.2" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="383.16" y="639.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="88.3" y="917" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="91.31" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.03%)</title><rect x="634.2" y="693" width="0.5" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="637.21" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="236.3" y="709" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="239.28" y="719.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (10,101,010 samples, 0.03%)</title><rect x="396.5" y="565" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="399.55" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="480.8" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="483.78" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="405.7" y="581" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="408.65" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="300.0" y="805" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="303.02" y="815.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.03%)</title><rect x="535.9" y="725" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="538.87" y="735.5" ></text>
+</g>
+<g >
+<title>copy_pte_range (202,020,200 samples, 0.66%)</title><rect x="700.7" y="725" width="9.1" height="15.0" fill="rgb(0,192,11)" rx="2" ry="2" />
+<text x="703.68" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="47.3" y="917" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="50.33" y="927.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="1010.7" y="789" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1013.74" y="799.5" ></text>
+</g>
+<g >
+<title>__fsnotify_inode_delete (10,101,010 samples, 0.03%)</title><rect x="201.7" y="645" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="204.68" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="433.0" y="549" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="435.97" y="559.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.03%)</title><rect x="455.3" y="581" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="458.28" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.16%)</title><rect x="443.0" y="773" width="2.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="445.99" y="783.5" ></text>
+</g>
+<g >
+<title>iput (141,414,140 samples, 0.46%)</title><rect x="184.8" y="709" width="6.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="187.83" y="719.5" ></text>
+</g>
+<g >
+<title>page_counter_cancel (10,101,010 samples, 0.03%)</title><rect x="1022.1" y="453" width="0.5" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1025.12" y="463.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (50,505,050 samples, 0.16%)</title><rect x="1013.0" y="533" width="2.3" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1016.02" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (50,505,050 samples, 0.16%)</title><rect x="105.6" y="549" width="2.3" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="108.61" y="559.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="402.5" y="581" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="405.46" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (868,686,860 samples, 2.84%)</title><rect x="254.0" y="917" width="39.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="257.04" y="927.5" >[li..</text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.03%)</title><rect x="757.6" y="741" width="0.5" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="760.59" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (282,828,280 samples, 0.92%)</title><rect x="308.2" y="757" width="12.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="311.22" y="767.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="265.9" y="709" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="268.88" y="719.5" ></text>
+</g>
+<g >
+<title>copy_namespaces (10,101,010 samples, 0.03%)</title><rect x="30.5" y="757" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="33.49" y="767.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (10,101,010 samples, 0.03%)</title><rect x="500.4" y="725" width="0.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="503.35" y="735.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.03%)</title><rect x="424.3" y="645" width="0.5" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="427.32" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="409.3" y="581" width="1.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="412.29" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="243.1" y="677" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="246.11" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="545.9" y="597" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="548.88" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="445.7" y="805" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="448.72" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (10,101,010 samples, 0.03%)</title><rect x="100.1" y="549" width="0.5" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="103.15" y="559.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="445.7" y="661" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="448.72" y="671.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (101,010,100 samples, 0.33%)</title><rect x="41.9" y="981" width="4.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="44.87" y="991.5" ></text>
+</g>
+<g >
+<title>d_walk (10,101,010 samples, 0.03%)</title><rect x="126.1" y="629" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="129.10" y="639.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="260.4" y="645" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="263.41" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.07%)</title><rect x="380.2" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="383.16" y="559.5" ></text>
+</g>
+<g >
+<title>log_entry_start (161,616,160 samples, 0.53%)</title><rect x="39.1" y="997" width="7.3" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="42.14" y="1007.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="112.9" y="597" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="115.90" y="607.5" ></text>
+</g>
+<g >
+<title>lockref_get_not_dead (10,101,010 samples, 0.03%)</title><rect x="181.2" y="661" width="0.4" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="184.19" y="671.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="219.0" y="597" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="221.98" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="455.3" y="773" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="458.28" y="783.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_from_json (20,202,020 samples, 0.07%)</title><rect x="1371.8" y="933" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1374.79" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="235.8" y="709" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="238.83" y="719.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (10,101,010 samples, 0.03%)</title><rect x="468.5" y="789" width="0.4" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="471.48" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="71.0" y="837" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="74.01" y="847.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="535.9" y="693" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="538.87" y="703.5" ></text>
+</g>
+<g >
+<title>put_cpu_partial (10,101,010 samples, 0.03%)</title><rect x="21.8" y="741" width="0.5" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="24.84" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_read_inode_bitmap (10,101,010 samples, 0.03%)</title><rect x="621.0" y="725" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="624.01" y="735.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="238.1" y="725" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="241.10" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="546.8" y="517" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="549.79" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="679.3" y="645" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="682.28" y="655.5" ></text>
+</g>
+<g >
+<title>git_odb_read (40,404,040 samples, 0.13%)</title><rect x="372.0" y="869" width="1.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="374.96" y="879.5" ></text>
+</g>
+<g >
+<title>[ld-linux-x86-64.so.2] (10,101,010 samples, 0.03%)</title><rect x="35.0" y="885" width="0.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="38.04" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="66.5" y="837" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="69.46" y="847.5" ></text>
+</g>
+<g >
+<title>__default_morecore (272,727,270 samples, 0.89%)</title><rect x="758.1" y="901" width="12.2" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="761.05" y="911.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="268.2" y="725" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="271.15" y="735.5" ></text>
+</g>
+<g >
+<title>readdir64 (40,404,040 samples, 0.13%)</title><rect x="102.0" y="757" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="104.97" y="767.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="95.6" y="853" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="98.60" y="863.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="579.6" y="725" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="582.57" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_file_open (20,202,020 samples, 0.07%)</title><rect x="472.1" y="565" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="475.12" y="575.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.03%)</title><rect x="353.7" y="517" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="356.75" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (999,999,990 samples, 3.27%)</title><rect x="533.1" y="869" width="45.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="536.13" y="879.5" >[lib..</text>
+</g>
+<g >
+<title>_copy_to_user (10,101,010 samples, 0.03%)</title><rect x="128.4" y="693" width="0.4" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="131.38" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="658.3" y="773" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="661.34" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="1034.0" y="949" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1036.96" y="959.5" ></text>
+</g>
+<g >
+<title>__x64_sys_readlink (10,101,010 samples, 0.03%)</title><rect x="636.9" y="789" width="0.5" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="639.94" y="799.5" ></text>
+</g>
+<g >
+<title>post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="347.8" y="501" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="350.83" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="408.8" y="837" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="411.84" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.10%)</title><rect x="353.7" y="613" width="1.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="356.75" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="543.6" y="693" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="546.61" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,999,999,970 samples, 9.80%)</title><rect x="98.8" y="917" width="135.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="101.78" y="927.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.03%)</title><rect x="606.0" y="549" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="608.98" y="559.5" ></text>
+</g>
+<g >
+<title>write (90,909,090 samples, 0.30%)</title><rect x="275.4" y="837" width="4.1" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="278.44" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="543.2" y="693" width="0.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="546.15" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (20,202,020 samples, 0.07%)</title><rect x="228.1" y="629" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="231.09" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mb_free_metadata (10,101,010 samples, 0.03%)</title><rect x="607.8" y="501" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="610.80" y="511.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.07%)</title><rect x="666.5" y="693" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="669.54" y="703.5" ></text>
+</g>
+<g >
+<title>net_rx_action (50,505,050 samples, 0.16%)</title><rect x="1013.0" y="453" width="2.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1016.02" y="463.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="120.2" y="645" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="123.18" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="13.2" y="965" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="16.19" y="975.5" ></text>
+</g>
+<g >
+<title>do_softirq (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="549" width="1.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1378.43" y="559.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (30,303,030 samples, 0.10%)</title><rect x="465.8" y="869" width="1.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="468.75" y="879.5" ></text>
+</g>
+<g >
+<title>srso_alias_return_thunk (10,101,010 samples, 0.03%)</title><rect x="574.1" y="661" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="577.11" y="671.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="241.7" y="629" width="1.0" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="244.75" y="639.5" ></text>
+</g>
+<g >
+<title>fsnotify_move (10,101,010 samples, 0.03%)</title><rect x="556.4" y="677" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="559.35" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="458.5" y="581" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="461.47" y="591.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.03%)</title><rect x="364.2" y="389" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="367.22" y="399.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.07%)</title><rect x="539.5" y="709" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="542.51" y="719.5" ></text>
+</g>
+<g >
+<title>do_poll.constprop.0 (20,202,020 samples, 0.07%)</title><rect x="1370.4" y="885" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1373.42" y="895.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (20,202,020 samples, 0.07%)</title><rect x="460.7" y="405" width="1.0" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="463.74" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (30,303,030 samples, 0.10%)</title><rect x="625.6" y="661" width="1.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="628.56" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="398.8" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="401.82" y="783.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="305.9" y="693" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="308.94" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (171,717,170 samples, 0.56%)</title><rect x="561.8" y="805" width="7.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="564.82" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="442.5" y="757" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="445.53" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="585.9" y="773" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="588.95" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="351.5" y="757" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="354.47" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="48.2" y="901" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="51.24" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="462.6" y="677" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="465.56" y="687.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="342.8" y="677" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="345.82" y="687.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.03%)</title><rect x="1331.7" y="773" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1334.72" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (444,444,440 samples, 1.45%)</title><rect x="373.8" y="853" width="20.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="376.78" y="863.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="679.7" y="645" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="682.74" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="129.3" y="645" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="132.29" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="234.5" y="853" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="237.46" y="863.5" ></text>
+</g>
+<g >
+<title>filemap_remove_folio (10,101,010 samples, 0.03%)</title><rect x="550.0" y="549" width="0.4" height="15.0" fill="rgb(0,235,192)" rx="2" ry="2" />
+<text x="552.98" y="559.5" ></text>
+</g>
+<g >
+<title>get_unused_fd_flags (10,101,010 samples, 0.03%)</title><rect x="78.7" y="949" width="0.5" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="81.75" y="959.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="384.7" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="387.71" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_invalidate_folio (10,101,010 samples, 0.03%)</title><rect x="361.0" y="565" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="364.03" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="654.2" y="645" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="657.24" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="300.0" y="789" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="303.02" y="799.5" ></text>
+</g>
+<g >
+<title>d_lookup (10,101,010 samples, 0.03%)</title><rect x="220.8" y="709" width="0.5" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="223.80" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (111,111,110 samples, 0.36%)</title><rect x="675.6" y="805" width="5.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="678.64" y="815.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="387.9" y="613" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="390.90" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="101.1" y="709" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="104.06" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (40,404,040 samples, 0.13%)</title><rect x="158.0" y="661" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="160.97" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="700.2" y="613" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="703.23" y="623.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="159.3" y="629" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="162.34" y="639.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="221.7" y="661" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="224.71" y="671.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="262.2" y="757" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="265.23" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="534.0" y="821" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="537.04" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (20,202,020 samples, 0.07%)</title><rect x="193.5" y="741" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="196.48" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_bread (50,505,050 samples, 0.16%)</title><rect x="558.6" y="693" width="2.3" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="561.63" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_conn_request (10,101,010 samples, 0.03%)</title><rect x="1385.9" y="357" width="0.5" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1388.90" y="367.5" ></text>
+</g>
+<g >
+<title>mkdir (454,545,450 samples, 1.48%)</title><rect x="616.0" y="869" width="20.5" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="619.00" y="879.5" ></text>
+</g>
+<g >
+<title>__fput_sync (20,202,020 samples, 0.07%)</title><rect x="261.3" y="741" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="264.32" y="751.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="1005.3" y="613" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1008.28" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="575.0" y="677" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="578.02" y="687.5" ></text>
+</g>
+<g >
+<title>rw_verify_area (10,101,010 samples, 0.03%)</title><rect x="654.2" y="581" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="657.24" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="183.9" y="773" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="186.92" y="783.5" ></text>
+</g>
+<g >
+<title>iterate_dir (30,303,030 samples, 0.10%)</title><rect x="117.9" y="693" width="1.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="120.90" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.10%)</title><rect x="283.6" y="789" width="1.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="286.63" y="799.5" ></text>
+</g>
+<g >
+<title>rseq_ip_fixup (20,202,020 samples, 0.07%)</title><rect x="723.9" y="837" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="726.90" y="847.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (40,404,040 samples, 0.13%)</title><rect x="18.7" y="853" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="21.65" y="863.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.03%)</title><rect x="372.0" y="645" width="0.4" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="374.96" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (333,333,330 samples, 1.09%)</title><rect x="254.5" y="869" width="15.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="257.49" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (10,101,010 samples, 0.03%)</title><rect x="269.1" y="757" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="272.06" y="767.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="683.4" y="821" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="686.38" y="831.5" ></text>
+</g>
+<g >
+<title>do_softirq (50,505,050 samples, 0.16%)</title><rect x="1013.0" y="501" width="2.3" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1016.02" y="511.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.03%)</title><rect x="378.3" y="613" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="381.33" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="741" width="1.8" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1386.17" y="751.5" ></text>
+</g>
+<g >
+<title>unlock_buffer (10,101,010 samples, 0.03%)</title><rect x="190.8" y="661" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="193.75" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="585.5" y="773" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="588.49" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.03%)</title><rect x="566.8" y="661" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="569.83" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="465.8" y="821" width="1.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="468.75" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (161,616,160 samples, 0.53%)</title><rect x="47.3" y="1045" width="7.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="50.33" y="1055.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="343.3" y="853" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="346.28" y="863.5" ></text>
+</g>
+<g >
+<title>__blk_mq_free_request (10,101,010 samples, 0.03%)</title><rect x="546.8" y="277" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="549.79" y="287.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="310.5" y="645" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="313.49" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="534.0" y="789" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="537.04" y="799.5" ></text>
+</g>
+<g >
+<title>mkdir (222,222,220 samples, 0.73%)</title><rect x="508.5" y="741" width="10.1" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="511.55" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (30,303,030 samples, 0.10%)</title><rect x="297.3" y="725" width="1.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="300.29" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (636,363,630 samples, 2.08%)</title><rect x="17.7" y="1061" width="28.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="20.74" y="1071.5" >[l..</text>
+</g>
+<g >
+<title>__free_pages (10,101,010 samples, 0.03%)</title><rect x="1347.2" y="805" width="0.5" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1350.20" y="815.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="585.5" y="677" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="588.49" y="687.5" ></text>
+</g>
+<g >
+<title>__rmqueue_pcplist (10,101,010 samples, 0.03%)</title><rect x="576.8" y="565" width="0.5" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="579.84" y="575.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (30,303,030 samples, 0.10%)</title><rect x="1380.0" y="517" width="1.3" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1382.98" y="527.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.03%)</title><rect x="285.9" y="677" width="0.5" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="288.91" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (20,202,020 samples, 0.07%)</title><rect x="1034.0" y="901" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1036.96" y="911.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.03%)</title><rect x="1022.1" y="565" width="0.5" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="1025.12" y="575.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (20,202,020 samples, 0.07%)</title><rect x="294.1" y="661" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="297.10" y="671.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (101,010,100 samples, 0.33%)</title><rect x="605.1" y="677" width="4.5" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="608.07" y="687.5" ></text>
+</g>
+<g >
+<title>__libc_fork (696,969,690 samples, 2.28%)</title><rect x="688.4" y="933" width="31.4" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="691.39" y="943.5" >__..</text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="349.2" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="352.19" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="349.2" y="757" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="352.19" y="767.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="453.0" y="661" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="456.00" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="394.3" y="773" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="397.27" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="570.0" y="821" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="573.01" y="831.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="402.5" y="629" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="405.46" y="639.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.03%)</title><rect x="467.1" y="693" width="0.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="470.12" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="669.7" y="837" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="672.72" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="204.9" y="629" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="207.87" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="191.7" y="629" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="194.66" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,808,080 samples, 0.26%)</title><rect x="230.4" y="837" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="233.36" y="847.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (50,505,050 samples, 0.16%)</title><rect x="460.3" y="645" width="2.3" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="463.29" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.03%)</title><rect x="607.8" y="517" width="0.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="610.80" y="527.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="233.5" y="725" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="236.55" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="284.1" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="287.09" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="289.6" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="292.55" y="735.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.03%)</title><rect x="519.9" y="501" width="0.5" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="522.93" y="511.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (10,101,010 samples, 0.03%)</title><rect x="1031.2" y="325" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="1034.23" y="335.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="389.3" y="741" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="392.26" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="388.4" y="709" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="391.35" y="719.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="638.3" y="709" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="641.31" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="523.6" y="741" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="526.57" y="751.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="534.5" y="741" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="537.50" y="751.5" ></text>
+</g>
+<g >
+<title>sbitmap_queue_get_shallow (10,101,010 samples, 0.03%)</title><rect x="434.8" y="389" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="437.79" y="399.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="457.1" y="805" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="460.10" y="815.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (70,707,070 samples, 0.23%)</title><rect x="449.8" y="629" width="3.2" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="452.82" y="639.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.03%)</title><rect x="473.9" y="597" width="0.5" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="476.95" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (50,505,050 samples, 0.16%)</title><rect x="656.1" y="869" width="2.2" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="659.06" y="879.5" ></text>
+</g>
+<g >
+<title>scsi_dispatch_cmd (10,101,010 samples, 0.03%)</title><rect x="450.3" y="389" width="0.4" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="453.27" y="399.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (141,414,140 samples, 0.46%)</title><rect x="142.0" y="741" width="6.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="145.04" y="751.5" ></text>
+</g>
+<g >
+<title>may_open (10,101,010 samples, 0.03%)</title><rect x="59.2" y="901" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="62.17" y="911.5" ></text>
+</g>
+<g >
+<title>make_vfsuid (10,101,010 samples, 0.03%)</title><rect x="129.3" y="629" width="0.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="132.29" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_rename (30,303,030 samples, 0.10%)</title><rect x="501.3" y="741" width="1.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="504.26" y="751.5" ></text>
+</g>
+<g >
+<title>path_lookupat (40,404,040 samples, 0.13%)</title><rect x="86.0" y="853" width="1.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="89.03" y="863.5" ></text>
+</g>
+<g >
+<title>inflate (50,505,050 samples, 0.16%)</title><rect x="280.4" y="773" width="2.3" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="283.45" y="783.5" ></text>
+</g>
+<g >
+<title>copy_process (131,313,130 samples, 0.43%)</title><rect x="29.1" y="773" width="5.9" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="32.12" y="783.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (50,505,050 samples, 0.16%)</title><rect x="178.5" y="709" width="2.2" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="181.46" y="719.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="95.6" y="821" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="98.60" y="831.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.03%)</title><rect x="38.2" y="773" width="0.5" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="41.23" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_ext_search_left (10,101,010 samples, 0.03%)</title><rect x="316.0" y="581" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="318.96" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (30,303,030 samples, 0.10%)</title><rect x="365.1" y="501" width="1.4" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="368.13" y="511.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="412.5" y="629" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="415.48" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="105.2" y="549" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="108.16" y="559.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (30,303,030 samples, 0.10%)</title><rect x="395.2" y="597" width="1.3" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="398.18" y="607.5" ></text>
+</g>
+<g >
+<title>git_remote_create (575,757,570 samples, 1.88%)</title><rect x="441.2" y="917" width="25.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="444.16" y="927.5" >g..</text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="467.1" y="741" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="470.12" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (20,202,020 samples, 0.07%)</title><rect x="14.6" y="917" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="17.55" y="927.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="396.5" y="757" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="399.55" y="767.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="680.6" y="725" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="683.65" y="735.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="260.4" y="629" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="263.41" y="639.5" ></text>
+</g>
+<g >
+<title>iput (60,606,060 samples, 0.20%)</title><rect x="105.2" y="613" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="108.16" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_data_ready (20,202,020 samples, 0.07%)</title><rect x="1028.5" y="293" width="0.9" height="15.0" fill="rgb(0,217,113)" rx="2" ry="2" />
+<text x="1031.50" y="303.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.03%)</title><rect x="13.6" y="949" width="0.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="16.64" y="959.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="642.9" y="853" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="645.86" y="863.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.03%)</title><rect x="323.7" y="693" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="326.70" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="15.9" y="981" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="18.92" y="991.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (121,212,120 samples, 0.40%)</title><rect x="579.6" y="789" width="5.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="582.57" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="481.7" y="725" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="484.69" y="735.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="111.1" y="629" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="114.08" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="140.2" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="143.21" y="799.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="119.3" y="629" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="122.27" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="372.0" y="757" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="374.96" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_rename (70,707,070 samples, 0.23%)</title><rect x="434.3" y="693" width="3.2" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="437.34" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (545,454,540 samples, 1.78%)</title><rect x="343.7" y="837" width="24.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="346.73" y="847.5" >[..</text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="390.6" y="629" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="393.63" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="423.4" y="693" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="426.41" y="703.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="184.4" y="693" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="187.38" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="21.4" y="901" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="24.38" y="911.5" ></text>
+</g>
+<g >
+<title>select_collect (10,101,010 samples, 0.03%)</title><rect x="212.6" y="677" width="0.5" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="215.61" y="687.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="677.0" y="597" width="0.5" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="680.01" y="607.5" ></text>
+</g>
+<g >
+<title>kmalloc_reserve (10,101,010 samples, 0.03%)</title><rect x="1027.1" y="245" width="0.5" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1030.13" y="255.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="292.3" y="757" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="295.28" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="97.4" y="901" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="100.42" y="911.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="92.0" y="885" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="94.95" y="895.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (10,101,010 samples, 0.03%)</title><rect x="11.8" y="661" width="0.5" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="14.82" y="671.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (90,909,090 samples, 0.30%)</title><rect x="72.8" y="837" width="4.1" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="75.83" y="847.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="22.7" y="677" width="0.5" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="25.75" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fname_setup_filename (10,101,010 samples, 0.03%)</title><rect x="574.6" y="709" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="577.57" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="591.9" y="549" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="594.87" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="21.8" y="901" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="24.84" y="911.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="613" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1386.17" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.03%)</title><rect x="370.1" y="693" width="0.5" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="373.14" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="355.6" y="597" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="358.57" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (60,606,060 samples, 0.20%)</title><rect x="197.6" y="709" width="2.7" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="200.58" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_create (10,101,010 samples, 0.03%)</title><rect x="425.7" y="581" width="0.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="428.68" y="591.5" ></text>
+</g>
+<g >
+<title>do_filp_open (161,616,160 samples, 0.53%)</title><rect x="562.3" y="757" width="7.3" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="565.27" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (90,909,090 samples, 0.30%)</title><rect x="363.3" y="581" width="4.1" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="366.31" y="591.5" ></text>
+</g>
+<g >
+<title>nf_nat_inet_fn (10,101,010 samples, 0.03%)</title><rect x="1041.7" y="453" width="0.5" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1044.70" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="377.4" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="380.42" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="675.2" y="773" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="678.19" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_mb_prefetch (10,101,010 samples, 0.03%)</title><rect x="560.5" y="597" width="0.4" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="563.45" y="607.5" ></text>
+</g>
+<g >
+<title>save_fpregs_to_fpstate (10,101,010 samples, 0.03%)</title><rect x="331.4" y="581" width="0.5" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="334.44" y="591.5" ></text>
+</g>
+<g >
+<title>__tcp_ack_snd_check (10,101,010 samples, 0.03%)</title><rect x="11.8" y="341" width="0.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="14.82" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_mb_initialize_context (10,101,010 samples, 0.03%)</title><rect x="365.1" y="485" width="0.5" height="15.0" fill="rgb(0,225,151)" rx="2" ry="2" />
+<text x="368.13" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (20,202,020 samples, 0.07%)</title><rect x="513.6" y="501" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="516.56" y="511.5" ></text>
+</g>
+<g >
+<title>iterate_dir (20,202,020 samples, 0.07%)</title><rect x="667.9" y="725" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="670.90" y="735.5" ></text>
+</g>
+<g >
+<title>filemap_read (30,303,030 samples, 0.10%)</title><rect x="297.3" y="645" width="1.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="300.29" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="385.6" y="741" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="388.62" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.03%)</title><rect x="620.6" y="725" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="623.55" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="47.3" y="981" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="50.33" y="991.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="645.1" y="693" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="648.14" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (101,010,100 samples, 0.33%)</title><rect x="448.9" y="709" width="4.6" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="451.90" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (90,909,090 samples, 0.30%)</title><rect x="356.9" y="597" width="4.1" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="359.94" y="607.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (20,202,020 samples, 0.07%)</title><rect x="382.9" y="629" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="385.89" y="639.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.03%)</title><rect x="605.5" y="581" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="608.53" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="397.9" y="757" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="400.91" y="767.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="536.8" y="645" width="0.4" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="539.78" y="655.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="149" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1030.58" y="159.5" ></text>
+</g>
+<g >
+<title>__strftime_l (10,101,010 samples, 0.03%)</title><rect x="756.7" y="933" width="0.4" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="759.68" y="943.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="757.1" y="789" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="760.14" y="799.5" ></text>
+</g>
+<g >
+<title>git_remote_lookup (30,303,030 samples, 0.10%)</title><rect x="465.8" y="885" width="1.3" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="468.75" y="895.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.03%)</title><rect x="277.7" y="629" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="280.71" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="507.6" y="533" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="510.64" y="543.5" ></text>
+</g>
+<g >
+<title>git_repository_is_empty (282,828,280 samples, 0.92%)</title><rect x="658.3" y="917" width="12.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="661.34" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="615.5" y="613" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="618.54" y="623.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="1381.8" y="805" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1384.80" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="438.0" y="709" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="440.98" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (151,515,150 samples, 0.49%)</title><rect x="119.7" y="661" width="6.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="122.73" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="641.0" y="725" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="644.04" y="735.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (101,010,100 samples, 0.33%)</title><rect x="1038.5" y="789" width="4.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1041.51" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (20,202,020 samples, 0.07%)</title><rect x="379.2" y="629" width="1.0" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="382.24" y="639.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.07%)</title><rect x="241.7" y="725" width="1.0" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="244.75" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="578.2" y="853" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="581.21" y="863.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (40,404,040 samples, 0.13%)</title><rect x="12.7" y="1013" width="1.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="15.73" y="1023.5" ></text>
+</g>
+<g >
+<title>evict (70,707,070 samples, 0.23%)</title><rect x="111.5" y="629" width="3.2" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="114.53" y="639.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (30,303,030 samples, 0.10%)</title><rect x="435.7" y="533" width="1.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="438.70" y="543.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_ipv4 (10,101,010 samples, 0.03%)</title><rect x="11.8" y="197" width="0.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="14.82" y="207.5" ></text>
+</g>
+<g >
+<title>cap_inode_need_killpriv (10,101,010 samples, 0.03%)</title><rect x="536.3" y="629" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="539.32" y="639.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="1331.7" y="821" width="0.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1334.72" y="831.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (20,202,020 samples, 0.07%)</title><rect x="126.6" y="677" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="129.56" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="600.5" y="485" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="603.52" y="495.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.03%)</title><rect x="296.4" y="677" width="0.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="299.38" y="687.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="229.5" y="773" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="232.45" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="368.8" y="821" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="371.77" y="831.5" ></text>
+</g>
+<g >
+<title>sock_alloc (10,101,010 samples, 0.03%)</title><rect x="1034.9" y="869" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1037.87" y="879.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="43.7" y="821" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="46.69" y="831.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.07%)</title><rect x="680.6" y="741" width="1.0" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="683.65" y="751.5" ></text>
+</g>
+<g >
+<title>git_repository_submodule_cache_clear (10,101,010 samples, 0.03%)</title><rect x="98.3" y="917" width="0.5" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="101.33" y="927.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="655.2" y="581" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="658.15" y="591.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (40,404,040 samples, 0.13%)</title><rect x="1340.8" y="773" width="1.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1343.83" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="673.4" y="853" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="676.37" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_xattr_block_get (10,101,010 samples, 0.03%)</title><rect x="576.4" y="613" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="579.39" y="623.5" ></text>
+</g>
+<g >
+<title>do_softirq (30,303,030 samples, 0.10%)</title><rect x="25.0" y="485" width="1.4" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="28.02" y="495.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="438.9" y="869" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="441.89" y="879.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (20,202,020 samples, 0.07%)</title><rect x="125.6" y="645" width="1.0" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="128.65" y="655.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="56.0" y="853" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="58.98" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.03%)</title><rect x="476.2" y="613" width="0.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="479.22" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="525.4" y="741" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="528.39" y="751.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_charge_skmem (20,202,020 samples, 0.07%)</title><rect x="1032.1" y="725" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1035.14" y="735.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="79.7" y="917" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="82.66" y="927.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (40,404,040 samples, 0.13%)</title><rect x="1340.8" y="789" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1343.83" y="799.5" ></text>
+</g>
+<g >
+<title>__vmalloc_node_range (20,202,020 samples, 0.07%)</title><rect x="32.8" y="725" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="35.76" y="735.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="669.7" y="581" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="672.72" y="591.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="698.0" y="597" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="700.95" y="607.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.03%)</title><rect x="1022.1" y="597" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1025.12" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="310.0" y="645" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="313.04" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (50,505,050 samples, 0.16%)</title><rect x="434.8" y="645" width="2.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="437.79" y="655.5" ></text>
+</g>
+<g >
+<title>copy_process (666,666,660 samples, 2.18%)</title><rect x="689.8" y="805" width="30.0" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="692.76" y="815.5" >co..</text>
+</g>
+<g >
+<title>git_repository_config_snapshot (121,212,120 samples, 0.40%)</title><rect x="675.2" y="885" width="5.4" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="678.19" y="895.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.13%)</title><rect x="44.1" y="837" width="1.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="47.15" y="847.5" ></text>
+</g>
+<g >
+<title>link (20,202,020 samples, 0.07%)</title><rect x="499.0" y="837" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="501.99" y="847.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.03%)</title><rect x="181.2" y="677" width="0.4" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="184.19" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="376.1" y="725" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="379.06" y="735.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="1012.1" y="597" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1015.10" y="607.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (40,404,040 samples, 0.13%)</title><rect x="1040.3" y="533" width="1.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1043.33" y="543.5" ></text>
+</g>
+<g >
+<title>do_filp_open (50,505,050 samples, 0.16%)</title><rect x="530.9" y="773" width="2.2" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="533.86" y="783.5" ></text>
+</g>
+<g >
+<title>mpage_prepare_extent_to_map (20,202,020 samples, 0.07%)</title><rect x="554.5" y="533" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="557.53" y="543.5" ></text>
+</g>
+<g >
+<title>do_poll.constprop.0 (50,505,050 samples, 0.16%)</title><rect x="18.7" y="885" width="2.2" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="21.65" y="895.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="456.2" y="741" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="459.19" y="751.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_free (10,101,010 samples, 0.03%)</title><rect x="1039.0" y="661" width="0.4" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1041.97" y="671.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="10.9" y="693" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="13.91" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="471.7" y="661" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="474.67" y="671.5" ></text>
+</g>
+<g >
+<title>readdir64 (30,303,030 samples, 0.10%)</title><rect x="224.9" y="885" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="227.90" y="895.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (30,303,030 samples, 0.10%)</title><rect x="25.0" y="549" width="1.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="28.02" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="484.9" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="487.87" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="438.0" y="661" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="440.98" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="524.0" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="527.03" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.03%)</title><rect x="462.6" y="645" width="0.4" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="465.56" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="300.5" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="303.48" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.10%)</title><rect x="477.1" y="757" width="1.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="480.13" y="767.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.03%)</title><rect x="467.1" y="853" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="470.12" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (171,717,170 samples, 0.56%)</title><rect x="166.2" y="597" width="7.7" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="169.17" y="607.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="599.6" y="677" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="602.61" y="687.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (10,101,010 samples, 0.03%)</title><rect x="710.2" y="517" width="0.5" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="713.24" y="527.5" ></text>
+</g>
+<g >
+<title>do_filp_open (30,303,030 samples, 0.10%)</title><rect x="420.2" y="565" width="1.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="423.22" y="575.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (464,646,460 samples, 1.52%)</title><rect x="989.3" y="821" width="21.0" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="992.34" y="831.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (50,505,050 samples, 0.16%)</title><rect x="443.0" y="645" width="2.3" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="445.99" y="655.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="535.9" y="709" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="538.87" y="719.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="437" width="4.1" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1029.22" y="447.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="265.9" y="741" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="268.88" y="751.5" ></text>
+</g>
+<g >
+<title>list_lru_del_obj (10,101,010 samples, 0.03%)</title><rect x="212.6" y="629" width="0.5" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="215.61" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="642.4" y="805" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="645.41" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="244.9" y="837" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="247.93" y="847.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="123.4" y="501" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="126.37" y="511.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.03%)</title><rect x="532.2" y="597" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="535.22" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_rename (131,313,130 samples, 0.43%)</title><rect x="610.1" y="677" width="5.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="613.08" y="687.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="709" width="1.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1378.43" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.26%)</title><rect x="639.2" y="821" width="3.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="642.22" y="831.5" ></text>
+</g>
+<g >
+<title>kfree_skbmem (10,101,010 samples, 0.03%)</title><rect x="1387.7" y="549" width="0.5" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1390.72" y="559.5" ></text>
+</g>
+<g >
+<title>unlink_cb (404,040,400 samples, 1.32%)</title><rect x="196.2" y="853" width="18.2" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="199.22" y="863.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="654.7" y="725" width="0.5" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="657.70" y="735.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="495.3" y="629" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="498.34" y="639.5" ></text>
+</g>
+<g >
+<title>git_object_lookup_prefix (70,707,070 samples, 0.23%)</title><rect x="296.8" y="917" width="3.2" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="299.84" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.03%)</title><rect x="559.1" y="629" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="562.09" y="639.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="710.2" y="629" width="0.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="713.24" y="639.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="98.3" y="869" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="101.33" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="489.4" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="492.43" y="655.5" ></text>
+</g>
+<g >
+<title>do_softirq (10,101,010 samples, 0.03%)</title><rect x="11.8" y="581" width="0.5" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="14.82" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="285.9" y="773" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="288.91" y="783.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_create_access (10,101,010 samples, 0.03%)</title><rect x="626.9" y="661" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="629.93" y="671.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.07%)</title><rect x="536.3" y="741" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="539.32" y="751.5" ></text>
+</g>
+<g >
+<title>__do_softirq (30,303,030 samples, 0.10%)</title><rect x="1380.0" y="533" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1382.98" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="239.0" y="821" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="242.01" y="831.5" ></text>
+</g>
+<g >
+<title>do_open (50,505,050 samples, 0.16%)</title><rect x="59.2" y="917" width="2.2" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="62.17" y="927.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.03%)</title><rect x="982.5" y="693" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="985.51" y="703.5" ></text>
+</g>
+<g >
+<title>bit_wait_io (10,101,010 samples, 0.03%)</title><rect x="62.8" y="773" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="65.81" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="480.3" y="677" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="483.32" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.03%)</title><rect x="224.9" y="773" width="0.5" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="227.90" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="121.1" y="629" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="124.09" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="370.6" y="805" width="1.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="373.59" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="468.9" y="725" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="471.94" y="735.5" ></text>
+</g>
+<g >
+<title>git_refdb_backend_fs (50,505,050 samples, 0.16%)</title><rect x="408.8" y="773" width="2.3" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="411.84" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="407.5" y="725" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="410.47" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="587.8" y="757" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="590.77" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="490.3" y="677" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="493.34" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="578.2" y="837" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="581.21" y="847.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="92.9" y="853" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="95.86" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="527.7" y="581" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="530.67" y="591.5" ></text>
+</g>
+<g >
+<title>security_file_open (20,202,020 samples, 0.07%)</title><rect x="335.5" y="645" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="338.54" y="655.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="482.6" y="757" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="485.60" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="282.7" y="629" width="0.5" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="285.72" y="639.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="297.7" y="597" width="1.0" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="300.75" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="463.9" y="821" width="1.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="466.93" y="831.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (20,202,020 samples, 0.07%)</title><rect x="382.9" y="613" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="385.89" y="623.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="645" width="1.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1033.32" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_rename (101,010,100 samples, 0.33%)</title><rect x="448.9" y="725" width="4.6" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="451.90" y="735.5" ></text>
+</g>
+<g >
+<title>log_entry_start (20,202,020 samples, 0.07%)</title><rect x="1044.0" y="981" width="0.9" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1046.98" y="991.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.03%)</title><rect x="214.0" y="821" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="216.97" y="831.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="277.7" y="597" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="280.71" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="741" width="3.2" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1038.32" y="751.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="597" width="1.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1033.32" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="480.3" y="773" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="483.32" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.07%)</title><rect x="450.7" y="485" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="453.73" y="495.5" ></text>
+</g>
+<g >
+<title>__block_commit_write (20,202,020 samples, 0.07%)</title><rect x="520.4" y="565" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="523.39" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="301.4" y="885" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="304.39" y="895.5" ></text>
+</g>
+<g >
+<title>walk_component (30,303,030 samples, 0.10%)</title><rect x="395.2" y="613" width="1.3" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="398.18" y="623.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="757" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1046.98" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.07%)</title><rect x="217.2" y="677" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="220.16" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="484.9" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="487.87" y="703.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.03%)</title><rect x="552.7" y="485" width="0.5" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="555.71" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="388.4" y="773" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="391.35" y="783.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.03%)</title><rect x="610.5" y="405" width="0.5" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="613.53" y="415.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="545.4" y="549" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="548.43" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="475.8" y="821" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="478.77" y="831.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="439.3" y="789" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="442.34" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_open (20,202,020 samples, 0.07%)</title><rect x="335.5" y="677" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="338.54" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="402.5" y="613" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="405.46" y="623.5" ></text>
+</g>
+<g >
+<title>sock_close (101,010,100 samples, 0.33%)</title><rect x="22.7" y="805" width="4.6" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="25.75" y="815.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (30,303,030 samples, 0.10%)</title><rect x="1375.9" y="373" width="1.4" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1378.89" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_create (333,333,330 samples, 1.09%)</title><rect x="62.8" y="885" width="15.0" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="65.81" y="895.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="357.4" y="549" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="360.39" y="559.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="693" width="1.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1378.43" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="642.4" y="757" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="645.41" y="767.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.03%)</title><rect x="38.7" y="949" width="0.4" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="41.68" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (20,202,020 samples, 0.07%)</title><rect x="634.7" y="725" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="637.67" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.03%)</title><rect x="246.3" y="613" width="0.5" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="249.30" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (444,444,440 samples, 1.45%)</title><rect x="616.5" y="853" width="20.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="619.45" y="863.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="398.4" y="645" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="401.37" y="655.5" ></text>
+</g>
+<g >
+<title>inet_unhash (10,101,010 samples, 0.03%)</title><rect x="23.7" y="629" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="26.66" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="86.0" y="949" width="1.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="89.03" y="959.5" ></text>
+</g>
+<g >
+<title>read (30,303,030 samples, 0.10%)</title><rect x="297.3" y="789" width="1.4" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="300.29" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="853" width="1.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1378.43" y="863.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.03%)</title><rect x="274.1" y="677" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="277.07" y="687.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="191.7" y="613" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="194.66" y="623.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="629" width="4.1" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1029.22" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="255.9" y="805" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="258.86" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="409.3" y="725" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="412.29" y="735.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="367.0" y="501" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="369.95" y="511.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="173.5" y="469" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="176.45" y="479.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="423.9" y="661" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="426.86" y="671.5" ></text>
+</g>
+<g >
+<title>__folio_batch_release (20,202,020 samples, 0.07%)</title><rect x="554.5" y="517" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="557.53" y="527.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="425.7" y="485" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="428.68" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (30,303,030 samples, 0.10%)</title><rect x="171.6" y="453" width="1.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="174.63" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="199.9" y="677" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="202.86" y="687.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.07%)</title><rect x="601.4" y="693" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="604.43" y="703.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="422.0" y="581" width="0.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="425.04" y="591.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="137.5" y="645" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="140.48" y="655.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="445.7" y="629" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="448.72" y="639.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.07%)</title><rect x="214.4" y="805" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="217.43" y="815.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.03%)</title><rect x="556.8" y="853" width="0.5" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="559.81" y="863.5" ></text>
+</g>
+<g >
+<title>__folio_put (10,101,010 samples, 0.03%)</title><rect x="448.0" y="597" width="0.4" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="450.99" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.10%)</title><rect x="128.8" y="661" width="1.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="131.83" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="494.9" y="757" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="497.89" y="767.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (464,646,460 samples, 1.52%)</title><rect x="989.3" y="837" width="21.0" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="992.34" y="847.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.03%)</title><rect x="181.2" y="693" width="0.4" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="184.19" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (151,515,150 samples, 0.49%)</title><rect x="416.1" y="725" width="6.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="419.12" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (10,101,010 samples, 0.03%)</title><rect x="609.2" y="645" width="0.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="612.17" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="266.3" y="805" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="269.33" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="532.2" y="661" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="535.22" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (20,202,020 samples, 0.07%)</title><rect x="572.3" y="725" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="575.29" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="661.5" y="693" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="664.53" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="274.1" y="805" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="277.07" y="815.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="553.6" y="421" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="556.62" y="431.5" ></text>
+</g>
+<g >
+<title>fstatat64 (80,808,080 samples, 0.26%)</title><rect x="321.0" y="821" width="3.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="323.97" y="831.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="1044.4" y="917" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1047.43" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="725" width="0.4" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1046.98" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.07%)</title><rect x="163.0" y="597" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="165.98" y="607.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="394.3" y="581" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="397.27" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_match (20,202,020 samples, 0.07%)</title><rect x="83.8" y="837" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="86.76" y="847.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.03%)</title><rect x="682.0" y="853" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="685.02" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (40,404,040 samples, 0.13%)</title><rect x="346.5" y="645" width="1.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="349.46" y="655.5" ></text>
+</g>
+<g >
+<title>__folio_start_writeback (10,101,010 samples, 0.03%)</title><rect x="612.4" y="485" width="0.4" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="615.36" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (121,212,120 samples, 0.40%)</title><rect x="579.6" y="805" width="5.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="582.57" y="815.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (80,808,080 samples, 0.26%)</title><rect x="639.2" y="853" width="3.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="642.22" y="863.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="98.3" y="901" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="101.33" y="911.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="672.5" y="757" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="675.45" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (242,424,240 samples, 0.79%)</title><rect x="605.1" y="757" width="10.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="608.07" y="767.5" ></text>
+</g>
+<g >
+<title>raw_local_deliver (10,101,010 samples, 0.03%)</title><rect x="1386.4" y="453" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1389.36" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="389.3" y="773" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="392.26" y="783.5" ></text>
+</g>
+<g >
+<title>privileged_wrt_inode_uidgid (10,101,010 samples, 0.03%)</title><rect x="260.4" y="597" width="0.5" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="263.41" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_symlink (20,202,020 samples, 0.07%)</title><rect x="570.5" y="741" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="573.47" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (80,808,080 samples, 0.26%)</title><rect x="230.4" y="805" width="3.6" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="233.36" y="815.5" ></text>
+</g>
+<g >
+<title>skb_release_data (10,101,010 samples, 0.03%)</title><rect x="1380.9" y="469" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1383.89" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.03%)</title><rect x="340.1" y="693" width="0.4" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="343.09" y="703.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="752.1" y="645" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="755.13" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.07%)</title><rect x="687.0" y="709" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="690.02" y="719.5" ></text>
+</g>
+<g >
+<title>kernel_clone (141,414,140 samples, 0.46%)</title><rect x="28.7" y="789" width="6.3" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="31.67" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="411.1" y="773" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="414.12" y="783.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="59.2" y="869" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="62.17" y="879.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="669.7" y="597" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="672.72" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="51.0" y="837" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="53.98" y="847.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="479.4" y="613" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="482.41" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="675.2" y="821" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="678.19" y="831.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.10%)</title><rect x="305.9" y="805" width="1.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="308.94" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="503.1" y="741" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="506.08" y="751.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="184.4" y="677" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="187.38" y="687.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="92.0" y="853" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="94.95" y="863.5" ></text>
+</g>
+<g >
+<title>__destroy_inode (10,101,010 samples, 0.03%)</title><rect x="605.5" y="613" width="0.5" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="608.53" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.03%)</title><rect x="630.6" y="629" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="633.57" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="431.1" y="757" width="1.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="434.15" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (20,202,020 samples, 0.07%)</title><rect x="120.6" y="645" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="123.64" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="671.1" y="821" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="674.09" y="831.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="268.2" y="677" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="271.15" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="375.6" y="597" width="0.5" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="378.60" y="607.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="535.9" y="677" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="538.87" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="38.7" y="869" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="41.68" y="879.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="464.8" y="581" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="467.84" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="489.0" y="645" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="491.97" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="423.9" y="741" width="1.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="426.86" y="751.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="587.3" y="629" width="0.5" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="590.31" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="296.4" y="853" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="299.38" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="415.2" y="757" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="418.21" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="467.1" y="885" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="470.12" y="895.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="490.8" y="565" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="493.79" y="575.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (10,101,010 samples, 0.03%)</title><rect x="519.0" y="613" width="0.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="522.02" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (60,606,060 samples, 0.20%)</title><rect x="340.5" y="789" width="2.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="343.54" y="799.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (20,202,020 samples, 0.07%)</title><rect x="1345.8" y="885" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1348.84" y="895.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (282,828,280 samples, 0.92%)</title><rect x="544.1" y="741" width="12.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="547.06" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="655.6" y="645" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="658.61" y="655.5" ></text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.03%)</title><rect x="566.8" y="581" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="569.83" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="641.9" y="709" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="644.95" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (60,606,060 samples, 0.20%)</title><rect x="340.5" y="853" width="2.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="343.54" y="863.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (101,010,100 samples, 0.33%)</title><rect x="81.5" y="965" width="4.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="84.48" y="975.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (70,707,070 samples, 0.23%)</title><rect x="321.0" y="741" width="3.2" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="323.97" y="751.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.03%)</title><rect x="547.2" y="533" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="550.25" y="543.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.03%)</title><rect x="294.6" y="581" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="297.56" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="457.6" y="789" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="460.56" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.03%)</title><rect x="455.3" y="629" width="0.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="458.28" y="639.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (10,101,010 samples, 0.03%)</title><rect x="1376.3" y="261" width="0.5" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1379.34" y="271.5" ></text>
+</g>
+<g >
+<title>nd_jump_root (10,101,010 samples, 0.03%)</title><rect x="679.7" y="597" width="0.5" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="682.74" y="607.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.03%)</title><rect x="432.1" y="789" width="0.4" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="435.06" y="799.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="477.1" y="677" width="1.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="480.13" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="373.3" y="773" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="376.33" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.03%)</title><rect x="455.3" y="677" width="0.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="458.28" y="687.5" ></text>
+</g>
+<g >
+<title>call_filldir (10,101,010 samples, 0.03%)</title><rect x="369.7" y="725" width="0.4" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="372.68" y="735.5" ></text>
+</g>
+<g >
+<title>from_kgid (10,101,010 samples, 0.03%)</title><rect x="121.1" y="581" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="124.09" y="591.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_put (10,101,010 samples, 0.03%)</title><rect x="1026.2" y="357" width="0.5" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1029.22" y="367.5" ></text>
+</g>
+<g >
+<title>tcp_push_one (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="773" width="1.4" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="1033.32" y="783.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="300.9" y="629" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="303.93" y="639.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="67.4" y="821" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="70.37" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_bio_write_folio (10,101,010 samples, 0.03%)</title><rect x="366.5" y="501" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="369.50" y="511.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_reschedule_ipi (20,202,020 samples, 0.07%)</title><rect x="985.2" y="853" width="1.0" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="988.24" y="863.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="291.8" y="661" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="294.83" y="671.5" ></text>
+</g>
+<g >
+<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="1333.1" y="885" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1336.09" y="895.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="261.3" y="725" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="264.32" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (20,202,020 samples, 0.07%)</title><rect x="199.4" y="693" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="202.40" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.07%)</title><rect x="372.4" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="375.42" y="671.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.03%)</title><rect x="229.0" y="773" width="0.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="232.00" y="783.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.07%)</title><rect x="438.9" y="837" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="441.89" y="847.5" ></text>
+</g>
+<g >
+<title>net_send_buf (50,505,050 samples, 0.16%)</title><rect x="10.0" y="997" width="2.3" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="13.00" y="1007.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.10%)</title><rect x="661.5" y="709" width="1.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="664.53" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="754.0" y="901" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="756.95" y="911.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="269.1" y="773" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="272.06" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (101,010,100 samples, 0.33%)</title><rect x="571.8" y="821" width="4.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="574.83" y="831.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="494.9" y="629" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="497.89" y="639.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="665.2" y="629" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="668.17" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="214.0" y="773" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="216.97" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="313.2" y="613" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="316.23" y="623.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.03%)</title><rect x="1386.8" y="469" width="0.5" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1389.81" y="479.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (30,303,030 samples, 0.10%)</title><rect x="1380.0" y="613" width="1.3" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1382.98" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="591.9" y="581" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="594.87" y="591.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.07%)</title><rect x="240.8" y="693" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="243.83" y="703.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.03%)</title><rect x="698.0" y="533" width="0.4" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="700.95" y="543.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="243.1" y="613" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="246.11" y="623.5" ></text>
+</g>
+<g >
+<title>update_blocked_averages (10,101,010 samples, 0.03%)</title><rect x="699.8" y="645" width="0.4" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="702.77" y="655.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (60,606,060 samples, 0.20%)</title><rect x="1360.4" y="757" width="2.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1363.41" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (696,969,690 samples, 2.28%)</title><rect x="688.4" y="885" width="31.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="691.39" y="895.5" >do..</text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="132.0" y="613" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="135.02" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (292,929,290 samples, 0.96%)</title><rect x="642.9" y="869" width="13.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="645.86" y="879.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (30,303,030 samples, 0.10%)</title><rect x="153.0" y="661" width="1.3" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="155.96" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="229.9" y="789" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="232.91" y="799.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (242,424,240 samples, 0.79%)</title><rect x="735.7" y="757" width="11.0" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="738.74" y="767.5" ></text>
+</g>
+<g >
+<title>remove (202,020,200 samples, 0.66%)</title><rect x="215.8" y="853" width="9.1" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="218.79" y="863.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="367.9" y="805" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="370.86" y="815.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="351.9" y="629" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="354.93" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (10,101,010 samples, 0.03%)</title><rect x="383.3" y="581" width="0.5" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="386.34" y="591.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="718.9" y="773" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="721.89" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="658.3" y="789" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="661.34" y="799.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.03%)</title><rect x="446.6" y="741" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="449.63" y="751.5" ></text>
+</g>
+<g >
+<title>sk_reset_timer (10,101,010 samples, 0.03%)</title><rect x="25.5" y="213" width="0.4" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="28.48" y="223.5" ></text>
+</g>
+<g >
+<title>dput (101,010,100 samples, 0.33%)</title><rect x="605.1" y="709" width="4.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="608.07" y="719.5" ></text>
+</g>
+<g >
+<title>destroy_large_folio (10,101,010 samples, 0.03%)</title><rect x="1012.1" y="645" width="0.5" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1015.10" y="655.5" ></text>
+</g>
+<g >
+<title>vma_alloc_folio (60,606,060 samples, 0.20%)</title><rect x="1360.4" y="773" width="2.7" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1363.41" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (30,303,030 samples, 0.10%)</title><rect x="596.0" y="549" width="1.3" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="598.97" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="440.3" y="853" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="443.25" y="863.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.10%)</title><rect x="506.7" y="613" width="1.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="509.73" y="623.5" ></text>
+</g>
+<g >
+<title>net_send (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="949" width="1.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1378.43" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="132.0" y="581" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="135.02" y="591.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="578.7" y="773" width="0.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="581.66" y="783.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (20,202,020 samples, 0.07%)</title><rect x="666.5" y="805" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="669.54" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="274.5" y="773" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="277.53" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="282.7" y="757" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="285.72" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="660.6" y="677" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="663.62" y="687.5" ></text>
+</g>
+<g >
+<title>write (50,505,050 samples, 0.16%)</title><rect x="443.0" y="789" width="2.3" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="445.99" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="346.5" y="757" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="349.46" y="767.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.03%)</title><rect x="447.1" y="565" width="0.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="450.08" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="405.7" y="661" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="408.65" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (40,404,040 samples, 0.13%)</title><rect x="82.8" y="885" width="1.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="85.85" y="895.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.03%)</title><rect x="611.4" y="485" width="0.5" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="614.45" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.07%)</title><rect x="438.9" y="853" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="441.89" y="863.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.13%)</title><rect x="538.6" y="853" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="541.60" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="476.2" y="757" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="479.22" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (838,383,830 samples, 2.74%)</title><rect x="100.1" y="821" width="37.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="103.15" y="831.5" >[li..</text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.03%)</title><rect x="599.6" y="757" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="602.61" y="767.5" ></text>
+</g>
+<g >
+<title>__napi_poll (40,404,040 samples, 0.13%)</title><rect x="1040.3" y="565" width="1.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1043.33" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="238.1" y="901" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="241.10" y="911.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (484,848,480 samples, 1.58%)</title><rect x="58.3" y="965" width="21.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="61.26" y="975.5" >d..</text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="491.2" y="693" width="1.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="494.25" y="703.5" ></text>
+</g>
+<g >
+<title>iput (50,505,050 samples, 0.16%)</title><rect x="458.0" y="677" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="461.01" y="687.5" ></text>
+</g>
+<g >
+<title>napi_consume_skb (10,101,010 samples, 0.03%)</title><rect x="1014.8" y="437" width="0.5" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1017.84" y="447.5" ></text>
+</g>
+<g >
+<title>fsnotify_destroy_marks (10,101,010 samples, 0.03%)</title><rect x="111.5" y="565" width="0.5" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="114.53" y="575.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="484.0" y="693" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="486.96" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="229.5" y="821" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="232.45" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="134.8" y="581" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="137.75" y="591.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.03%)</title><rect x="248.1" y="485" width="0.5" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="251.12" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (30,303,030 samples, 0.10%)</title><rect x="224.9" y="805" width="1.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="227.90" y="815.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="370.1" y="645" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="373.14" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="302.8" y="885" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="305.75" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="409.3" y="693" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="412.29" y="703.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.03%)</title><rect x="82.4" y="917" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="85.39" y="927.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="638.3" y="741" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="641.31" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_read_block_bitmap (10,101,010 samples, 0.03%)</title><rect x="360.1" y="485" width="0.5" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="363.12" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="595.1" y="613" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="598.05" y="623.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (20,202,020 samples, 0.07%)</title><rect x="585.5" y="837" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="588.49" y="847.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="123.4" y="485" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="126.37" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (20,202,020 samples, 0.07%)</title><rect x="567.7" y="565" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="570.74" y="575.5" ></text>
+</g>
+<g >
+<title>do_rmdir (50,505,050 samples, 0.16%)</title><rect x="234.9" y="805" width="2.3" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="237.92" y="815.5" ></text>
+</g>
+<g >
+<title>hook_inode_free_security (10,101,010 samples, 0.03%)</title><rect x="112.0" y="581" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="114.99" y="591.5" ></text>
+</g>
+<g >
+<title>d_lru_add (10,101,010 samples, 0.03%)</title><rect x="523.1" y="581" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="526.12" y="591.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (40,404,040 samples, 0.13%)</title><rect x="24.6" y="661" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="27.57" y="671.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="437" width="3.2" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1038.32" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.07%)</title><rect x="551.3" y="597" width="1.0" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="554.35" y="607.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (10,101,010 samples, 0.03%)</title><rect x="663.3" y="789" width="0.5" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="666.35" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="504.9" y="677" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="507.91" y="687.5" ></text>
+</g>
+<g >
+<title>mas_walk (10,101,010 samples, 0.03%)</title><rect x="1345.4" y="885" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1348.38" y="895.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="229.5" y="869" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="232.45" y="879.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="199.4" y="677" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="202.40" y="687.5" ></text>
+</g>
+<g >
+<title>kfree (10,101,010 samples, 0.03%)</title><rect x="101.1" y="613" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="104.06" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="458.5" y="613" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="461.47" y="623.5" ></text>
+</g>
+<g >
+<title>generic_update_time (20,202,020 samples, 0.07%)</title><rect x="667.9" y="693" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="670.90" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="481.2" y="629" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="484.23" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="658.3" y="741" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="661.34" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_bio_write_folio (10,101,010 samples, 0.03%)</title><rect x="452.1" y="517" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="455.09" y="527.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (10,101,010 samples, 0.03%)</title><rect x="1380.4" y="389" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1383.44" y="399.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="466.2" y="805" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="469.21" y="815.5" ></text>
+</g>
+<g >
+<title>apparmor_capable (10,101,010 samples, 0.03%)</title><rect x="86.5" y="773" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="89.49" y="783.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="422.5" y="565" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="425.50" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.03%)</title><rect x="752.1" y="597" width="0.5" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="755.13" y="607.5" ></text>
+</g>
+<g >
+<title>readdir64 (20,202,020 samples, 0.07%)</title><rect x="663.8" y="805" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="666.80" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="295.5" y="837" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="298.47" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="438.0" y="741" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="440.98" y="751.5" ></text>
+</g>
+<g >
+<title>write (30,303,030 samples, 0.10%)</title><rect x="426.1" y="741" width="1.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="429.14" y="751.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.03%)</title><rect x="496.7" y="613" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="499.71" y="623.5" ></text>
+</g>
+<g >
+<title>__slab_free (10,101,010 samples, 0.03%)</title><rect x="21.8" y="757" width="0.5" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="24.84" y="767.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.03%)</title><rect x="193.9" y="693" width="0.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="196.94" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (20,202,020 samples, 0.07%)</title><rect x="426.6" y="581" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="429.60" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="407.0" y="661" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="410.02" y="671.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="643.3" y="533" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="646.32" y="543.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (50,505,050 samples, 0.16%)</title><rect x="458.0" y="709" width="2.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="461.01" y="719.5" ></text>
+</g>
+<g >
+<title>pthread_cond_wait (40,404,040 samples, 0.13%)</title><rect x="15.9" y="1013" width="1.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="18.92" y="1023.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.07%)</title><rect x="65.5" y="821" width="1.0" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="68.55" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_append (50,505,050 samples, 0.16%)</title><rect x="558.6" y="709" width="2.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="561.63" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="468.9" y="693" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="471.94" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_match (10,101,010 samples, 0.03%)</title><rect x="502.2" y="645" width="0.4" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="505.17" y="655.5" ></text>
+</g>
+<g >
+<title>ktime_get_seconds (10,101,010 samples, 0.03%)</title><rect x="1028.0" y="309" width="0.5" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="1031.04" y="319.5" ></text>
+</g>
+<g >
+<title>process_backlog (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="485" width="1.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1033.32" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (20,202,020 samples, 0.07%)</title><rect x="395.6" y="533" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="398.64" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.03%)</title><rect x="382.0" y="517" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="384.98" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.07%)</title><rect x="568.6" y="597" width="1.0" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="571.65" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="120.6" y="629" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="123.64" y="639.5" ></text>
+</g>
+<g >
+<title>__brelse (10,101,010 samples, 0.03%)</title><rect x="448.9" y="645" width="0.5" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="451.90" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="373.3" y="741" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="376.33" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.10%)</title><rect x="650.6" y="693" width="1.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="653.60" y="703.5" ></text>
+</g>
+<g >
+<title>sock_alloc_inode (10,101,010 samples, 0.03%)</title><rect x="37.8" y="773" width="0.4" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="40.77" y="783.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="41.0" y="693" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="43.96" y="703.5" ></text>
+</g>
+<g >
+<title>schedule (20,202,020 samples, 0.07%)</title><rect x="40.0" y="821" width="1.0" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="43.05" y="831.5" ></text>
+</g>
+<g >
+<title>tcp_v4_fill_cb (10,101,010 samples, 0.03%)</title><rect x="1376.8" y="341" width="0.5" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="1379.80" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="232.2" y="677" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="235.18" y="687.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="139.8" y="789" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="142.76" y="799.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="381.5" y="517" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="384.52" y="527.5" ></text>
+</g>
+<g >
+<title>do_readlinkat (10,101,010 samples, 0.03%)</title><rect x="636.9" y="773" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="639.94" y="783.5" ></text>
+</g>
+<g >
+<title>__dd_dispatch_request (10,101,010 samples, 0.03%)</title><rect x="248.1" y="437" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="251.12" y="447.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (70,707,070 samples, 0.23%)</title><rect x="552.3" y="597" width="3.1" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="555.26" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="292.7" y="773" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="295.74" y="783.5" ></text>
+</g>
+<g >
+<title>set_root (10,101,010 samples, 0.03%)</title><rect x="378.3" y="581" width="0.5" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="381.33" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="585.9" y="709" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="588.95" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="518.6" y="693" width="1.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="521.56" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (20,202,020 samples, 0.07%)</title><rect x="347.4" y="613" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="350.37" y="623.5" ></text>
+</g>
+<g >
+<title>git_remote_connect_ext (474,747,470 samples, 1.55%)</title><rect x="471.7" y="901" width="21.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="474.67" y="911.5" >g..</text>
+</g>
+<g >
+<title>__dentry_kill (131,313,130 samples, 0.43%)</title><rect x="544.5" y="677" width="5.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="547.52" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="481.7" y="837" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="484.69" y="847.5" ></text>
+</g>
+<g >
+<title>__f_unlock_pos (10,101,010 samples, 0.03%)</title><rect x="141.6" y="741" width="0.4" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="144.58" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="242.2" y="581" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="245.20" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="272.7" y="597" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="275.71" y="607.5" ></text>
+</g>
+<g >
+<title>SHA256_Final (10,101,010 samples, 0.03%)</title><rect x="639.2" y="773" width="0.5" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="642.22" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (60,606,060 samples, 0.20%)</title><rect x="221.3" y="741" width="2.7" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="224.26" y="751.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="328.3" y="709" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="331.25" y="719.5" ></text>
+</g>
+<g >
+<title>do_writepages (50,505,050 samples, 0.16%)</title><rect x="460.3" y="613" width="2.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="463.29" y="623.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (60,606,060 samples, 0.20%)</title><rect x="610.5" y="613" width="2.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="613.53" y="623.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="757.1" y="773" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="760.14" y="783.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_pre_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="312.8" y="597" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="315.77" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="466.2" y="741" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="469.21" y="751.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="467.6" y="693" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="470.57" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="632.8" y="629" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="635.84" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="373.3" y="789" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="376.33" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="545.9" y="533" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="548.88" y="543.5" ></text>
+</g>
+<g >
+<title>__folio_put (10,101,010 samples, 0.03%)</title><rect x="1346.7" y="805" width="0.5" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1349.75" y="815.5" ></text>
+</g>
+<g >
+<title>select_collect (20,202,020 samples, 0.07%)</title><rect x="175.7" y="645" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="178.73" y="655.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.03%)</title><rect x="585.5" y="597" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="588.49" y="607.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="618.7" y="629" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="621.73" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="1034.0" y="917" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1036.96" y="927.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (202,020,200 samples, 0.66%)</title><rect x="1357.2" y="837" width="9.1" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1360.22" y="847.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.03%)</title><rect x="519.9" y="549" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="522.93" y="559.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="570.0" y="805" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="573.01" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_chmod (10,101,010 samples, 0.03%)</title><rect x="537.2" y="773" width="0.5" height="15.0" fill="rgb(0,237,201)" rx="2" ry="2" />
+<text x="540.23" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.07%)</title><rect x="133.8" y="613" width="1.0" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="136.84" y="623.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="249.9" y="773" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="252.94" y="783.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="543.6" y="661" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="546.61" y="671.5" ></text>
+</g>
+<g >
+<title>__getblk_slow (10,101,010 samples, 0.03%)</title><rect x="315.0" y="597" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="318.05" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="525.4" y="677" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="528.39" y="687.5" ></text>
+</g>
+<g >
+<title>__init_rwsem (10,101,010 samples, 0.03%)</title><rect x="37.3" y="773" width="0.5" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="40.32" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (494,949,490 samples, 1.62%)</title><rect x="1011.6" y="853" width="22.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1014.65" y="863.5" >_..</text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="541.3" y="789" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="544.33" y="799.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="665.2" y="645" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="668.17" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (20,202,020 samples, 0.07%)</title><rect x="118.4" y="677" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="121.36" y="687.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="600.5" y="581" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="603.52" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="183.9" y="725" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="186.92" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (10,101,010 samples, 0.03%)</title><rect x="234.5" y="837" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="237.46" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="230.4" y="693" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="233.36" y="703.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="600.5" y="629" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="603.52" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (80,808,080 samples, 0.26%)</title><rect x="208.1" y="597" width="3.6" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="211.05" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="679.3" y="661" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="682.28" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.13%)</title><rect x="293.6" y="789" width="1.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="296.65" y="799.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.07%)</title><rect x="336.9" y="693" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="339.90" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.46%)</title><rect x="416.1" y="709" width="6.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="419.12" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (131,313,130 samples, 0.43%)</title><rect x="627.8" y="661" width="6.0" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="630.84" y="671.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="698.0" y="677" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="700.95" y="687.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="94.7" y="757" width="0.4" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="97.68" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (30,303,030 samples, 0.10%)</title><rect x="297.3" y="677" width="1.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="300.29" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (60,606,060 samples, 0.20%)</title><rect x="178.5" y="725" width="2.7" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="181.46" y="735.5" ></text>
+</g>
+<g >
+<title>__slab_free (10,101,010 samples, 0.03%)</title><rect x="353.7" y="453" width="0.5" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="356.75" y="463.5" ></text>
+</g>
+<g >
+<title>__fput (20,202,020 samples, 0.07%)</title><rect x="279.5" y="773" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="282.53" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_write (40,404,040 samples, 0.13%)</title><rect x="576.4" y="757" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="579.39" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="14.6" y="949" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="17.55" y="959.5" ></text>
+</g>
+<g >
+<title>rw_verify_area (10,101,010 samples, 0.03%)</title><rect x="1044.4" y="757" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1047.43" y="767.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="147.5" y="533" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="150.50" y="543.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.03%)</title><rect x="353.7" y="533" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="356.75" y="543.5" ></text>
+</g>
+<g >
+<title>main (636,363,630 samples, 2.08%)</title><rect x="17.7" y="1045" width="28.7" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="20.74" y="1055.5" >main</text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="586.4" y="677" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="589.40" y="687.5" ></text>
+</g>
+<g >
+<title>schedule (40,404,040 samples, 0.13%)</title><rect x="18.7" y="837" width="1.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="21.65" y="847.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.03%)</title><rect x="479.4" y="581" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="482.41" y="591.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="259.0" y="773" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="262.05" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (282,828,280 samples, 0.92%)</title><rect x="544.1" y="725" width="12.7" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="547.06" y="735.5" ></text>
+</g>
+<g >
+<title>git_error_set (10,101,010 samples, 0.03%)</title><rect x="470.3" y="757" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="473.30" y="767.5" ></text>
+</g>
+<g >
+<title>do_accept (50,505,050 samples, 0.16%)</title><rect x="36.4" y="837" width="2.3" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="39.41" y="847.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="110.6" y="645" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="113.62" y="655.5" ></text>
+</g>
+<g >
+<title>ip_local_out (80,808,080 samples, 0.26%)</title><rect x="1385.9" y="757" width="3.6" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1388.90" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="209.4" y="485" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="212.42" y="495.5" ></text>
+</g>
+<g >
+<title>blk_mq_attempt_bio_merge (10,101,010 samples, 0.03%)</title><rect x="435.2" y="437" width="0.5" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="438.25" y="447.5" ></text>
+</g>
+<g >
+<title>tcp_done (10,101,010 samples, 0.03%)</title><rect x="23.7" y="661" width="0.4" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="26.66" y="671.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="348.7" y="709" width="0.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="351.74" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="271.8" y="661" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="274.79" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.30%)</title><rect x="245.8" y="821" width="4.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="248.84" y="831.5" ></text>
+</g>
+<g >
+<title>__do_softirq (40,404,040 samples, 0.13%)</title><rect x="1040.3" y="613" width="1.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1043.33" y="623.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (50,505,050 samples, 0.16%)</title><rect x="1013.0" y="549" width="2.3" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1016.02" y="559.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="722.1" y="837" width="0.4" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="725.08" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="529.9" y="821" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="532.95" y="831.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.03%)</title><rect x="610.5" y="421" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="613.53" y="431.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="413.8" y="677" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="416.85" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="679.7" y="709" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="682.74" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="508.1" y="709" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="511.09" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (343,434,340 samples, 1.12%)</title><rect x="352.4" y="773" width="15.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="355.38" y="783.5" ></text>
+</g>
+<g >
+<title>unmap_region (222,222,220 samples, 0.73%)</title><rect x="759.9" y="757" width="10.0" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="762.87" y="767.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="224.4" y="741" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="227.44" y="751.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.03%)</title><rect x="402.0" y="677" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="405.01" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="303.2" y="885" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="306.21" y="895.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="137.9" y="773" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="140.94" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (40,404,040 samples, 0.13%)</title><rect x="227.2" y="693" width="1.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="230.18" y="703.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.03%)</title><rect x="1010.7" y="677" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1013.74" y="687.5" ></text>
+</g>
+<g >
+<title>fscrypt_file_open (10,101,010 samples, 0.03%)</title><rect x="282.7" y="581" width="0.5" height="15.0" fill="rgb(0,198,33)" rx="2" ry="2" />
+<text x="285.72" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="49.2" y="837" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="52.16" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="388.4" y="725" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="391.35" y="735.5" ></text>
+</g>
+<g >
+<title>git_repository__cleanup (10,101,010 samples, 0.03%)</title><rect x="493.1" y="853" width="0.4" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="496.07" y="863.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="527.7" y="645" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="530.67" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="331.4" y="629" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="334.44" y="639.5" ></text>
+</g>
+<g >
+<title>libjson_to_string (5,323,232,270 samples, 17.39%)</title><rect x="771.7" y="965" width="239.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="774.71" y="975.5" >libjson_to_string</text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.07%)</title><rect x="109.3" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="112.25" y="671.5" ></text>
+</g>
+<g >
+<title>queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="436.6" y="453" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="439.61" y="463.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="650.1" y="661" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="653.15" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (50,505,050 samples, 0.16%)</title><rect x="234.9" y="837" width="2.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="237.92" y="847.5" ></text>
+</g>
+<g >
+<title>alloc_inode (40,404,040 samples, 0.13%)</title><rect x="69.2" y="837" width="1.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="72.19" y="847.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="308.7" y="645" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="311.67" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_setent (10,101,010 samples, 0.03%)</title><rect x="555.9" y="645" width="0.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="558.90" y="655.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="649.7" y="709" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="652.69" y="719.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="697.0" y="677" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="700.04" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="162.1" y="533" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="165.07" y="543.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.03%)</title><rect x="552.7" y="373" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="555.71" y="383.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="650.6" y="661" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="653.60" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.03%)</title><rect x="330.5" y="645" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="333.53" y="655.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.03%)</title><rect x="483.1" y="645" width="0.4" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="486.05" y="655.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="365.6" y="437" width="0.4" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="368.59" y="447.5" ></text>
+</g>
+<g >
+<title>git_object_lookup_prefix (141,414,140 samples, 0.46%)</title><rect x="280.4" y="885" width="6.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="283.45" y="895.5" ></text>
+</g>
+<g >
+<title>unlink (131,313,130 samples, 0.43%)</title><rect x="110.2" y="741" width="5.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="113.16" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="471.7" y="789" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="474.67" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.33%)</title><rect x="471.7" y="869" width="4.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="474.67" y="879.5" ></text>
+</g>
+<g >
+<title>readlink (20,202,020 samples, 0.07%)</title><rect x="483.1" y="805" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="486.05" y="815.5" ></text>
+</g>
+<g >
+<title>block_write_end (20,202,020 samples, 0.07%)</title><rect x="520.4" y="581" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="523.39" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (212,121,210 samples, 0.69%)</title><rect x="509.0" y="629" width="9.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="512.00" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (10,101,010 samples, 0.03%)</title><rect x="236.7" y="725" width="0.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="239.74" y="735.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.03%)</title><rect x="585.5" y="613" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="588.49" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.07%)</title><rect x="539.5" y="741" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="542.51" y="751.5" ></text>
+</g>
+<g >
+<title>mas_next_slot (10,101,010 samples, 0.03%)</title><rect x="117.0" y="581" width="0.4" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="119.99" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.10%)</title><rect x="625.6" y="709" width="1.3" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="628.56" y="719.5" ></text>
+</g>
+<g >
+<title>__slab_free (10,101,010 samples, 0.03%)</title><rect x="650.1" y="565" width="0.5" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="653.15" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (121,212,120 samples, 0.40%)</title><rect x="682.9" y="933" width="5.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="685.93" y="943.5" ></text>
+</g>
+<g >
+<title>alloc_inode (20,202,020 samples, 0.07%)</title><rect x="312.3" y="645" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="315.32" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.03%)</title><rect x="519.9" y="597" width="0.5" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="522.93" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="773" width="3.2" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1038.32" y="783.5" ></text>
+</g>
+<g >
+<title>generic_update_time (10,101,010 samples, 0.03%)</title><rect x="195.3" y="725" width="0.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="198.31" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (20,202,020 samples, 0.07%)</title><rect x="223.1" y="693" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="226.08" y="703.5" ></text>
+</g>
+<g >
+<title>ip_local_out (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="661" width="1.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1386.17" y="671.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (20,202,020 samples, 0.07%)</title><rect x="366.5" y="533" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="369.50" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="165.3" y="549" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="168.26" y="559.5" ></text>
+</g>
+<g >
+<title>git_reference_create_matching (606,060,600 samples, 1.98%)</title><rect x="502.6" y="853" width="27.3" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="505.63" y="863.5" >g..</text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="527.7" y="549" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="530.67" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="473.5" y="693" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="476.49" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="407.5" y="677" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="410.47" y="687.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="501" width="3.2" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1038.32" y="511.5" ></text>
+</g>
+<g >
+<title>__sk_mem_raise_allocated (10,101,010 samples, 0.03%)</title><rect x="1029.4" y="261" width="0.5" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1032.41" y="271.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="576.4" y="837" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="579.39" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="398.4" y="773" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="401.37" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="346.0" y="549" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="349.01" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="565.9" y="613" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="568.92" y="623.5" ></text>
+</g>
+<g >
+<title>file_modified (10,101,010 samples, 0.03%)</title><rect x="576.4" y="709" width="0.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="579.39" y="719.5" ></text>
+</g>
+<g >
+<title>realloc (20,202,020 samples, 0.07%)</title><rect x="750.8" y="917" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="753.77" y="927.5" ></text>
+</g>
+<g >
+<title>filename_lookup (111,111,110 samples, 0.36%)</title><rect x="580.0" y="741" width="5.0" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="583.03" y="751.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="580.0" y="709" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="583.03" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="12.3" y="965" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="15.28" y="975.5" ></text>
+</g>
+<g >
+<title>select_collect (10,101,010 samples, 0.03%)</title><rect x="126.1" y="613" width="0.5" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="129.10" y="623.5" ></text>
+</g>
+<g >
+<title>d_lookup (10,101,010 samples, 0.03%)</title><rect x="617.8" y="725" width="0.5" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="620.82" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (252,525,250 samples, 0.82%)</title><rect x="658.3" y="869" width="11.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="661.34" y="879.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="642.4" y="661" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="645.41" y="671.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (30,303,030 samples, 0.10%)</title><rect x="432.5" y="661" width="1.4" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="435.51" y="671.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (80,808,080 samples, 0.26%)</title><rect x="1026.2" y="405" width="3.7" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1029.22" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_rename (121,212,120 samples, 0.40%)</title><rect x="362.4" y="677" width="5.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="365.40" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="658.8" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="661.80" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="470.3" y="677" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="473.30" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.10%)</title><rect x="322.3" y="677" width="1.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="325.33" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="392.4" y="677" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="395.45" y="687.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.03%)</title><rect x="342.4" y="661" width="0.4" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="345.37" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="492.2" y="709" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="495.16" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="682.0" y="901" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="685.02" y="911.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="671.1" y="773" width="1.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="674.09" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="357.4" y="533" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="360.39" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="669.7" y="805" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="672.72" y="815.5" ></text>
+</g>
+<g >
+<title>file_close (20,202,020 samples, 0.07%)</title><rect x="719.8" y="933" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="722.81" y="943.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (202,020,200 samples, 0.66%)</title><rect x="352.8" y="677" width="9.1" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="355.84" y="687.5" ></text>
+</g>
+<g >
+<title>evict (40,404,040 samples, 0.13%)</title><rect x="230.4" y="757" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="233.36" y="767.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.03%)</title><rect x="384.3" y="485" width="0.4" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="387.25" y="495.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="87.4" y="837" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="90.40" y="847.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="601.0" y="677" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="603.97" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="346.0" y="757" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="349.01" y="767.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="590.0" y="645" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="593.05" y="655.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.07%)</title><rect x="372.4" y="645" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="375.42" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.03%)</title><rect x="532.7" y="677" width="0.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="535.68" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="272.7" y="629" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="275.71" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="464.4" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="467.38" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="286.8" y="885" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="289.82" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="199.9" y="645" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="202.86" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="409.3" y="565" width="1.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="412.29" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="154.8" y="613" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="157.78" y="623.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (20,202,020 samples, 0.07%)</title><rect x="90.6" y="837" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="93.59" y="847.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="519.5" y="629" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="522.48" y="639.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="41.0" y="741" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="43.96" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_read_block_bitmap_nowait (10,101,010 samples, 0.03%)</title><rect x="360.1" y="469" width="0.5" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="363.12" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="300.0" y="917" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="303.02" y="927.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="414.3" y="693" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="417.30" y="703.5" ></text>
+</g>
+<g >
+<title>getdents64 (30,303,030 samples, 0.10%)</title><rect x="117.9" y="773" width="1.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="120.90" y="783.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="150.7" y="693" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="153.69" y="703.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.03%)</title><rect x="521.3" y="533" width="0.5" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="524.30" y="543.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="479.9" y="629" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="482.86" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.03%)</title><rect x="684.7" y="725" width="0.5" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="687.75" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (101,010,100 samples, 0.33%)</title><rect x="334.6" y="773" width="4.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="337.63" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="545.9" y="565" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="548.88" y="575.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.03%)</title><rect x="585.5" y="629" width="0.4" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="588.49" y="639.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="301.8" y="677" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="304.84" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="553.6" y="501" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="556.62" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (161,616,160 samples, 0.53%)</title><rect x="88.8" y="917" width="7.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="91.77" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (10,101,010 samples, 0.03%)</title><rect x="524.9" y="677" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="527.94" y="687.5" ></text>
+</g>
+<g >
+<title>git_repository_free (242,424,240 samples, 0.79%)</title><rect x="87.9" y="949" width="10.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="90.86" y="959.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="586.4" y="757" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="589.40" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="650.1" y="773" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="653.15" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.23%)</title><rect x="193.0" y="821" width="3.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="196.03" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.20%)</title><rect x="499.9" y="821" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="502.90" y="831.5" ></text>
+</g>
+<g >
+<title>generic_update_time (10,101,010 samples, 0.03%)</title><rect x="664.3" y="677" width="0.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="667.26" y="687.5" ></text>
+</g>
+<g >
+<title>inflateInit2_ (20,202,020 samples, 0.07%)</title><rect x="285.0" y="789" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="288.00" y="799.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (10,101,010 samples, 0.03%)</title><rect x="1034.0" y="581" width="0.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1036.96" y="591.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="624.2" y="565" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="627.19" y="575.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="41.0" y="709" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="43.96" y="719.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="269.1" y="693" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="272.06" y="703.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="984.8" y="789" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="987.79" y="799.5" ></text>
+</g>
+<g >
+<title>crc_pcl (20,202,020 samples, 0.07%)</title><rect x="228.1" y="533" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="231.09" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_append (50,505,050 samples, 0.16%)</title><rect x="380.2" y="613" width="2.2" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="383.16" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="525.4" y="773" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="528.39" y="783.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="558.6" y="645" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="561.63" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="466.2" y="693" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="469.21" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="575.0" y="661" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="578.02" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="47.3" y="965" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="50.33" y="975.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="301.8" y="853" width="1.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="304.84" y="863.5" ></text>
+</g>
+<g >
+<title>__fput_sync (20,202,020 samples, 0.07%)</title><rect x="349.2" y="725" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="352.19" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="116.1" y="741" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="119.08" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (20,202,020 samples, 0.07%)</title><rect x="684.3" y="789" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="687.29" y="799.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (20,202,020 samples, 0.07%)</title><rect x="602.3" y="757" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="605.34" y="767.5" ></text>
+</g>
+<g >
+<title>truncate_cleanup_folio (10,101,010 samples, 0.03%)</title><rect x="361.0" y="581" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="364.03" y="591.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="301.8" y="757" width="0.5" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="304.84" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (111,111,110 samples, 0.36%)</title><rect x="168.9" y="565" width="5.0" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="171.90" y="575.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="214.4" y="709" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="217.43" y="719.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="86.9" y="805" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="89.94" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="428.4" y="709" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="431.42" y="719.5" ></text>
+</g>
+<g >
+<title>malloc (20,202,020 samples, 0.07%)</title><rect x="285.0" y="773" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="288.00" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="244.9" y="805" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="247.93" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_superblock_csum_set (10,101,010 samples, 0.03%)</title><rect x="606.9" y="597" width="0.4" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" />
+<text x="609.89" y="607.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.03%)</title><rect x="636.9" y="757" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="639.94" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="430.7" y="549" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="433.69" y="559.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="237.6" y="853" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="240.65" y="863.5" ></text>
+</g>
+<g >
+<title>server_listen_thread (636,363,630 samples, 2.08%)</title><rect x="17.7" y="1013" width="28.7" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="20.74" y="1023.5" >se..</text>
+</g>
+<g >
+<title>__dentry_kill (20,202,020 samples, 0.07%)</title><rect x="176.6" y="645" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="179.64" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="379.7" y="597" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="382.70" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="13.6" y="981" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="16.64" y="991.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="752.1" y="741" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="755.13" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="394.7" y="757" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="397.72" y="767.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.03%)</title><rect x="13.6" y="917" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="16.64" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="668.4" y="581" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="671.36" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="423.4" y="805" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="426.41" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (20,202,020 samples, 0.07%)</title><rect x="123.8" y="565" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="126.82" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (222,222,220 samples, 0.73%)</title><rect x="508.5" y="725" width="10.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="511.55" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.03%)</title><rect x="543.2" y="645" width="0.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="546.15" y="655.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="527.7" y="693" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="530.67" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (40,404,040 samples, 0.13%)</title><rect x="44.1" y="757" width="1.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="47.15" y="767.5" ></text>
+</g>
+<g >
+<title>__rmqueue_pcplist (10,101,010 samples, 0.03%)</title><rect x="1362.2" y="693" width="0.5" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1365.23" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="428.0" y="757" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="430.96" y="767.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="653.8" y="629" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="656.79" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="569.6" y="821" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="572.56" y="831.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="586.4" y="709" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="589.40" y="719.5" ></text>
+</g>
+<g >
+<title>d_delete (20,202,020 samples, 0.07%)</title><rect x="151.1" y="677" width="1.0" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="154.14" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (111,111,110 samples, 0.36%)</title><rect x="675.6" y="821" width="5.0" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="678.64" y="831.5" ></text>
+</g>
+<g >
+<title>find_vma (10,101,010 samples, 0.03%)</title><rect x="745.3" y="693" width="0.5" height="15.0" fill="rgb(0,198,33)" rx="2" ry="2" />
+<text x="748.30" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="348.7" y="757" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="351.74" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="372.0" y="725" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="374.96" y="735.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="546.8" y="357" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="549.79" y="367.5" ></text>
+</g>
+<g >
+<title>__wake_up (10,101,010 samples, 0.03%)</title><rect x="241.7" y="549" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="244.75" y="559.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.07%)</title><rect x="646.0" y="725" width="1.0" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="649.05" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="789" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1386.17" y="799.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="710.2" y="501" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="713.24" y="511.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="377.0" y="677" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="379.97" y="687.5" ></text>
+</g>
+<g >
+<title>__strftime_l (30,303,030 samples, 0.10%)</title><rect x="41.9" y="965" width="1.3" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="44.87" y="975.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.10%)</title><rect x="341.9" y="741" width="1.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="344.91" y="751.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="421" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1386.17" y="431.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="481.7" y="661" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="484.69" y="671.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="585.9" y="629" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="588.95" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.03%)</title><rect x="606.4" y="613" width="0.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="609.44" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="527.7" y="629" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="530.67" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="284.1" y="725" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="287.09" y="735.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (10,101,010 samples, 0.03%)</title><rect x="552.7" y="517" width="0.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="555.71" y="527.5" ></text>
+</g>
+<g >
+<title>server_has_runs (10,101,010 samples, 0.03%)</title><rect x="15.5" y="1013" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="18.46" y="1023.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="354.2" y="549" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="357.20" y="559.5" ></text>
+</g>
+<g >
+<title>libjson_send (50,505,050 samples, 0.16%)</title><rect x="10.0" y="1013" width="2.3" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="13.00" y="1023.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.03%)</title><rect x="429.3" y="485" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="432.33" y="495.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (30,303,030 samples, 0.10%)</title><rect x="688.4" y="805" width="1.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="691.39" y="815.5" ></text>
+</g>
+<g >
+<title>apparmor_path_mknod (10,101,010 samples, 0.03%)</title><rect x="563.6" y="693" width="0.5" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="566.64" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="653.3" y="613" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="656.33" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="10.9" y="933" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="13.91" y="943.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="1378.6" y="757" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1381.62" y="767.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.03%)</title><rect x="524.9" y="709" width="0.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="527.94" y="719.5" ></text>
+</g>
+<g >
+<title>dput (30,303,030 samples, 0.10%)</title><rect x="447.1" y="725" width="1.3" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="450.08" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="139.8" y="773" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="142.76" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="250.9" y="725" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="253.85" y="735.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (20,202,020 samples, 0.07%)</title><rect x="347.4" y="549" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="350.37" y="559.5" ></text>
+</g>
+<g >
+<title>server_assign_run (121,212,120 samples, 0.40%)</title><rect x="10.0" y="1045" width="5.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="13.00" y="1055.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="442.1" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="445.08" y="799.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="457.1" y="773" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="460.10" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.03%)</title><rect x="152.5" y="645" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="155.51" y="655.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="697.0" y="597" width="0.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="700.04" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="679.7" y="725" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="682.74" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="479.9" y="677" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="482.86" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (101,010,100 samples, 0.33%)</title><rect x="487.6" y="789" width="4.6" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="490.60" y="799.5" ></text>
+</g>
+<g >
+<title>copy_present_pte (30,303,030 samples, 0.10%)</title><rect x="708.4" y="709" width="1.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="711.42" y="719.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (10,101,010 samples, 0.03%)</title><rect x="364.2" y="469" width="0.5" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="367.22" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (80,808,080 samples, 0.26%)</title><rect x="363.8" y="565" width="3.6" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="366.76" y="575.5" ></text>
+</g>
+<g >
+<title>dd_bio_merge (10,101,010 samples, 0.03%)</title><rect x="435.2" y="405" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="438.25" y="415.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (90,909,090 samples, 0.30%)</title><rect x="638.8" y="869" width="4.1" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="641.76" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="495.3" y="741" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="498.34" y="751.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="504.5" y="677" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="507.45" y="687.5" ></text>
+</g>
+<g >
+<title>d_lru_del (10,101,010 samples, 0.03%)</title><rect x="126.1" y="581" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="129.10" y="591.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.03%)</title><rect x="190.8" y="581" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="193.75" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.33%)</title><rect x="344.6" y="805" width="4.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="347.64" y="815.5" ></text>
+</g>
+<g >
+<title>folio_xchg_last_cpupid (10,101,010 samples, 0.03%)</title><rect x="743.5" y="645" width="0.4" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="746.48" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="555.4" y="629" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="558.44" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="478.5" y="725" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="481.50" y="735.5" ></text>
+</g>
+<g >
+<title>git_signature_default (40,404,040 samples, 0.13%)</title><rect x="526.8" y="821" width="1.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="529.76" y="831.5" ></text>
+</g>
+<g >
+<title>git_repository_open_ext (242,424,240 samples, 0.79%)</title><rect x="671.1" y="917" width="10.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="674.09" y="927.5" ></text>
+</g>
+<g >
+<title>__release_sock (10,101,010 samples, 0.03%)</title><rect x="1379.5" y="773" width="0.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1382.53" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="466.2" y="661" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="469.21" y="671.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.03%)</title><rect x="1361.8" y="709" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1364.77" y="719.5" ></text>
+</g>
+<g >
+<title>dd_insert_requests (10,101,010 samples, 0.03%)</title><rect x="248.6" y="517" width="0.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="251.57" y="527.5" ></text>
+</g>
+<g >
+<title>sock_poll (10,101,010 samples, 0.03%)</title><rect x="20.9" y="885" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="23.93" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="237.6" y="869" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="240.65" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="428.4" y="693" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="431.42" y="703.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (10,101,010 samples, 0.03%)</title><rect x="11.8" y="421" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="14.82" y="431.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="548.2" y="533" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="551.16" y="543.5" ></text>
+</g>
+<g >
+<title>invalidate_inode_buffers (10,101,010 samples, 0.03%)</title><rect x="161.2" y="597" width="0.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="164.16" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.03%)</title><rect x="1380.4" y="341" width="0.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1383.44" y="351.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="383.8" y="709" width="0.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="386.80" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="238.1" y="741" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="241.10" y="751.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="497.6" y="677" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="500.62" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="467.6" y="757" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="470.57" y="767.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.03%)</title><rect x="522.7" y="485" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="525.66" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="240.4" y="805" width="1.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="243.38" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_send_fin (20,202,020 samples, 0.07%)</title><rect x="1034.0" y="773" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1036.96" y="783.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="259.5" y="789" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="262.50" y="799.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="135.2" y="581" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="138.21" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (20,202,020 samples, 0.07%)</title><rect x="535.0" y="645" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="537.96" y="655.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (80,808,080 samples, 0.26%)</title><rect x="246.3" y="773" width="3.6" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="249.30" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="331.9" y="789" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="334.89" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="490.8" y="613" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="493.79" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="529.5" y="725" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="532.49" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="491.2" y="661" width="1.0" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="494.25" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="465.8" y="837" width="1.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="468.75" y="847.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="397.0" y="709" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="400.00" y="719.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.03%)</title><rect x="557.7" y="693" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="560.72" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="230.4" y="709" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="233.36" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_v4_conn_request (10,101,010 samples, 0.03%)</title><rect x="1385.9" y="373" width="0.5" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1388.90" y="383.5" ></text>
+</g>
+<g >
+<title>__strftime_l (10,101,010 samples, 0.03%)</title><rect x="13.2" y="997" width="0.4" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="16.19" y="1007.5" ></text>
+</g>
+<g >
+<title>folio_add_new_anon_rmap (10,101,010 samples, 0.03%)</title><rect x="1008.5" y="725" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1011.46" y="735.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="82.4" y="901" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="85.39" y="911.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="698.0" y="709" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="700.95" y="719.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (30,303,030 samples, 0.10%)</title><rect x="1038.5" y="741" width="1.4" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1041.51" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="409.3" y="661" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="412.29" y="671.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.03%)</title><rect x="683.8" y="789" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="686.84" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="392.4" y="613" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="395.45" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="384.7" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="387.71" y="767.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="670.6" y="581" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="673.63" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (20,202,020 samples, 0.07%)</title><rect x="76.0" y="821" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="79.02" y="831.5" ></text>
+</g>
+<g >
+<title>file_close (20,202,020 samples, 0.07%)</title><rect x="14.6" y="997" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="17.55" y="1007.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.03%)</title><rect x="629.2" y="581" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="632.20" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="373" width="1.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1033.32" y="383.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="393.4" y="757" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="396.36" y="767.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (10,101,010 samples, 0.03%)</title><rect x="26.4" y="693" width="0.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="29.39" y="703.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.3.0] (5,323,232,270 samples, 17.39%)</title><rect x="771.7" y="901" width="239.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="774.71" y="911.5" >[libjson-c.so.5.3.0]</text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="570.9" y="693" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="573.92" y="703.5" ></text>
+</g>
+<g >
+<title>__sbrk (10,101,010 samples, 0.03%)</title><rect x="1057.2" y="917" width="0.4" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1060.18" y="927.5" ></text>
+</g>
+<g >
+<title>os_xsave (10,101,010 samples, 0.03%)</title><rect x="331.4" y="565" width="0.5" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="334.44" y="575.5" ></text>
+</g>
+<g >
+<title>open64 (30,303,030 samples, 0.10%)</title><rect x="382.4" y="757" width="1.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="385.43" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="373.3" y="757" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="376.33" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (20,202,020 samples, 0.07%)</title><rect x="611.4" y="501" width="1.0" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="614.45" y="511.5" ></text>
+</g>
+<g >
+<title>request_create_finished_run (7,212,121,140 samples, 23.56%)</title><rect x="1044.9" y="997" width="325.1" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1047.89" y="1007.5" >request_create_finished_run</text>
+</g>
+<g >
+<title>git_repository_free (10,101,010 samples, 0.03%)</title><rect x="493.1" y="869" width="0.4" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="496.07" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="425.2" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="428.23" y="735.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="410.2" y="501" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="413.20" y="511.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="1057.6" y="869" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1060.63" y="879.5" ></text>
+</g>
+<g >
+<title>sk_prot_alloc (10,101,010 samples, 0.03%)</title><rect x="1381.8" y="821" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1384.80" y="831.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.03%)</title><rect x="604.6" y="805" width="0.5" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="607.62" y="815.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="353.7" y="597" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="356.75" y="607.5" ></text>
+</g>
+<g >
+<title>file_modified (20,202,020 samples, 0.07%)</title><rect x="241.7" y="661" width="1.0" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="244.75" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="341" width="1.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1033.32" y="351.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (40,404,040 samples, 0.13%)</title><rect x="248.1" y="661" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="251.12" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (20,202,020 samples, 0.07%)</title><rect x="369.7" y="789" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="372.68" y="799.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="698.0" y="613" width="0.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="700.95" y="623.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="710.2" y="693" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="713.24" y="703.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.03%)</title><rect x="347.4" y="501" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="350.37" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="623.7" y="693" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="626.74" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="673.4" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="676.37" y="799.5" ></text>
+</g>
+<g >
+<title>unlink_cb (181,818,180 samples, 0.59%)</title><rect x="119.3" y="789" width="8.2" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="122.27" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_fstat (10,101,010 samples, 0.03%)</title><rect x="140.7" y="709" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="143.67" y="719.5" ></text>
+</g>
+<g >
+<title>__percpu_counter_init_many (10,101,010 samples, 0.03%)</title><rect x="717.5" y="757" width="0.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="720.53" y="767.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="1331.7" y="693" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1334.72" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (262,626,260 samples, 0.86%)</title><rect x="758.5" y="837" width="11.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="761.51" y="847.5" ></text>
+</g>
+<g >
+<title>do_softirq (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="565" width="1.4" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1033.32" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (101,010,100 samples, 0.33%)</title><rect x="513.1" y="549" width="4.6" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="516.10" y="559.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="672.5" y="725" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="675.45" y="735.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="438.9" y="741" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="441.89" y="751.5" ></text>
+</g>
+<g >
+<title>__blk_mq_alloc_requests (10,101,010 samples, 0.03%)</title><rect x="434.8" y="437" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="437.79" y="447.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.03%)</title><rect x="24.6" y="597" width="0.4" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="27.57" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="463.9" y="789" width="1.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="466.93" y="799.5" ></text>
+</g>
+<g >
+<title>get_random_u32 (10,101,010 samples, 0.03%)</title><rect x="519.0" y="549" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="522.02" y="559.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="371.0" y="757" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="374.05" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.03%)</title><rect x="114.3" y="597" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="117.26" y="607.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="805" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1046.98" y="815.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.03%)</title><rect x="385.6" y="773" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="388.62" y="783.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="491.7" y="565" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="494.70" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="116.1" y="773" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="119.08" y="783.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (20,202,020 samples, 0.07%)</title><rect x="1040.8" y="453" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1043.79" y="463.5" ></text>
+</g>
+<g >
+<title>filemap_flush (50,505,050 samples, 0.16%)</title><rect x="434.8" y="629" width="2.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="437.79" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.30%)</title><rect x="245.8" y="837" width="4.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="248.84" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="480.8" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="483.78" y="671.5" ></text>
+</g>
+<g >
+<title>tlb_remove_table_rcu (10,101,010 samples, 0.03%)</title><rect x="96.1" y="693" width="0.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="99.05" y="703.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.03%)</title><rect x="483.1" y="661" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="486.05" y="671.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (30,303,030 samples, 0.10%)</title><rect x="519.9" y="613" width="1.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="522.93" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="664.7" y="773" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="667.71" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstat (10,101,010 samples, 0.03%)</title><rect x="333.7" y="757" width="0.5" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="336.71" y="767.5" ></text>
+</g>
+<g >
+<title>refill_stock (10,101,010 samples, 0.03%)</title><rect x="1032.6" y="709" width="0.4" height="15.0" fill="rgb(0,223,140)" rx="2" ry="2" />
+<text x="1035.59" y="719.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="85.6" y="917" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="88.58" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_superblock_csum_set (10,101,010 samples, 0.03%)</title><rect x="114.3" y="581" width="0.4" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" />
+<text x="117.26" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="181.2" y="837" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="184.19" y="847.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="467.6" y="709" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="470.57" y="719.5" ></text>
+</g>
+<g >
+<title>iput (80,808,080 samples, 0.26%)</title><rect x="217.2" y="741" width="3.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="220.16" y="751.5" ></text>
+</g>
+<g >
+<title>__fput (20,202,020 samples, 0.07%)</title><rect x="349.2" y="709" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="352.19" y="719.5" ></text>
+</g>
+<g >
+<title>git_object_lookup_prefix (40,404,040 samples, 0.13%)</title><rect x="372.0" y="885" width="1.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="374.96" y="895.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="517" width="1.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1378.43" y="527.5" ></text>
+</g>
+<g >
+<title>libjson_set_string (464,646,460 samples, 1.52%)</title><rect x="1349.0" y="965" width="21.0" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1352.02" y="975.5" ></text>
+</g>
+<g >
+<title>git_index_clear (10,101,010 samples, 0.03%)</title><rect x="97.0" y="901" width="0.4" height="15.0" fill="rgb(0,212,96)" rx="2" ry="2" />
+<text x="99.96" y="911.5" ></text>
+</g>
+<g >
+<title>mpage_release_unused_pages (10,101,010 samples, 0.03%)</title><rect x="596.9" y="533" width="0.4" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="599.88" y="543.5" ></text>
+</g>
+<g >
+<title>rename (282,828,280 samples, 0.92%)</title><rect x="544.1" y="789" width="12.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="547.06" y="799.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="596.0" y="405" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="598.97" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="390.6" y="645" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="393.63" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="480.3" y="629" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="483.32" y="639.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="677.0" y="581" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="680.01" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (151,515,150 samples, 0.49%)</title><rect x="325.1" y="757" width="6.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="328.06" y="767.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct (20,202,020 samples, 0.07%)</title><rect x="434.8" y="501" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="437.79" y="511.5" ></text>
+</g>
+<g >
+<title>path_lookupat (40,404,040 samples, 0.13%)</title><rect x="394.7" y="629" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="397.72" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_xattr_security_get (10,101,010 samples, 0.03%)</title><rect x="576.4" y="629" width="0.4" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="579.39" y="639.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.03%)</title><rect x="492.2" y="677" width="0.4" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="495.16" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="494.9" y="789" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="497.89" y="799.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.03%)</title><rect x="636.5" y="773" width="0.4" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="639.49" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (20,202,020 samples, 0.07%)</title><rect x="582.3" y="629" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="585.31" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="476.2" y="677" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="479.22" y="687.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.03%)</title><rect x="710.2" y="581" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="713.24" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (343,434,340 samples, 1.12%)</title><rect x="352.4" y="741" width="15.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="355.38" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="241.7" y="597" width="0.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="244.75" y="607.5" ></text>
+</g>
+<g >
+<title>rcu_cblist_dequeue (10,101,010 samples, 0.03%)</title><rect x="984.3" y="741" width="0.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="987.33" y="751.5" ></text>
+</g>
+<g >
+<title>create_pipe_files (40,404,040 samples, 0.13%)</title><rect x="752.1" y="837" width="1.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="755.13" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="596.0" y="517" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="598.97" y="527.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.07%)</title><rect x="464.4" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="467.38" y="639.5" ></text>
+</g>
+<g >
+<title>__slab_free (10,101,010 samples, 0.03%)</title><rect x="100.1" y="517" width="0.5" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="103.15" y="527.5" ></text>
+</g>
+<g >
+<title>unlink (111,111,110 samples, 0.36%)</title><rect x="571.4" y="853" width="5.0" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="574.38" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="569.1" y="581" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="572.10" y="591.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (292,929,290 samples, 0.96%)</title><rect x="996.2" y="757" width="13.2" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="999.17" y="767.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.07%)</title><rect x="518.6" y="645" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="521.56" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="525.4" y="661" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="528.39" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="51.0" y="853" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="53.98" y="863.5" ></text>
+</g>
+<g >
+<title>net_connect (181,818,180 samples, 0.59%)</title><rect x="1381.8" y="997" width="8.2" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1384.80" y="1007.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (70,707,070 samples, 0.23%)</title><rect x="580.9" y="693" width="3.2" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="583.94" y="703.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.03%)</title><rect x="1044.4" y="869" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1047.43" y="879.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.03%)</title><rect x="646.0" y="677" width="0.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="649.05" y="687.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (30,303,030 samples, 0.10%)</title><rect x="1380.0" y="693" width="1.3" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1382.98" y="703.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.03%)</title><rect x="467.1" y="773" width="0.5" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="470.12" y="783.5" ></text>
+</g>
+<g >
+<title>tzset (10,101,010 samples, 0.03%)</title><rect x="253.1" y="853" width="0.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="256.13" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (131,313,130 samples, 0.43%)</title><rect x="110.2" y="677" width="5.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="113.16" y="687.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (10,101,010 samples, 0.03%)</title><rect x="11.8" y="469" width="0.5" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="14.82" y="479.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="423.4" y="773" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="426.41" y="783.5" ></text>
+</g>
+<g >
+<title>from_kuid (10,101,010 samples, 0.03%)</title><rect x="378.8" y="661" width="0.4" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="381.79" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="642.9" y="821" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="645.86" y="831.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="644.7" y="789" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="647.68" y="799.5" ></text>
+</g>
+<g >
+<title>do_brk_flags (10,101,010 samples, 0.03%)</title><rect x="116.5" y="597" width="0.5" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="119.54" y="607.5" ></text>
+</g>
+<g >
+<title>sched_fork (10,101,010 samples, 0.03%)</title><rect x="719.4" y="789" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="722.35" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (20,202,020 samples, 0.07%)</title><rect x="1011.6" y="757" width="1.0" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1014.65" y="767.5" ></text>
+</g>
+<g >
+<title>make_kuid (10,101,010 samples, 0.03%)</title><rect x="537.7" y="757" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="540.69" y="767.5" ></text>
+</g>
+<g >
+<title>sysvec_reschedule_ipi (20,202,020 samples, 0.07%)</title><rect x="985.2" y="837" width="1.0" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="988.24" y="847.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="543.6" y="741" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="546.61" y="751.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="234.0" y="869" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="237.01" y="879.5" ></text>
+</g>
+<g >
+<title>__do_softirq (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="549" width="1.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1033.32" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.07%)</title><rect x="133.8" y="597" width="1.0" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="136.84" y="607.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="529.9" y="677" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="532.95" y="687.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.03%)</title><rect x="455.7" y="741" width="0.5" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="458.73" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="456.2" y="821" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="459.19" y="831.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.07%)</title><rect x="372.4" y="629" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="375.42" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (40,404,040 samples, 0.13%)</title><rect x="386.5" y="693" width="1.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="389.53" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="470.3" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="473.30" y="799.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="605.5" y="565" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="608.53" y="575.5" ></text>
+</g>
+<g >
+<title>mas_store_prealloc (10,101,010 samples, 0.03%)</title><rect x="1367.2" y="741" width="0.5" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1370.24" y="751.5" ></text>
+</g>
+<g >
+<title>xfd_validate_state (10,101,010 samples, 0.03%)</title><rect x="272.3" y="597" width="0.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="275.25" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (20,202,020 samples, 0.07%)</title><rect x="583.2" y="645" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="586.22" y="655.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="717.5" y="693" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="720.53" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="501.3" y="565" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="504.26" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.07%)</title><rect x="108.3" y="725" width="1.0" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="111.34" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="392.4" y="725" width="1.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="395.45" y="735.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="241.3" y="677" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="244.29" y="687.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (40,404,040 samples, 0.13%)</title><rect x="1360.9" y="741" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1363.86" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="107.0" y="389" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="109.98" y="399.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="581" width="3.2" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1038.32" y="591.5" ></text>
+</g>
+<g >
+<title>__nf_ct_delete_from_lists (10,101,010 samples, 0.03%)</title><rect x="1038.5" y="629" width="0.5" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="1041.51" y="639.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="558.2" y="645" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="561.18" y="655.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="565.5" y="549" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="568.46" y="559.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.13%)</title><rect x="473.5" y="709" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="476.49" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (616,161,610 samples, 2.01%)</title><rect x="723.0" y="885" width="27.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="725.99" y="895.5" >d..</text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="238.1" y="853" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="241.10" y="863.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="682.0" y="917" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="685.02" y="927.5" ></text>
+</g>
+<g >
+<title>mktime (10,101,010 samples, 0.03%)</title><rect x="529.5" y="805" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="532.49" y="815.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.03%)</title><rect x="326.0" y="677" width="0.4" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="328.97" y="687.5" ></text>
+</g>
+<g >
+<title>folio_alloc (20,202,020 samples, 0.07%)</title><rect x="347.4" y="565" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="350.37" y="575.5" ></text>
+</g>
+<g >
+<title>json_object_new_string (10,101,010 samples, 0.03%)</title><rect x="1348.6" y="901" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1351.57" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (151,515,150 samples, 0.49%)</title><rect x="167.1" y="581" width="6.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="170.08" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="464.4" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="467.38" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_ext_determine_insert_hole (10,101,010 samples, 0.03%)</title><rect x="634.2" y="677" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="637.21" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (737,373,730 samples, 2.41%)</title><rect x="47.3" y="1061" width="33.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="50.33" y="1071.5" >[l..</text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="471.2" y="773" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="474.21" y="783.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.07%)</title><rect x="518.6" y="629" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="521.56" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="636.5" y="837" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="639.49" y="847.5" ></text>
+</g>
+<g >
+<title>clear_inode (10,101,010 samples, 0.03%)</title><rect x="606.4" y="581" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="609.44" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_es_remove_extent (10,101,010 samples, 0.03%)</title><rect x="206.2" y="629" width="0.5" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="209.23" y="639.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="240.4" y="597" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="243.38" y="607.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.07%)</title><rect x="535.0" y="709" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="537.96" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="240.8" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="243.83" y="767.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="519.9" y="581" width="0.5" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="522.93" y="591.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="224.4" y="709" width="0.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="227.44" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (30,303,030 samples, 0.10%)</title><rect x="1377.7" y="949" width="1.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1380.71" y="959.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="109.3" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="112.25" y="719.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (20,202,020 samples, 0.07%)</title><rect x="757.1" y="869" width="1.0" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="760.14" y="879.5" ></text>
+</g>
+<g >
+<title>__do_sys_brk (10,101,010 samples, 0.03%)</title><rect x="139.8" y="645" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="142.76" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (1,797,979,780 samples, 5.87%)</title><rect x="100.1" y="837" width="81.1" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="103.15" y="847.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="558.6" y="661" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="561.63" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="427.5" y="661" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="430.51" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="52.3" y="837" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="55.34" y="847.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="636.5" y="741" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="639.49" y="751.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="386.5" y="709" width="1.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="389.53" y="719.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.07%)</title><rect x="383.8" y="757" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="386.80" y="767.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (20,202,020 samples, 0.07%)</title><rect x="242.7" y="837" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="245.66" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="369.7" y="821" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="372.68" y="831.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="427.5" y="693" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="430.51" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (60,606,060 samples, 0.20%)</title><rect x="316.0" y="597" width="2.7" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="318.96" y="607.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.03%)</title><rect x="1334.9" y="805" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1337.91" y="815.5" ></text>
+</g>
+<g >
+<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="984.8" y="805" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="987.79" y="815.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="438.0" y="549" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="440.98" y="559.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="650.1" y="709" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="653.15" y="719.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="214.0" y="725" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="216.97" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.07%)</title><rect x="473.9" y="629" width="1.0" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="476.95" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="292.7" y="757" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="295.74" y="767.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (20,202,020 samples, 0.07%)</title><rect x="313.2" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="316.23" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="600.5" y="533" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="603.52" y="543.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (30,303,030 samples, 0.10%)</title><rect x="1385.9" y="485" width="1.4" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1388.90" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="268.2" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="271.15" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="253.1" y="773" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="256.13" y="783.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="1373.2" y="837" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1376.15" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.36%)</title><rect x="22.3" y="901" width="5.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="25.29" y="911.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="394.7" y="709" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="397.72" y="719.5" ></text>
+</g>
+<g >
+<title>inet_recvmsg (20,202,020 samples, 0.07%)</title><rect x="1374.5" y="741" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1377.52" y="751.5" ></text>
+</g>
+<g >
+<title>do_wp_page (10,101,010 samples, 0.03%)</title><rect x="649.2" y="597" width="0.5" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="652.23" y="607.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="405.7" y="517" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="408.65" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="537.2" y="805" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="540.23" y="815.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.03%)</title><rect x="487.1" y="645" width="0.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="490.15" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.10%)</title><rect x="122.0" y="565" width="1.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="125.00" y="575.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (20,202,020 samples, 0.07%)</title><rect x="1044.0" y="965" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1046.98" y="975.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (161,616,160 samples, 0.53%)</title><rect x="184.8" y="741" width="7.3" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="187.83" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_v6_syn_recv_sock (10,101,010 samples, 0.03%)</title><rect x="1383.6" y="309" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1386.63" y="319.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.07%)</title><rect x="568.6" y="613" width="1.0" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="571.65" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="672.5" y="789" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="675.45" y="799.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="405.7" y="613" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="408.65" y="623.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (30,303,030 samples, 0.10%)</title><rect x="93.8" y="805" width="1.3" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="96.77" y="815.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="672.5" y="805" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="675.45" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_connect (90,909,090 samples, 0.30%)</title><rect x="1385.4" y="821" width="4.1" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1388.45" y="831.5" ></text>
+</g>
+<g >
+<title>__default_morecore (10,101,010 samples, 0.03%)</title><rect x="1057.2" y="933" width="0.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1060.18" y="943.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (141,414,140 samples, 0.46%)</title><rect x="447.1" y="773" width="6.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="450.08" y="783.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="641.9" y="677" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="644.95" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="669.7" y="677" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="672.72" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="538.6" y="821" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="541.60" y="831.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="674.3" y="789" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="677.28" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="402.0" y="693" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="405.01" y="703.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="329.2" y="725" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="332.16" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="445.3" y="789" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="448.26" y="799.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="709" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1386.17" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="242.2" y="565" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="245.20" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.10%)</title><rect x="495.8" y="661" width="1.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="498.80" y="671.5" ></text>
+</g>
+<g >
+<title>memcg_list_lru_alloc (10,101,010 samples, 0.03%)</title><rect x="683.8" y="725" width="0.5" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="686.84" y="735.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="261" width="0.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1030.58" y="271.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="346.0" y="677" width="0.5" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="349.01" y="687.5" ></text>
+</g>
+<g >
+<title>brk (10,101,010 samples, 0.03%)</title><rect x="139.8" y="725" width="0.4" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="142.76" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="407.5" y="709" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="410.47" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.10%)</title><rect x="300.0" y="773" width="1.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="303.02" y="783.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.07%)</title><rect x="325.1" y="677" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="328.06" y="687.5" ></text>
+</g>
+<g >
+<title>wait_consider_task (10,101,010 samples, 0.03%)</title><rect x="754.4" y="773" width="0.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="757.41" y="783.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.03%)</title><rect x="292.7" y="709" width="0.5" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="295.74" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,050,505,030 samples, 6.70%)</title><rect x="99.7" y="853" width="92.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="102.69" y="863.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>__ext4_new_inode (20,202,020 samples, 0.07%)</title><rect x="685.7" y="789" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="688.66" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="397.0" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="400.00" y="767.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.03%)</title><rect x="225.8" y="645" width="0.5" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="228.81" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_superblock_csum_set (10,101,010 samples, 0.03%)</title><rect x="204.0" y="645" width="0.4" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" />
+<text x="206.96" y="655.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (40,404,040 samples, 0.13%)</title><rect x="628.3" y="629" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="631.29" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="233.1" y="693" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="236.09" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="527.7" y="677" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="530.67" y="687.5" ></text>
+</g>
+<g >
+<title>bio_alloc_bioset (10,101,010 samples, 0.03%)</title><rect x="612.8" y="485" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="615.81" y="495.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="12.7" y="981" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="15.73" y="991.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="636.0" y="773" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="639.03" y="783.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="700.2" y="629" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="703.23" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="604.2" y="725" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="607.16" y="735.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="454.8" y="789" width="0.5" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="457.82" y="799.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="576.8" y="613" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="579.84" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="650.1" y="725" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="653.15" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="279.5" y="837" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="282.53" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="49.2" y="821" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="52.16" y="831.5" ></text>
+</g>
+<g >
+<title>d_same_name (10,101,010 samples, 0.03%)</title><rect x="617.8" y="709" width="0.5" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="620.82" y="719.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="521.8" y="565" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="524.75" y="575.5" ></text>
+</g>
+<g >
+<title>net_rx_action (40,404,040 samples, 0.13%)</title><rect x="1040.3" y="581" width="1.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1043.33" y="591.5" ></text>
+</g>
+<g >
+<title>d_delete (10,101,010 samples, 0.03%)</title><rect x="114.7" y="629" width="0.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="117.72" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="195.3" y="677" width="0.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="198.31" y="687.5" ></text>
+</g>
+<g >
+<title>d_instantiate_new (20,202,020 samples, 0.07%)</title><rect x="71.9" y="853" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="74.92" y="863.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.03%)</title><rect x="627.4" y="645" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="630.38" y="655.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="646.5" y="661" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="649.50" y="671.5" ></text>
+</g>
+<g >
+<title>ip_output (10,101,010 samples, 0.03%)</title><rect x="11.8" y="693" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="14.82" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="64.6" y="805" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="67.64" y="815.5" ></text>
+</g>
+<g >
+<title>wait_task_zombie (10,101,010 samples, 0.03%)</title><rect x="754.4" y="757" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="757.41" y="767.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="472.6" y="533" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="475.58" y="543.5" ></text>
+</g>
+<g >
+<title>__lookup_mnt (10,101,010 samples, 0.03%)</title><rect x="179.4" y="613" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="182.37" y="623.5" ></text>
+</g>
+<g >
+<title>security_inode_alloc (10,101,010 samples, 0.03%)</title><rect x="567.3" y="613" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="570.28" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="445.7" y="757" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="448.72" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.13%)</title><rect x="534.5" y="773" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="537.50" y="783.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="699.8" y="693" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="702.77" y="703.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="159.8" y="597" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="162.79" y="607.5" ></text>
+</g>
+<g >
+<title>rmdir (60,606,060 samples, 0.20%)</title><rect x="226.3" y="853" width="2.7" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="229.27" y="863.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="654.2" y="693" width="0.5" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="657.24" y="703.5" ></text>
+</g>
+<g >
+<title>build_open_flags (10,101,010 samples, 0.03%)</title><rect x="561.8" y="773" width="0.5" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="564.82" y="783.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="572.3" y="645" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="575.29" y="655.5" ></text>
+</g>
+<g >
+<title>do_open (20,202,020 samples, 0.07%)</title><rect x="666.5" y="677" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="669.54" y="687.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (60,606,060 samples, 0.20%)</title><rect x="746.7" y="757" width="2.7" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="749.67" y="767.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (20,202,020 samples, 0.07%)</title><rect x="601.4" y="629" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="604.43" y="639.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="353.7" y="581" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="356.75" y="591.5" ></text>
+</g>
+<g >
+<title>resolve_normal_ct (10,101,010 samples, 0.03%)</title><rect x="1039.4" y="677" width="0.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1042.42" y="687.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (10,101,010 samples, 0.03%)</title><rect x="752.1" y="565" width="0.5" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="755.13" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (535,353,530 samples, 1.75%)</title><rect x="986.2" y="853" width="24.1" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="989.15" y="863.5" >[..</text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="238.6" y="789" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="241.56" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="167.1" y="501" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="170.08" y="511.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.03%)</title><rect x="190.8" y="549" width="0.4" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="193.75" y="559.5" ></text>
+</g>
+<g >
+<title>kmalloc_reserve (10,101,010 samples, 0.03%)</title><rect x="1043.1" y="773" width="0.4" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1046.06" y="783.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="394.3" y="597" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="397.27" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="300.0" y="885" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="303.02" y="895.5" ></text>
+</g>
+<g >
+<title>__inode_attach_wb (20,202,020 samples, 0.07%)</title><rect x="628.3" y="613" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="631.29" y="623.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="135.7" y="565" width="0.4" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="138.66" y="575.5" ></text>
+</g>
+<g >
+<title>__fstat64 (10,101,010 samples, 0.03%)</title><rect x="333.7" y="821" width="0.5" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="336.71" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="537.2" y="789" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="540.23" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="479.9" y="741" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="482.86" y="751.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="489.4" y="581" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="492.43" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (20,202,020 samples, 0.07%)</title><rect x="607.3" y="597" width="1.0" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="610.35" y="607.5" ></text>
+</g>
+<g >
+<title>__sbrk (10,101,010 samples, 0.03%)</title><rect x="139.8" y="741" width="0.4" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="142.76" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="488.1" y="725" width="3.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="491.06" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="546.8" y="533" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="549.79" y="543.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="627.4" y="549" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="630.38" y="559.5" ></text>
+</g>
+<g >
+<title>link (161,616,160 samples, 0.53%)</title><rect x="324.6" y="821" width="7.3" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="327.61" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="645.6" y="805" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="648.59" y="815.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="450.3" y="325" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="453.27" y="335.5" ></text>
+</g>
+<g >
+<title>ext4_try_merge_freed_extent.part.0 (10,101,010 samples, 0.03%)</title><rect x="359.2" y="485" width="0.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="362.21" y="495.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_commit_charge (20,202,020 samples, 0.07%)</title><rect x="998.4" y="709" width="1.0" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="1001.45" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="533.1" y="821" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="536.13" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="214.4" y="837" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="217.43" y="847.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="642.9" y="629" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="645.86" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.03%)</title><rect x="226.7" y="725" width="0.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="229.72" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="427.5" y="709" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="430.51" y="719.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="73.7" y="741" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="76.74" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (20,202,020 samples, 0.07%)</title><rect x="226.3" y="741" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="229.27" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="638.3" y="725" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="641.31" y="735.5" ></text>
+</g>
+<g >
+<title>__pte_offset_map_lock (10,101,010 samples, 0.03%)</title><rect x="766.2" y="661" width="0.5" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="769.25" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="238.1" y="837" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="241.10" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="358.8" y="501" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="361.76" y="511.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (80,808,080 samples, 0.26%)</title><rect x="741.2" y="709" width="3.6" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="744.20" y="719.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_handle_packet (10,101,010 samples, 0.03%)</title><rect x="1038.5" y="677" width="0.5" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1041.51" y="687.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (20,202,020 samples, 0.07%)</title><rect x="1380.0" y="437" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1382.98" y="447.5" ></text>
+</g>
+<g >
+<title>rmqueue (10,101,010 samples, 0.03%)</title><rect x="1053.5" y="757" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1056.54" y="767.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="217.6" y="597" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="220.61" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="532.2" y="629" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="535.22" y="639.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="204.9" y="613" width="0.4" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="207.87" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_rename (70,707,070 samples, 0.23%)</title><rect x="434.3" y="661" width="3.2" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="437.34" y="671.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="565" width="4.1" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1029.22" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg_locked (10,101,010 samples, 0.03%)</title><rect x="1375.0" y="709" width="0.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1377.98" y="719.5" ></text>
+</g>
+<g >
+<title>_copy_to_iter (303,030,300 samples, 0.99%)</title><rect x="733.0" y="773" width="13.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="736.01" y="783.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (10,101,010 samples, 0.03%)</title><rect x="610.5" y="533" width="0.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="613.53" y="543.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="489.9" y="597" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="492.88" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="423.9" y="693" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="426.86" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_write (40,404,040 samples, 0.13%)</title><rect x="44.1" y="789" width="1.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="47.15" y="799.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="300.5" y="645" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="303.48" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="47.3" y="997" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="50.33" y="1007.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="104.2" y="565" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="107.25" y="575.5" ></text>
+</g>
+<g >
+<title>rename (121,212,120 samples, 0.40%)</title><rect x="432.5" y="789" width="5.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="435.51" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="391.1" y="805" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="394.08" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="645.6" y="789" width="1.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="648.59" y="799.5" ></text>
+</g>
+<g >
+<title>scsi_alloc_sgtables (10,101,010 samples, 0.03%)</title><rect x="552.7" y="309" width="0.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="555.71" y="319.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="440.7" y="757" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="443.71" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.13%)</title><rect x="484.9" y="677" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="487.87" y="687.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.03%)</title><rect x="653.3" y="645" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="656.33" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="398.4" y="789" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="401.37" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="495.3" y="693" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="498.34" y="703.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.03%)</title><rect x="340.1" y="677" width="0.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="343.09" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="402.5" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="405.46" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="410.7" y="613" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="413.66" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (252,525,250 samples, 0.82%)</title><rect x="586.4" y="805" width="11.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="589.40" y="815.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="490.8" y="581" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="493.79" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.03%)</title><rect x="459.8" y="565" width="0.5" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="462.83" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="526.8" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="529.76" y="751.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="535.4" y="549" width="0.5" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="538.41" y="559.5" ></text>
+</g>
+<g >
+<title>__do_softirq (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="533" width="1.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1378.43" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (232,323,230 samples, 0.76%)</title><rect x="481.7" y="853" width="10.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="484.69" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="128.4" y="741" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="131.38" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="529.9" y="709" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="532.95" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (151,515,150 samples, 0.49%)</title><rect x="626.9" y="693" width="6.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="629.93" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="238.1" y="789" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="241.10" y="799.5" ></text>
+</g>
+<g >
+<title>fscrypt_prepare_new_inode (10,101,010 samples, 0.03%)</title><rect x="311.4" y="661" width="0.5" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="314.41" y="671.5" ></text>
+</g>
+<g >
+<title>skb_do_copy_data_nocache (60,606,060 samples, 0.20%)</title><rect x="1023.5" y="773" width="2.7" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1026.49" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (20,202,020 samples, 0.07%)</title><rect x="193.5" y="725" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="196.48" y="735.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.07%)</title><rect x="285.9" y="741" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="288.91" y="751.5" ></text>
+</g>
+<g >
+<title>rw_verify_area (20,202,020 samples, 0.07%)</title><rect x="749.9" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="752.85" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="471.7" y="693" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="474.67" y="703.5" ></text>
+</g>
+<g >
+<title>git_repository_init_ext (2,777,777,750 samples, 9.07%)</title><rect x="533.1" y="901" width="125.2" height="15.0" fill="rgb(0,235,192)" rx="2" ry="2" />
+<text x="536.13" y="911.5" >git_repository_..</text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="580.0" y="677" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="583.03" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="418.4" y="613" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="421.40" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (10,101,010 samples, 0.03%)</title><rect x="560.0" y="597" width="0.5" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="563.00" y="607.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="27.3" y="965" width="0.5" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="30.30" y="975.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="139.8" y="709" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="142.76" y="719.5" ></text>
+</g>
+<g >
+<title>dd_bio_merge (10,101,010 samples, 0.03%)</title><rect x="553.2" y="405" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="556.17" y="415.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (10,101,010 samples, 0.03%)</title><rect x="524.9" y="693" width="0.5" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="527.94" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="100.1" y="661" width="1.0" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="103.15" y="671.5" ></text>
+</g>
+<g >
+<title>read (20,202,020 samples, 0.07%)</title><rect x="659.7" y="773" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="662.71" y="783.5" ></text>
+</g>
+<g >
+<title>getdents64 (40,404,040 samples, 0.13%)</title><rect x="102.0" y="741" width="1.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="104.97" y="751.5" ></text>
+</g>
+<g >
+<title>net_rx_action (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="517" width="1.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1033.32" y="527.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="540.0" y="677" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="542.96" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_match (10,101,010 samples, 0.03%)</title><rect x="555.4" y="597" width="0.5" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="558.44" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.03%)</title><rect x="532.2" y="677" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="535.22" y="687.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="240.4" y="645" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="243.38" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="112.9" y="549" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="115.90" y="559.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="83.3" y="789" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="86.30" y="799.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="585.5" y="645" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="588.49" y="655.5" ></text>
+</g>
+<g >
+<title>opendir (10,101,010 samples, 0.03%)</title><rect x="234.0" y="917" width="0.5" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="237.01" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.03%)</title><rect x="627.8" y="645" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="630.84" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (30,303,030 samples, 0.10%)</title><rect x="130.7" y="645" width="1.3" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="133.65" y="655.5" ></text>
+</g>
+<g >
+<title>__strftime_l (10,101,010 samples, 0.03%)</title><rect x="1377.3" y="965" width="0.4" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="1380.25" y="975.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="637.9" y="677" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="640.85" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="215.3" y="837" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="218.34" y="847.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="390.2" y="629" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="393.17" y="639.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="331.4" y="613" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="334.44" y="623.5" ></text>
+</g>
+<g >
+<title>kfree (10,101,010 samples, 0.03%)</title><rect x="190.8" y="501" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="193.75" y="511.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (20,202,020 samples, 0.07%)</title><rect x="535.0" y="677" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="537.96" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (20,202,020 samples, 0.07%)</title><rect x="1013.9" y="261" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="1016.93" y="271.5" ></text>
+</g>
+<g >
+<title>filename_lookup (40,404,040 samples, 0.13%)</title><rect x="86.0" y="869" width="1.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="89.03" y="879.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="253.1" y="709" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="256.13" y="719.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="95.6" y="789" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="98.60" y="799.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="377.9" y="629" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="380.88" y="639.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (40,404,040 samples, 0.13%)</title><rect x="463.9" y="869" width="1.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="466.93" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="455.7" y="805" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="458.73" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (212,121,210 samples, 0.69%)</title><rect x="509.0" y="645" width="9.6" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="512.00" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.46%)</title><rect x="658.3" y="821" width="6.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="661.34" y="831.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="240.4" y="661" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="243.38" y="671.5" ></text>
+</g>
+<g >
+<title>do_faccessat (101,010,100 samples, 0.33%)</title><rect x="81.5" y="981" width="4.5" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="84.48" y="991.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.43%)</title><rect x="110.2" y="725" width="5.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="113.16" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (30,303,030 samples, 0.10%)</title><rect x="458.9" y="597" width="1.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="461.92" y="607.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="162.5" y="613" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="165.52" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.07%)</title><rect x="536.3" y="709" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="539.32" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.03%)</title><rect x="685.7" y="773" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="688.66" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="192.1" y="837" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="195.12" y="847.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="423.4" y="677" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="426.41" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="489.0" y="677" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="491.97" y="687.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.03%)</title><rect x="343.3" y="789" width="0.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="346.28" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="65.5" y="789" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="68.55" y="799.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="325.5" y="645" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="328.52" y="655.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="351.9" y="645" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="354.93" y="655.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (60,606,060 samples, 0.20%)</title><rect x="1039.9" y="709" width="2.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1042.88" y="719.5" ></text>
+</g>
+<g >
+<title>git_repository_config_snapshot (191,919,190 samples, 0.63%)</title><rect x="414.8" y="805" width="8.6" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="417.76" y="815.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.07%)</title><rect x="472.1" y="629" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="475.12" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="376.1" y="677" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="379.06" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="533.1" y="837" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="536.13" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="300.0" y="741" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="303.02" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="510.8" y="533" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="513.82" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="290.0" y="805" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="293.01" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_bpf_clone (10,101,010 samples, 0.03%)</title><rect x="1035.3" y="277" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1038.32" y="287.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (30,303,030 samples, 0.10%)</title><rect x="389.7" y="677" width="1.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="392.72" y="687.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (10,101,010 samples, 0.03%)</title><rect x="11.8" y="613" width="0.5" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="14.82" y="623.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.03%)</title><rect x="1334.9" y="789" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1337.91" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="585.9" y="677" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="588.95" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="305.9" y="725" width="1.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="308.94" y="735.5" ></text>
+</g>
+<g >
+<title>d_delete (10,101,010 samples, 0.03%)</title><rect x="573.2" y="741" width="0.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="576.20" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="471.7" y="741" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="474.67" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_es_remove_extent (10,101,010 samples, 0.03%)</title><rect x="236.7" y="693" width="0.5" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="239.74" y="703.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (70,707,070 samples, 0.23%)</title><rect x="270.4" y="725" width="3.2" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="273.43" y="735.5" ></text>
+</g>
+<g >
+<title>inet_create.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="1381.8" y="853" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1384.80" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (121,212,120 samples, 0.40%)</title><rect x="675.2" y="869" width="5.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="678.19" y="879.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (60,606,060 samples, 0.20%)</title><rect x="178.5" y="741" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="181.46" y="751.5" ></text>
+</g>
+<g >
+<title>should_failslab.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="466.2" y="613" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="469.21" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="1381.8" y="949" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1384.80" y="959.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="333.7" y="773" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="336.71" y="783.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_commit_charge (20,202,020 samples, 0.07%)</title><rect x="1051.7" y="821" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="1054.72" y="831.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="670.6" y="597" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="673.63" y="607.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.03%)</title><rect x="96.1" y="709" width="0.4" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="99.05" y="719.5" ></text>
+</g>
+<g >
+<title>should_failslab.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="108.8" y="613" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="111.80" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="642.9" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="645.86" y="799.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="606.9" y="581" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="609.89" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (20,202,020 samples, 0.07%)</title><rect x="113.4" y="597" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="116.35" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (20,202,020 samples, 0.07%)</title><rect x="228.1" y="613" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="231.09" y="623.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.03%)</title><rect x="683.8" y="757" width="0.5" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="686.84" y="767.5" ></text>
+</g>
+<g >
+<title>inode_permission (20,202,020 samples, 0.07%)</title><rect x="671.5" y="661" width="1.0" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="674.54" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="599.2" y="773" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="602.15" y="783.5" ></text>
+</g>
+<g >
+<title>do_filp_open (30,303,030 samples, 0.10%)</title><rect x="382.4" y="661" width="1.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="385.43" y="671.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (20,202,020 samples, 0.07%)</title><rect x="460.7" y="533" width="1.0" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="463.74" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.03%)</title><rect x="396.5" y="613" width="0.5" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="399.55" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="467.1" y="837" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="470.12" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="453.9" y="773" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="456.91" y="783.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (30,303,030 samples, 0.10%)</title><rect x="137.9" y="821" width="1.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="140.94" y="831.5" ></text>
+</g>
+<g >
+<title>__poll (20,202,020 samples, 0.07%)</title><rect x="1370.4" y="981" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1373.42" y="991.5" ></text>
+</g>
+<g >
+<title>git_object_peel (70,707,070 samples, 0.23%)</title><rect x="296.8" y="933" width="3.2" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="299.84" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.07%)</title><rect x="161.6" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="164.61" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.03%)</title><rect x="140.7" y="693" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="143.67" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="476.2" y="821" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="479.22" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.07%)</title><rect x="536.3" y="757" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="539.32" y="767.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (20,202,020 samples, 0.07%)</title><rect x="582.3" y="613" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="585.31" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (10,101,010 samples, 0.03%)</title><rect x="399.3" y="709" width="0.4" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="402.28" y="719.5" ></text>
+</g>
+<g >
+<title>__newlocale (10,101,010 samples, 0.03%)</title><rect x="1372.7" y="869" width="0.5" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1375.70" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (90,909,090 samples, 0.30%)</title><rect x="275.4" y="773" width="4.1" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="278.44" y="783.5" ></text>
+</g>
+<g >
+<title>d_alloc (20,202,020 samples, 0.07%)</title><rect x="270.4" y="693" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="273.43" y="703.5" ></text>
+</g>
+<g >
+<title>libgit_clone_to_tmp (8,535,353,450 samples, 27.88%)</title><rect x="303.7" y="965" width="384.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="306.67" y="975.5" >libgit_clone_to_tmp</text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (10,101,010 samples, 0.03%)</title><rect x="364.2" y="517" width="0.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="367.22" y="527.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.03%)</title><rect x="492.2" y="693" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="495.16" y="703.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="982.5" y="853" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="985.51" y="863.5" ></text>
+</g>
+<g >
+<title>symlink (30,303,030 samples, 0.10%)</title><rect x="570.0" y="853" width="1.4" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="573.01" y="863.5" ></text>
+</g>
+<g >
+<title>from_kgid (10,101,010 samples, 0.03%)</title><rect x="531.3" y="725" width="0.5" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="534.31" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="464.4" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="467.38" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_io_submit (10,101,010 samples, 0.03%)</title><rect x="553.2" y="533" width="0.4" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="556.17" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.10%)</title><rect x="669.7" y="629" width="1.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="672.72" y="639.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (20,202,020 samples, 0.07%)</title><rect x="335.5" y="661" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="338.54" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="755.8" y="917" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="758.77" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="227.2" y="661" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="230.18" y="671.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (10,101,010 samples, 0.03%)</title><rect x="610.5" y="517" width="0.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="613.53" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="298.2" y="549" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="301.20" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="613.7" y="629" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="616.72" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (10,101,010 samples, 0.03%)</title><rect x="173.5" y="517" width="0.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="176.45" y="527.5" ></text>
+</g>
+<g >
+<title>jsonrpc_notification_create (20,202,020 samples, 0.07%)</title><rect x="1348.1" y="981" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1351.11" y="991.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.03%)</title><rect x="118.8" y="629" width="0.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="121.82" y="639.5" ></text>
+</g>
+<g >
+<title>cmd_dispatcher_handle_internal (10,101,010 samples, 0.03%)</title><rect x="1371.3" y="949" width="0.5" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="1374.33" y="959.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.03%)</title><rect x="479.0" y="613" width="0.4" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="481.95" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="41.0" y="837" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="43.96" y="847.5" ></text>
+</g>
+<g >
+<title>filldir64 (10,101,010 samples, 0.03%)</title><rect x="476.2" y="581" width="0.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="479.22" y="591.5" ></text>
+</g>
+<g >
+<title>elv_rqhash_find (10,101,010 samples, 0.03%)</title><rect x="435.2" y="373" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="438.25" y="383.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (60,606,060 samples, 0.20%)</title><rect x="226.3" y="789" width="2.7" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="229.27" y="799.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="407.9" y="773" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="410.93" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (30,303,030 samples, 0.10%)</title><rect x="10.9" y="885" width="1.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="13.91" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="272.7" y="645" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="275.71" y="655.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="755.8" y="821" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="758.77" y="831.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="418.4" y="597" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="421.40" y="607.5" ></text>
+</g>
+<g >
+<title>memcmp (10,101,010 samples, 0.03%)</title><rect x="341.9" y="597" width="0.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="344.91" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="250.9" y="693" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="253.85" y="703.5" ></text>
+</g>
+<g >
+<title>cfree (40,404,040 samples, 0.13%)</title><rect x="93.3" y="853" width="1.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="96.32" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="80.1" y="1013" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="83.12" y="1023.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (20,202,020 samples, 0.07%)</title><rect x="359.7" y="501" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="362.67" y="511.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="534.0" y="725" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="537.04" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (10,101,010 samples, 0.03%)</title><rect x="330.5" y="597" width="0.5" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="333.53" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="423.9" y="677" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="426.86" y="687.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (161,616,160 samples, 0.53%)</title><rect x="562.3" y="773" width="7.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="565.27" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_wait4 (40,404,040 samples, 0.13%)</title><rect x="754.0" y="853" width="1.8" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="756.95" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="640.6" y="741" width="1.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="643.58" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (20,202,020 samples, 0.07%)</title><rect x="535.0" y="629" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="537.96" y="639.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="460.7" y="389" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="463.74" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="105.2" y="517" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="108.16" y="527.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="341.5" y="709" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="344.45" y="719.5" ></text>
+</g>
+<g >
+<title>add_transaction_credits (10,101,010 samples, 0.03%)</title><rect x="565.5" y="613" width="0.4" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="568.46" y="623.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="85.1" y="869" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="88.12" y="879.5" ></text>
+</g>
+<g >
+<title>lh_table_lookup_entry (10,101,010 samples, 0.03%)</title><rect x="1371.8" y="869" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1374.79" y="879.5" ></text>
+</g>
+<g >
+<title>wb_io_lists_populated (10,101,010 samples, 0.03%)</title><rect x="444.4" y="549" width="0.4" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="447.35" y="559.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.10%)</title><rect x="387.0" y="645" width="1.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="389.98" y="655.5" ></text>
+</g>
+<g >
+<title>process_backlog (40,404,040 samples, 0.13%)</title><rect x="1385.9" y="549" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1388.90" y="559.5" ></text>
+</g>
+<g >
+<title>evict (30,303,030 samples, 0.10%)</title><rect x="571.8" y="741" width="1.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="574.83" y="751.5" ></text>
+</g>
+<g >
+<title>dx_probe (10,101,010 samples, 0.03%)</title><rect x="684.7" y="741" width="0.5" height="15.0" fill="rgb(0,201,46)" rx="2" ry="2" />
+<text x="687.75" y="751.5" ></text>
+</g>
+<g >
+<title>log_entry_start (40,404,040 samples, 0.13%)</title><rect x="1377.3" y="997" width="1.8" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1380.25" y="1007.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (20,202,020 samples, 0.07%)</title><rect x="216.2" y="741" width="1.0" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="219.25" y="751.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.03%)</title><rect x="368.3" y="725" width="0.5" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="371.32" y="735.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="443.0" y="613" width="0.4" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="445.99" y="623.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="757" width="4.1" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1029.22" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (595,959,590 samples, 1.95%)</title><rect x="305.0" y="837" width="26.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="308.03" y="847.5" >[..</text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.03%)</title><rect x="680.2" y="597" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="683.19" y="607.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.03%)</title><rect x="338.3" y="693" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="341.27" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="598.7" y="805" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="601.70" y="815.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="468.5" y="677" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="471.48" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_chdir (40,404,040 samples, 0.13%)</title><rect x="86.0" y="901" width="1.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="89.03" y="911.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="495.8" y="725" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="498.80" y="735.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (101,010,100 samples, 0.33%)</title><rect x="1038.5" y="805" width="4.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1041.51" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="183.9" y="741" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="186.92" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.07%)</title><rect x="618.3" y="709" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="621.27" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="606.0" y="565" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="608.98" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (20,202,020 samples, 0.07%)</title><rect x="123.8" y="597" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="126.82" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="470.8" y="757" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="473.76" y="767.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="471.7" y="645" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="474.67" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (40,404,040 samples, 0.13%)</title><rect x="460.7" y="597" width="1.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="463.74" y="607.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="486.2" y="597" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="489.24" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (20,202,020 samples, 0.07%)</title><rect x="193.5" y="709" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="196.48" y="719.5" ></text>
+</g>
+<g >
+<title>ima_file_check (10,101,010 samples, 0.03%)</title><rect x="243.1" y="581" width="0.5" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="246.11" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (30,303,030 samples, 0.10%)</title><rect x="443.0" y="629" width="1.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="445.99" y="639.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="1010.7" y="741" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1013.74" y="751.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="1373.6" y="773" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1376.61" y="783.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="985.7" y="773" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="988.70" y="783.5" ></text>
+</g>
+<g >
+<title>post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="1022.6" y="677" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1025.58" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (50,505,050 samples, 0.16%)</title><rect x="209.0" y="565" width="2.2" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="211.96" y="575.5" ></text>
+</g>
+<g >
+<title>ipv4_conntrack_local (10,101,010 samples, 0.03%)</title><rect x="1030.3" y="181" width="0.5" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1033.32" y="191.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (20,202,020 samples, 0.07%)</title><rect x="228.1" y="565" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="231.09" y="575.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="111.1" y="645" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="114.08" y="655.5" ></text>
+</g>
+<g >
+<title>__fsnotify_inode_delete (10,101,010 samples, 0.03%)</title><rect x="111.5" y="581" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="114.53" y="591.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="641.5" y="725" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="644.49" y="735.5" ></text>
+</g>
+<g >
+<title>printbuf_memappend (10,101,010 samples, 0.03%)</title><rect x="1011.2" y="885" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1014.19" y="895.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (10,101,010 samples, 0.03%)</title><rect x="1376.3" y="277" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1379.34" y="287.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="71.0" y="853" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="74.01" y="863.5" ></text>
+</g>
+<g >
+<title>strerror_l (10,101,010 samples, 0.03%)</title><rect x="333.3" y="805" width="0.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="336.26" y="815.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="672.9" y="709" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="675.91" y="719.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.03%)</title><rect x="596.4" y="517" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="599.42" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="446.6" y="805" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="449.63" y="815.5" ></text>
+</g>
+<g >
+<title>file_update_time (10,101,010 samples, 0.03%)</title><rect x="41.0" y="757" width="0.4" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="43.96" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="137.5" y="693" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="140.48" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.03%)</title><rect x="501.3" y="549" width="0.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="504.26" y="559.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="299.1" y="805" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="302.11" y="815.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (10,101,010 samples, 0.03%)</title><rect x="1030.3" y="165" width="0.5" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1033.32" y="175.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (20,202,020 samples, 0.07%)</title><rect x="1028.5" y="277" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1031.50" y="287.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="504.0" y="661" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="507.00" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="585.9" y="741" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="588.95" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="570.9" y="629" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="573.92" y="639.5" ></text>
+</g>
+<g >
+<title>unmap_vmas (101,010,100 samples, 0.33%)</title><rect x="765.3" y="741" width="4.6" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="768.33" y="751.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="353.7" y="549" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="356.75" y="559.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="700.2" y="693" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="703.23" y="703.5" ></text>
+</g>
+<g >
+<title>[libcrypto.so.3] (10,101,010 samples, 0.03%)</title><rect x="639.2" y="757" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="642.22" y="767.5" ></text>
+</g>
+<g >
+<title>pipe_write (40,404,040 samples, 0.13%)</title><rect x="44.1" y="773" width="1.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="47.15" y="783.5" ></text>
+</g>
+<g >
+<title>ip_local_out (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="661" width="3.2" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1038.32" y="671.5" ></text>
+</g>
+<g >
+<title>block_write_end (20,202,020 samples, 0.07%)</title><rect x="426.6" y="565" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="429.60" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="553.6" y="437" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="556.62" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.03%)</title><rect x="546.3" y="597" width="0.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="549.34" y="607.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.03%)</title><rect x="473.9" y="581" width="0.5" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="476.95" y="591.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="495.3" y="661" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="498.34" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="379.7" y="581" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="382.70" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="480.3" y="645" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="483.32" y="655.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.03%)</title><rect x="368.3" y="693" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="371.32" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (40,404,040 samples, 0.13%)</title><rect x="15.9" y="997" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="18.92" y="1007.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (70,707,070 samples, 0.23%)</title><rect x="759.9" y="693" width="3.2" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="762.87" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="55.5" y="965" width="1.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="58.53" y="975.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="582.8" y="597" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="585.76" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.03%)</title><rect x="1346.3" y="757" width="0.4" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1349.29" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.03%)</title><rect x="467.1" y="789" width="0.5" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="470.12" y="799.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="596.0" y="389" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="598.97" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.03%)</title><rect x="459.8" y="549" width="0.5" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="462.83" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="357.4" y="517" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="360.39" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (40,404,040 samples, 0.13%)</title><rect x="686.6" y="789" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="689.57" y="799.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="397.5" y="645" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="400.46" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_bio_write_folio (10,101,010 samples, 0.03%)</title><rect x="596.4" y="485" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="599.42" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.07%)</title><rect x="214.4" y="821" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="217.43" y="831.5" ></text>
+</g>
+<g >
+<title>inflateInit2_ (10,101,010 samples, 0.03%)</title><rect x="249.9" y="789" width="0.5" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="252.94" y="799.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.03%)</title><rect x="650.1" y="613" width="0.5" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="653.15" y="623.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="751.2" y="853" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="754.22" y="863.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="341.0" y="709" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="344.00" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="147.5" y="645" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="150.50" y="655.5" ></text>
+</g>
+<g >
+<title>libjson_recv (60,606,060 samples, 0.20%)</title><rect x="1372.7" y="933" width="2.7" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1375.70" y="943.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="442.1" y="773" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="445.08" y="783.5" ></text>
+</g>
+<g >
+<title>unlink (40,404,040 samples, 0.13%)</title><rect x="389.3" y="805" width="1.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="392.26" y="815.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="426.1" y="693" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="429.14" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_superblock_csum_set (10,101,010 samples, 0.03%)</title><rect x="159.3" y="645" width="0.5" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" />
+<text x="162.34" y="655.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (40,404,040 samples, 0.13%)</title><rect x="130.2" y="677" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="133.20" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="451.6" y="485" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="454.64" y="495.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.03%)</title><rect x="1373.6" y="837" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1376.61" y="847.5" ></text>
+</g>
+<g >
+<title>git_reference_normalize_name (10,101,010 samples, 0.03%)</title><rect x="526.3" y="821" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="529.30" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (40,404,040 samples, 0.13%)</title><rect x="277.3" y="677" width="1.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="280.26" y="687.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.03%)</title><rect x="248.1" y="501" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="251.12" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="610.1" y="661" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="613.08" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="265.9" y="757" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="268.88" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="66.0" y="773" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="69.00" y="783.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.03%)</title><rect x="260.4" y="805" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="263.41" y="815.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.03%)</title><rect x="1381.8" y="773" width="0.5" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1384.80" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="285.5" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="288.45" y="735.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="621.0" y="661" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="624.01" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="290.0" y="869" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="293.01" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.03%)</title><rect x="643.3" y="581" width="0.5" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="646.32" y="591.5" ></text>
+</g>
+<g >
+<title>blk_cgroup_congested (30,303,030 samples, 0.10%)</title><rect x="1336.7" y="821" width="1.4" height="15.0" fill="rgb(0,235,192)" rx="2" ry="2" />
+<text x="1339.73" y="831.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (20,202,020 samples, 0.07%)</title><rect x="25.5" y="389" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="28.48" y="399.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.07%)</title><rect x="1343.1" y="805" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1346.10" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_faccessat2 (10,101,010 samples, 0.03%)</title><rect x="636.5" y="789" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="639.49" y="799.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.07%)</title><rect x="537.7" y="773" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="540.69" y="783.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.07%)</title><rect x="535.0" y="725" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="537.96" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="654.2" y="677" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="657.24" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="38.7" y="981" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="41.68" y="991.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (20,202,020 samples, 0.07%)</title><rect x="279.5" y="805" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="282.53" y="815.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.3.0] (424,242,420 samples, 1.39%)</title><rect x="1349.0" y="933" width="19.1" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1352.02" y="943.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="498.5" y="757" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="501.53" y="767.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="482.6" y="805" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="485.60" y="815.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.07%)</title><rect x="517.7" y="581" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="520.65" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="654.7" y="677" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="657.70" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (20,202,020 samples, 0.07%)</title><rect x="159.8" y="629" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="162.79" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="484.4" y="741" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="487.42" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (60,606,060 samples, 0.20%)</title><rect x="43.2" y="949" width="2.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="46.24" y="959.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (10,101,010 samples, 0.03%)</title><rect x="984.8" y="821" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="987.79" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="139.8" y="693" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="142.76" y="703.5" ></text>
+</g>
+<g >
+<title>cgroup_post_fork (10,101,010 samples, 0.03%)</title><rect x="690.2" y="789" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="693.21" y="799.5" ></text>
+</g>
+<g >
+<title>destroy_inode (20,202,020 samples, 0.07%)</title><rect x="201.2" y="677" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="204.22" y="687.5" ></text>
+</g>
+<g >
+<title>git_remote_update_tips (878,787,870 samples, 2.87%)</title><rect x="493.5" y="901" width="39.6" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="496.52" y="911.5" >git..</text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="377.9" y="613" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="380.88" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (30,303,030 samples, 0.10%)</title><rect x="365.1" y="517" width="1.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="368.13" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_journal_mode (10,101,010 samples, 0.03%)</title><rect x="125.2" y="613" width="0.4" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="128.19" y="623.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.03%)</title><rect x="177.1" y="613" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="180.09" y="623.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (60,606,060 samples, 0.20%)</title><rect x="428.4" y="773" width="2.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="431.42" y="783.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_free_hook (10,101,010 samples, 0.03%)</title><rect x="349.7" y="677" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="352.65" y="687.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="423.9" y="629" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="426.86" y="639.5" ></text>
+</g>
+<g >
+<title>__do_softirq (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="517" width="3.2" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1038.32" y="527.5" ></text>
+</g>
+<g >
+<title>ip_output (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="677" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1033.32" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.10%)</title><rect x="645.6" y="853" width="1.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="648.59" y="863.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.03%)</title><rect x="1378.6" y="773" width="0.5" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1381.62" y="783.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="519.9" y="517" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="522.93" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="489.0" y="693" width="1.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="491.97" y="703.5" ></text>
+</g>
+<g >
+<title>__default_morecore (10,101,010 samples, 0.03%)</title><rect x="139.8" y="757" width="0.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="142.76" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="256.3" y="789" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="259.31" y="799.5" ></text>
+</g>
+<g >
+<title>net_connect (202,020,200 samples, 0.66%)</title><rect x="1034.9" y="997" width="9.1" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1037.87" y="1007.5" ></text>
+</g>
+<g >
+<title>d_delete (10,101,010 samples, 0.03%)</title><rect x="103.8" y="613" width="0.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="106.79" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="509.0" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="512.00" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="490.8" y="645" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="493.79" y="655.5" ></text>
+</g>
+<g >
+<title>libjson_has (10,101,010 samples, 0.03%)</title><rect x="1371.8" y="901" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1374.79" y="911.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.03%)</title><rect x="700.2" y="597" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="703.23" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.26%)</title><rect x="423.9" y="757" width="3.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="426.86" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="214.4" y="869" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="217.43" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="456.2" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="459.19" y="799.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (50,505,050 samples, 0.16%)</title><rect x="450.7" y="565" width="2.3" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="453.73" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="411.1" y="757" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="414.12" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.07%)</title><rect x="249.0" y="565" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="252.03" y="575.5" ></text>
+</g>
+<g >
+<title>folio_add_lru (60,606,060 samples, 0.20%)</title><rect x="1005.7" y="709" width="2.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1008.73" y="719.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="657.4" y="741" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="660.43" y="751.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (20,202,020 samples, 0.07%)</title><rect x="452.1" y="549" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="455.09" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="368.3" y="789" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="371.32" y="799.5" ></text>
+</g>
+<g >
+<title>git_refdb_open (30,303,030 samples, 0.10%)</title><rect x="669.7" y="869" width="1.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="672.72" y="879.5" ></text>
+</g>
+<g >
+<title>__destroy_inode (30,303,030 samples, 0.10%)</title><rect x="111.5" y="597" width="1.4" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="114.53" y="607.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.03%)</title><rect x="264.5" y="709" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="267.51" y="719.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.03%)</title><rect x="752.1" y="613" width="0.5" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="755.13" y="623.5" ></text>
+</g>
+<g >
+<title>__legitimize_mnt (10,101,010 samples, 0.03%)</title><rect x="492.2" y="661" width="0.4" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="495.16" y="671.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (373,737,370 samples, 1.22%)</title><rect x="1350.4" y="885" width="16.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1353.39" y="895.5" ></text>
+</g>
+<g >
+<title>git_error_set (20,202,020 samples, 0.07%)</title><rect x="332.8" y="837" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="335.80" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (171,717,170 samples, 0.56%)</title><rect x="204.4" y="661" width="7.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="207.41" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="488.1" y="741" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="491.06" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="63.7" y="805" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="66.72" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="385.2" y="661" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="388.16" y="671.5" ></text>
+</g>
+<g >
+<title>copy_page_from_iter_atomic (10,101,010 samples, 0.03%)</title><rect x="276.8" y="677" width="0.5" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="279.80" y="687.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.03%)</title><rect x="543.2" y="501" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="546.15" y="511.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="548.6" y="469" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="551.61" y="479.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.03%)</title><rect x="78.3" y="917" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="81.29" y="927.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="507.6" y="581" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="510.64" y="591.5" ></text>
+</g>
+<g >
+<title>__fdget_pos (10,101,010 samples, 0.03%)</title><rect x="193.0" y="757" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="196.03" y="767.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="489.9" y="549" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="492.88" y="559.5" ></text>
+</g>
+<g >
+<title>d_instantiate_new (10,101,010 samples, 0.03%)</title><rect x="622.4" y="741" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="625.37" y="751.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="597.3" y="597" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="600.33" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="451.6" y="421" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="454.64" y="431.5" ></text>
+</g>
+<g >
+<title>__x64_sys_connect (181,818,180 samples, 0.59%)</title><rect x="1035.3" y="917" width="8.2" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1038.32" y="927.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="560.0" y="581" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="563.00" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.03%)</title><rect x="120.6" y="613" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="123.64" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (60,606,060 samples, 0.20%)</title><rect x="226.3" y="757" width="2.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="229.27" y="767.5" ></text>
+</g>
+<g >
+<title>dx_probe (10,101,010 samples, 0.03%)</title><rect x="234.9" y="725" width="0.5" height="15.0" fill="rgb(0,201,46)" rx="2" ry="2" />
+<text x="237.92" y="735.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.07%)</title><rect x="240.8" y="773" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="243.83" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="591.4" y="581" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="594.41" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="529.9" y="725" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="532.95" y="735.5" ></text>
+</g>
+<g >
+<title>__default_morecore (30,303,030 samples, 0.10%)</title><rect x="116.5" y="725" width="1.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="119.54" y="735.5" ></text>
+</g>
+<g >
+<title>end_bio_bh_io_sync (10,101,010 samples, 0.03%)</title><rect x="982.5" y="661" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="985.51" y="671.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (242,424,240 samples, 0.79%)</title><rect x="735.7" y="741" width="11.0" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="738.74" y="751.5" ></text>
+</g>
+<g >
+<title>to_shrink_list (10,101,010 samples, 0.03%)</title><rect x="212.6" y="661" width="0.5" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="215.61" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="518.6" y="709" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="521.56" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (10,101,010 samples, 0.03%)</title><rect x="447.5" y="597" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="450.54" y="607.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="607.3" y="533" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="610.35" y="543.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="97.9" y="869" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="100.87" y="879.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="1010.3" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1013.28" y="815.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (10,101,010 samples, 0.03%)</title><rect x="248.1" y="517" width="0.5" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="251.12" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="289.1" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="292.10" y="799.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="244.9" y="757" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="247.93" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="672.5" y="821" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="675.45" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="339.2" y="789" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="342.18" y="799.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.03%)</title><rect x="680.2" y="693" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="683.19" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="365.6" y="453" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="368.59" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="401.1" y="725" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="404.10" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="121.1" y="597" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="124.09" y="607.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_create_access (10,101,010 samples, 0.03%)</title><rect x="381.1" y="549" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="384.07" y="559.5" ></text>
+</g>
+<g >
+<title>do_filp_open (454,545,450 samples, 1.48%)</title><rect x="58.3" y="949" width="20.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="61.26" y="959.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="167.1" y="469" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="170.08" y="479.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="667.4" y="757" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="670.45" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="619.2" y="725" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="622.19" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (10,101,010 samples, 0.03%)</title><rect x="425.7" y="565" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="428.68" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mb_prefetch_fini (10,101,010 samples, 0.03%)</title><rect x="54.2" y="773" width="0.4" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="57.16" y="783.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.03%)</title><rect x="377.9" y="645" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="380.88" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="445.7" y="741" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="448.72" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.26%)</title><rect x="270.0" y="853" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="272.97" y="863.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="662.0" y="629" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="664.98" y="639.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="389" width="1.4" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1033.32" y="399.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="380.2" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="383.16" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="464.4" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="467.38" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="41.0" y="821" width="0.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="43.96" y="831.5" ></text>
+</g>
+<g >
+<title>lockref_put_return (10,101,010 samples, 0.03%)</title><rect x="328.7" y="725" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="331.71" y="735.5" ></text>
+</g>
+<g >
+<title>git_reference_normalize_name (10,101,010 samples, 0.03%)</title><rect x="475.8" y="837" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="478.77" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (30,303,030 samples, 0.10%)</title><rect x="65.5" y="853" width="1.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="68.55" y="863.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (10,101,010 samples, 0.03%)</title><rect x="11.8" y="261" width="0.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="14.82" y="271.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="575.0" y="693" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="578.02" y="703.5" ></text>
+</g>
+<g >
+<title>sk_alloc (10,101,010 samples, 0.03%)</title><rect x="1381.8" y="837" width="0.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1384.80" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="425.7" y="501" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="428.68" y="511.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (131,313,130 samples, 0.43%)</title><rect x="563.6" y="725" width="6.0" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="566.64" y="735.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (20,202,020 samples, 0.07%)</title><rect x="535.0" y="693" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="537.96" y="703.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.03%)</title><rect x="1332.6" y="853" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1335.63" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="260.9" y="789" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="263.87" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.07%)</title><rect x="133.8" y="581" width="1.0" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="136.84" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_desc (10,101,010 samples, 0.03%)</title><rect x="54.2" y="757" width="0.4" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="57.16" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="671.1" y="853" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="674.09" y="863.5" ></text>
+</g>
+<g >
+<title>try_to_free_buffers (10,101,010 samples, 0.03%)</title><rect x="361.0" y="485" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="364.03" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (50,505,050 samples, 0.16%)</title><rect x="460.3" y="677" width="2.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="463.29" y="687.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="499.0" y="741" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="501.99" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (141,414,140 samples, 0.46%)</title><rect x="447.1" y="789" width="6.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="450.08" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="296.4" y="837" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="299.38" y="847.5" ></text>
+</g>
+<g >
+<title>do_writepages (40,404,040 samples, 0.13%)</title><rect x="248.1" y="645" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="251.12" y="655.5" ></text>
+</g>
+<g >
+<title>inode_init_always (10,101,010 samples, 0.03%)</title><rect x="70.6" y="821" width="0.4" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="73.55" y="831.5" ></text>
+</g>
+<g >
+<title>srso_alias_return_thunk (10,101,010 samples, 0.03%)</title><rect x="543.6" y="629" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="546.61" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="468.9" y="821" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="471.94" y="831.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="368.8" y="837" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="371.77" y="847.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="725" width="1.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1033.32" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="677.0" y="709" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="680.01" y="719.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.03%)</title><rect x="658.8" y="565" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="661.80" y="575.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="430.7" y="517" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="433.69" y="527.5" ></text>
+</g>
+<g >
+<title>delete_from_page_cache_batch (10,101,010 samples, 0.03%)</title><rect x="608.3" y="581" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="611.26" y="591.5" ></text>
+</g>
+<g >
+<title>do_filp_open (40,404,040 samples, 0.13%)</title><rect x="181.2" y="757" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="184.19" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_read (20,202,020 samples, 0.07%)</title><rect x="375.1" y="613" width="1.0" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="378.15" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="40.0" y="853" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="43.05" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="51.4" y="821" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="54.43" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (80,808,080 samples, 0.26%)</title><rect x="321.0" y="773" width="3.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="323.97" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="376.1" y="629" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="379.06" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="449.4" y="645" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="452.36" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.23%)</title><rect x="54.6" y="1013" width="3.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="57.62" y="1023.5" ></text>
+</g>
+<g >
+<title>xas_descend (10,101,010 samples, 0.03%)</title><rect x="346.0" y="389" width="0.5" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="349.01" y="399.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="376.5" y="709" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="379.51" y="719.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="517" width="4.1" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1029.22" y="527.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="252.2" y="789" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="255.22" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_fname_setup_filename (10,101,010 samples, 0.03%)</title><rect x="615.1" y="645" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="618.09" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (20,202,020 samples, 0.07%)</title><rect x="166.2" y="581" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="169.17" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (161,616,160 samples, 0.53%)</title><rect x="119.3" y="741" width="7.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="122.27" y="751.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="504.0" y="517" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="507.00" y="527.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="514.0" y="421" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="517.01" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (50,505,050 samples, 0.16%)</title><rect x="458.0" y="645" width="2.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="461.01" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="645.1" y="805" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="648.14" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="296.8" y="821" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="299.84" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="126.6" y="709" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="129.56" y="719.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (20,202,020 samples, 0.07%)</title><rect x="535.0" y="597" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="537.96" y="607.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="284.1" y="677" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="287.09" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="256.3" y="805" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="259.31" y="815.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="183.9" y="757" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="186.92" y="767.5" ></text>
+</g>
+<g >
+<title>__lruvec_stat_mod_folio (10,101,010 samples, 0.03%)</title><rect x="1008.5" y="709" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1011.46" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="123.8" y="517" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="126.82" y="527.5" ></text>
+</g>
+<g >
+<title>__put_task_struct (10,101,010 samples, 0.03%)</title><rect x="1334.9" y="741" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1337.91" y="751.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="591.9" y="485" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="594.87" y="495.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.3.0] (20,202,020 samples, 0.07%)</title><rect x="1010.3" y="853" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1013.28" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="559.1" y="597" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="562.09" y="607.5" ></text>
+</g>
+<g >
+<title>sbitmap_get_shallow (10,101,010 samples, 0.03%)</title><rect x="434.8" y="373" width="0.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="437.79" y="383.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="672.9" y="885" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="675.91" y="895.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (20,202,020 samples, 0.07%)</title><rect x="248.1" y="565" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="251.12" y="575.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="581" width="1.9" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1378.43" y="591.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.03%)</title><rect x="646.0" y="629" width="0.5" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="649.05" y="639.5" ></text>
+</g>
+<g >
+<title>iput (191,919,190 samples, 0.63%)</title><rect x="353.3" y="661" width="8.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="356.29" y="671.5" ></text>
+</g>
+<g >
+<title>schedule (20,202,020 samples, 0.07%)</title><rect x="1370.4" y="837" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1373.42" y="847.5" ></text>
+</g>
+<g >
+<title>security_current_getlsmblob_subj (10,101,010 samples, 0.03%)</title><rect x="666.5" y="645" width="0.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="669.54" y="655.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="229" width="0.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1030.58" y="239.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="672.5" y="693" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="675.45" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="333.7" y="805" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="336.71" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="92.9" y="885" width="2.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="95.86" y="895.5" ></text>
+</g>
+<g >
+<title>open64 (30,303,030 samples, 0.10%)</title><rect x="428.9" y="645" width="1.3" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="431.87" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="219.0" y="645" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="221.98" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (50,505,050 samples, 0.16%)</title><rect x="218.5" y="693" width="2.3" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="221.53" y="703.5" ></text>
+</g>
+<g >
+<title>__es_remove_extent (10,101,010 samples, 0.03%)</title><rect x="607.3" y="565" width="0.5" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="610.35" y="575.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_pre_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="683.8" y="741" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="686.84" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (40,404,040 samples, 0.13%)</title><rect x="248.1" y="741" width="1.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="251.12" y="751.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.03%)</title><rect x="481.2" y="549" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="484.23" y="559.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="487.1" y="709" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="490.15" y="719.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="499.4" y="725" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="502.44" y="735.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (10,101,010 samples, 0.03%)</title><rect x="593.2" y="597" width="0.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="596.23" y="607.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="384.7" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="387.71" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (50,505,050 samples, 0.16%)</title><rect x="558.6" y="725" width="2.3" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="561.63" y="735.5" ></text>
+</g>
+<g >
+<title>__folio_cancel_dirty (10,101,010 samples, 0.03%)</title><rect x="190.3" y="517" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="193.30" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="242.7" y="821" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="245.66" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="476.2" y="805" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="479.22" y="815.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="756.2" y="789" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="759.23" y="799.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="239.0" y="837" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="242.01" y="847.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="708.0" y="693" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="710.97" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="225.8" y="661" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="228.81" y="671.5" ></text>
+</g>
+<g >
+<title>do_symlinkat (30,303,030 samples, 0.10%)</title><rect x="570.0" y="773" width="1.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="573.01" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (10,101,010 samples, 0.03%)</title><rect x="687.0" y="693" width="0.5" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="690.02" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_create (10,101,010 samples, 0.03%)</title><rect x="519.0" y="581" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="522.02" y="591.5" ></text>
+</g>
+<g >
+<title>remove (171,717,170 samples, 0.56%)</title><rect x="130.2" y="789" width="7.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="133.20" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (20,202,020 samples, 0.07%)</title><rect x="313.2" y="677" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="316.23" y="687.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.07%)</title><rect x="646.0" y="693" width="1.0" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="649.05" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (20,202,020 samples, 0.07%)</title><rect x="444.4" y="629" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="447.35" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="494.9" y="645" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="497.89" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (282,828,280 samples, 0.92%)</title><rect x="308.2" y="789" width="12.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="311.22" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_validate_block_bitmap (10,101,010 samples, 0.03%)</title><rect x="611.9" y="421" width="0.5" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="614.90" y="431.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (10,101,010 samples, 0.03%)</title><rect x="396.5" y="581" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="399.55" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="261.3" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="264.32" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (181,818,180 samples, 0.59%)</title><rect x="589.6" y="757" width="8.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="592.59" y="767.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (20,202,020 samples, 0.07%)</title><rect x="25.5" y="341" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="28.48" y="351.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.20%)</title><rect x="193.0" y="805" width="2.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="196.03" y="815.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.03%)</title><rect x="576.8" y="645" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="579.84" y="655.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (20,202,020 samples, 0.07%)</title><rect x="249.0" y="597" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="252.03" y="607.5" ></text>
+</g>
+<g >
+<title>vma_complete (10,101,010 samples, 0.03%)</title><rect x="759.4" y="741" width="0.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="762.42" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="399.7" y="821" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="402.73" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.03%)</title><rect x="425.7" y="549" width="0.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="428.68" y="559.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.03%)</title><rect x="101.1" y="757" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="104.06" y="767.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="546.8" y="437" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="549.79" y="447.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="97.4" y="869" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="100.42" y="879.5" ></text>
+</g>
+<g >
+<title>__fput (50,505,050 samples, 0.16%)</title><rect x="1379.5" y="869" width="2.3" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1382.53" y="879.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="445.7" y="709" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="448.72" y="719.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="635.6" y="741" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="638.58" y="751.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.07%)</title><rect x="719.8" y="917" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="722.81" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (30,303,030 samples, 0.10%)</title><rect x="547.7" y="549" width="1.4" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="550.70" y="559.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="658.3" y="709" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="661.34" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="484.4" y="805" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="487.42" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (101,010,100 samples, 0.33%)</title><rect x="513.1" y="517" width="4.6" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="516.10" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="400.2" y="821" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="403.19" y="831.5" ></text>
+</g>
+<g >
+<title>fsnotify (10,101,010 samples, 0.03%)</title><rect x="320.1" y="693" width="0.4" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="323.06" y="703.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="604.6" y="693" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="607.62" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="396.5" y="709" width="0.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="399.55" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="662.0" y="645" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="664.98" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_htree_store_dirent (30,303,030 samples, 0.10%)</title><rect x="145.2" y="645" width="1.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="148.22" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (858,585,850 samples, 2.80%)</title><rect x="304.6" y="869" width="38.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="307.58" y="879.5" >[li..</text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="495.3" y="645" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="498.34" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="438.9" y="773" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="441.89" y="783.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="622.8" y="677" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="625.83" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="295.5" y="853" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="298.47" y="863.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="581" width="1.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1386.17" y="591.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="649.2" y="693" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="652.23" y="703.5" ></text>
+</g>
+<g >
+<title>evict (272,727,270 samples, 0.89%)</title><rect x="200.3" y="693" width="12.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="203.31" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.03%)</title><rect x="396.1" y="469" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="399.09" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="611.0" y="485" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="613.99" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_write (50,505,050 samples, 0.16%)</title><rect x="443.0" y="693" width="2.3" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="445.99" y="703.5" ></text>
+</g>
+<g >
+<title>__d_lookup (10,101,010 samples, 0.03%)</title><rect x="220.8" y="693" width="0.5" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="223.80" y="703.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="455.3" y="613" width="0.4" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="458.28" y="623.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.03%)</title><rect x="476.7" y="645" width="0.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="479.68" y="655.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="409.7" y="501" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="412.75" y="511.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="613" width="1.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1378.43" y="623.5" ></text>
+</g>
+<g >
+<title>libjson_send (5,848,484,790 samples, 19.10%)</title><rect x="770.3" y="981" width="263.7" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="773.34" y="991.5" >libjson_send</text>
+</g>
+<g >
+<title>__napi_poll (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="469" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1386.17" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="418.4" y="645" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="421.40" y="655.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="901" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1046.98" y="911.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="1363.1" y="757" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1366.14" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="458.9" y="581" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="461.92" y="591.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="599.6" y="709" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="602.61" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="506.7" y="677" width="1.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="509.73" y="687.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="1022.1" y="645" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1025.12" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (30,303,030 samples, 0.10%)</title><rect x="339.2" y="757" width="1.3" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="342.18" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="484.0" y="709" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="486.96" y="719.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (20,202,020 samples, 0.07%)</title><rect x="699.3" y="741" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="702.32" y="751.5" ></text>
+</g>
+<g >
+<title>do_open (20,202,020 samples, 0.07%)</title><rect x="181.2" y="725" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="184.19" y="735.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="597" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1386.17" y="607.5" ></text>
+</g>
+<g >
+<title>iput (70,707,070 samples, 0.23%)</title><rect x="111.5" y="645" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="114.53" y="655.5" ></text>
+</g>
+<g >
+<title>ksys_write (90,909,090 samples, 0.30%)</title><rect x="275.4" y="757" width="4.1" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="278.44" y="767.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="624.2" y="549" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="627.19" y="559.5" ></text>
+</g>
+<g >
+<title>kernel_clone (696,969,690 samples, 2.28%)</title><rect x="688.4" y="821" width="31.4" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="691.39" y="831.5" >ke..</text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.07%)</title><rect x="618.3" y="693" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="621.27" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (60,606,060 samples, 0.20%)</title><rect x="552.7" y="565" width="2.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="555.71" y="575.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="391.1" y="741" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="394.08" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_file_open (10,101,010 samples, 0.03%)</title><rect x="282.7" y="597" width="0.5" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="285.72" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="654.7" y="693" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="657.70" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.03%)</title><rect x="592.8" y="501" width="0.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="595.78" y="511.5" ></text>
+</g>
+<g >
+<title>git_error_set (20,202,020 samples, 0.07%)</title><rect x="307.3" y="805" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="310.31" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="158.4" y="597" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="161.43" y="607.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.03%)</title><rect x="687.9" y="725" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="690.93" y="735.5" ></text>
+</g>
+<g >
+<title>malloc (20,202,020 samples, 0.07%)</title><rect x="431.1" y="773" width="1.0" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="434.15" y="783.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (30,303,030 samples, 0.10%)</title><rect x="1040.3" y="485" width="1.4" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1043.33" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (20,202,020 samples, 0.07%)</title><rect x="719.8" y="853" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="722.81" y="863.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="752.1" y="693" width="0.5" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="755.13" y="703.5" ></text>
+</g>
+<g >
+<title>__napi_poll (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="469" width="3.2" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1038.32" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="217.2" y="693" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="220.16" y="703.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="291.8" y="741" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="294.83" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (50,505,050 samples, 0.16%)</title><rect x="55.5" y="981" width="2.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="58.53" y="991.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="342.4" y="677" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="345.37" y="687.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="384.7" y="629" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="387.71" y="639.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="680.2" y="629" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="683.19" y="639.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="22.7" y="773" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="25.75" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="1044.4" y="837" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1047.43" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (60,606,060 samples, 0.20%)</title><rect x="18.7" y="917" width="2.7" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="21.65" y="927.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.3.0] (10,101,010 samples, 0.03%)</title><rect x="1011.2" y="869" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1014.19" y="879.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="1334.9" y="837" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1337.91" y="847.5" ></text>
+</g>
+<g >
+<title>d_lru_del (10,101,010 samples, 0.03%)</title><rect x="175.7" y="629" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="178.73" y="639.5" ></text>
+</g>
+<g >
+<title>getdents64 (10,101,010 samples, 0.03%)</title><rect x="269.1" y="821" width="0.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="272.06" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="643.8" y="773" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="646.77" y="783.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="220.3" y="549" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="223.35" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.07%)</title><rect x="198.5" y="661" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="201.49" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (191,919,190 samples, 0.63%)</title><rect x="216.2" y="805" width="8.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="219.25" y="815.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (30,303,030 samples, 0.10%)</title><rect x="596.0" y="597" width="1.3" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="598.97" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mb_free_metadata (10,101,010 samples, 0.03%)</title><rect x="359.2" y="501" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="362.21" y="511.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="59.6" y="837" width="0.5" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="62.63" y="847.5" ></text>
+</g>
+<g >
+<title>release_pages (50,505,050 samples, 0.16%)</title><rect x="763.1" y="693" width="2.2" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="766.06" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="1377.3" y="933" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1380.25" y="943.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="675.6" y="741" width="1.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="678.64" y="751.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="283.2" y="693" width="0.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="286.18" y="703.5" ></text>
+</g>
+<g >
+<title>getaddrinfo (10,101,010 samples, 0.03%)</title><rect x="1043.5" y="981" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1046.52" y="991.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="719.8" y="885" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="722.81" y="895.5" ></text>
+</g>
+<g >
+<title>is_vmalloc_addr (10,101,010 samples, 0.03%)</title><rect x="505.8" y="549" width="0.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="508.82" y="559.5" ></text>
+</g>
+<g >
+<title>get_unused_fd_flags (10,101,010 samples, 0.03%)</title><rect x="127.9" y="741" width="0.5" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="130.92" y="751.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="52.8" y="821" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="55.80" y="831.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.03%)</title><rect x="270.9" y="677" width="0.4" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="273.88" y="687.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="506.3" y="693" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="509.27" y="703.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (10,101,010 samples, 0.03%)</title><rect x="11.8" y="741" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="14.82" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="1056.3" y="917" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1059.27" y="927.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="484.4" y="789" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="487.42" y="799.5" ></text>
+</g>
+<g >
+<title>git_reference_create (313,131,310 samples, 1.02%)</title><rect x="239.5" y="933" width="14.1" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="242.47" y="943.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="555.9" y="581" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="558.90" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_socket (10,101,010 samples, 0.03%)</title><rect x="1034.9" y="917" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1037.87" y="927.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="406.1" y="725" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="409.11" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="600.5" y="517" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="603.52" y="527.5" ></text>
+</g>
+<g >
+<title>do_filp_open (40,404,040 samples, 0.13%)</title><rect x="587.8" y="677" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="590.77" y="687.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.03%)</title><rect x="422.5" y="613" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="425.50" y="623.5" ></text>
+</g>
+<g >
+<title>alloc_fd (10,101,010 samples, 0.03%)</title><rect x="78.7" y="933" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="81.75" y="943.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="757.6" y="773" width="0.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="760.59" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="650.1" y="741" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="653.15" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.03%)</title><rect x="536.8" y="661" width="0.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="539.78" y="671.5" ></text>
+</g>
+<g >
+<title>__inode_wait_for_writeback (10,101,010 samples, 0.03%)</title><rect x="720.3" y="725" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="723.26" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (111,111,110 samples, 0.36%)</title><rect x="22.3" y="885" width="5.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="25.29" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.03%)</title><rect x="218.1" y="693" width="0.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="221.07" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.20%)</title><rect x="226.3" y="821" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="229.27" y="831.5" ></text>
+</g>
+<g >
+<title>from_kgid (10,101,010 samples, 0.03%)</title><rect x="164.8" y="533" width="0.5" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="167.80" y="543.5" ></text>
+</g>
+<g >
+<title>strerror_l (10,101,010 samples, 0.03%)</title><rect x="523.6" y="613" width="0.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="526.57" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (373,737,370 samples, 1.22%)</title><rect x="503.1" y="757" width="16.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="506.08" y="767.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (343,434,340 samples, 1.12%)</title><rect x="352.4" y="725" width="15.5" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="355.38" y="735.5" ></text>
+</g>
+<g >
+<title>vma_alloc_folio (131,313,130 samples, 0.43%)</title><rect x="999.8" y="709" width="5.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1002.81" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="648.3" y="725" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="651.32" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="238.1" y="869" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="241.10" y="879.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="529.5" y="629" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="532.49" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="183.9" y="789" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="186.92" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="526.8" y="773" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="529.76" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="101.1" y="693" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="104.06" y="703.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.03%)</title><rect x="236.3" y="645" width="0.4" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="239.28" y="655.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="1332.6" y="901" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1335.63" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="719.8" y="901" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="722.81" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="302.3" y="757" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="305.30" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="463.9" y="805" width="1.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="466.93" y="815.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="1331.7" y="837" width="0.5" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1334.72" y="847.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="354.2" y="533" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="357.20" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="557.3" y="709" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="560.26" y="719.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="983.9" y="709" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="986.88" y="719.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.03%)</title><rect x="391.5" y="677" width="0.5" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="394.54" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="642.4" y="789" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="645.41" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="437.1" y="581" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="440.07" y="591.5" ></text>
+</g>
+<g >
+<title>json_object_new_string (40,404,040 samples, 0.13%)</title><rect x="1368.1" y="933" width="1.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1371.15" y="943.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="585.0" y="773" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="588.04" y="783.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="479.9" y="693" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="482.86" y="703.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_state (10,101,010 samples, 0.03%)</title><rect x="1008.5" y="693" width="0.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1011.46" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.07%)</title><rect x="354.2" y="597" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="357.20" y="607.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (30,303,030 samples, 0.10%)</title><rect x="277.3" y="661" width="1.3" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="280.26" y="671.5" ></text>
+</g>
+<g >
+<title>open64 (181,818,180 samples, 0.59%)</title><rect x="561.4" y="853" width="8.2" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="564.36" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="370.6" y="853" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="373.59" y="863.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="656.1" y="741" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="659.06" y="751.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="427.5" y="597" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="430.51" y="607.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.07%)</title><rect x="539.5" y="693" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="542.51" y="703.5" ></text>
+</g>
+<g >
+<title>file_close (20,202,020 samples, 0.07%)</title><rect x="1034.0" y="981" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1036.96" y="991.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (20,202,020 samples, 0.07%)</title><rect x="192.1" y="853" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="195.12" y="863.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.03%)</title><rect x="682.5" y="725" width="0.4" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="685.47" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="252.7" y="853" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="255.67" y="863.5" ></text>
+</g>
+<g >
+<title>tcp_wmem_schedule (20,202,020 samples, 0.07%)</title><rect x="1033.0" y="773" width="1.0" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1036.05" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="260.4" y="773" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="263.41" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.13%)</title><rect x="587.8" y="725" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="590.77" y="735.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="1373.2" y="869" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1376.15" y="879.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.03%)</title><rect x="539.5" y="661" width="0.5" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="542.51" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="599.2" y="789" width="3.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="602.15" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.03%)</title><rect x="560.0" y="613" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="563.00" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="1044.4" y="933" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1047.43" y="943.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="511.7" y="581" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="514.74" y="591.5" ></text>
+</g>
+<g >
+<title>link (20,202,020 samples, 0.07%)</title><rect x="524.0" y="789" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="527.03" y="799.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.03%)</title><rect x="657.0" y="741" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="659.97" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="181.2" y="821" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="184.19" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (20,202,020 samples, 0.07%)</title><rect x="1370.4" y="917" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1373.42" y="927.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="627.4" y="389" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="630.38" y="399.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="609.2" y="597" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="612.17" y="607.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.03%)</title><rect x="507.6" y="565" width="0.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="510.64" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="391.5" y="709" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="394.54" y="719.5" ></text>
+</g>
+<g >
+<title>aa_file_perm (10,101,010 samples, 0.03%)</title><rect x="194.8" y="709" width="0.5" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="197.85" y="719.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (40,404,040 samples, 0.13%)</title><rect x="983.0" y="821" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="985.97" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (70,707,070 samples, 0.23%)</title><rect x="594.6" y="677" width="3.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="597.60" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="504.0" y="677" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="507.00" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (171,717,170 samples, 0.56%)</title><rect x="10.0" y="1077" width="7.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="13.00" y="1087.5" ></text>
+</g>
+<g >
+<title>filemap_get_pages (10,101,010 samples, 0.03%)</title><rect x="677.0" y="565" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="680.01" y="575.5" ></text>
+</g>
+<g >
+<title>pte_offset_map_nolock (10,101,010 samples, 0.03%)</title><rect x="1344.5" y="853" width="0.4" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="1347.47" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (20,202,020 samples, 0.07%)</title><rect x="517.7" y="597" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="520.65" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.10%)</title><rect x="409.3" y="549" width="1.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="412.29" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="345.1" y="757" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="348.10" y="767.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="627.4" y="533" width="0.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="630.38" y="543.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (272,727,270 samples, 0.89%)</title><rect x="1333.5" y="949" width="12.3" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1336.54" y="959.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.03%)</title><rect x="422.5" y="645" width="0.5" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="425.50" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="384.3" y="549" width="0.4" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="387.25" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_statx (40,404,040 samples, 0.13%)</title><rect x="656.5" y="757" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="659.52" y="767.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="372.0" y="773" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="374.96" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_mb_complex_scan_group (20,202,020 samples, 0.07%)</title><rect x="317.8" y="549" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="320.78" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (161,616,160 samples, 0.53%)</title><rect x="119.3" y="693" width="7.3" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="122.27" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (90,909,090 samples, 0.30%)</title><rect x="378.3" y="709" width="4.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="381.33" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="668.4" y="549" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="671.36" y="559.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.03%)</title><rect x="682.5" y="901" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="685.47" y="911.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (20,202,020 samples, 0.07%)</title><rect x="449.8" y="469" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="452.82" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="260.4" y="789" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="263.41" y="799.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="721.6" y="885" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="724.63" y="895.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.03%)</title><rect x="588.7" y="613" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="591.68" y="623.5" ></text>
+</g>
+<g >
+<title>do_writepages (90,909,090 samples, 0.30%)</title><rect x="363.3" y="597" width="4.1" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="366.31" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="374.2" y="741" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="377.24" y="751.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="214.4" y="789" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="217.43" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (161,616,160 samples, 0.53%)</title><rect x="324.6" y="805" width="7.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="327.61" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (131,313,130 samples, 0.43%)</title><rect x="512.6" y="613" width="6.0" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="515.65" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.03%)</title><rect x="681.6" y="773" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="684.56" y="783.5" ></text>
+</g>
+<g >
+<title>__sk_mem_raise_allocated (20,202,020 samples, 0.07%)</title><rect x="1033.0" y="741" width="1.0" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1036.05" y="751.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="601.0" y="629" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="603.97" y="639.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.03%)</title><rect x="443.0" y="581" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="445.99" y="591.5" ></text>
+</g>
+<g >
+<title>log_entry_start (20,202,020 samples, 0.07%)</title><rect x="302.8" y="949" width="0.9" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="305.75" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_rename (60,606,060 samples, 0.20%)</title><rect x="460.3" y="693" width="2.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="463.29" y="703.5" ></text>
+</g>
+<g >
+<title>vm_area_free (10,101,010 samples, 0.03%)</title><rect x="769.9" y="757" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="772.89" y="767.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.03%)</title><rect x="334.6" y="693" width="0.5" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="337.63" y="703.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="590.0" y="677" width="0.5" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="593.05" y="687.5" ></text>
+</g>
+<g >
+<title>unlink (161,616,160 samples, 0.53%)</title><rect x="184.8" y="805" width="7.3" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="187.83" y="815.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="62.8" y="837" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="65.81" y="847.5" ></text>
+</g>
+<g >
+<title>apparmor_path_unlink (10,101,010 samples, 0.03%)</title><rect x="180.3" y="677" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="183.28" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="374.2" y="661" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="377.24" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (131,313,130 samples, 0.43%)</title><rect x="110.2" y="693" width="5.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="113.16" y="703.5" ></text>
+</g>
+<g >
+<title>rb_insert_color (10,101,010 samples, 0.03%)</title><rect x="234.5" y="741" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="237.46" y="751.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="484.0" y="757" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="486.96" y="767.5" ></text>
+</g>
+<g >
+<title>opendir (30,303,030 samples, 0.10%)</title><rect x="368.3" y="869" width="1.4" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="371.32" y="879.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (20,202,020 samples, 0.07%)</title><rect x="1345.8" y="837" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1348.84" y="847.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="1057.6" y="933" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1060.63" y="943.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (20,202,020 samples, 0.07%)</title><rect x="601.4" y="549" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="604.43" y="559.5" ></text>
+</g>
+<g >
+<title>iterate_dir (50,505,050 samples, 0.16%)</title><rect x="193.5" y="757" width="2.3" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="196.48" y="767.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="215.3" y="869" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="218.34" y="879.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="481.7" y="741" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="484.69" y="751.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="83.3" y="821" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="86.30" y="831.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.07%)</title><rect x="680.6" y="773" width="1.0" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="683.65" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="383.8" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="386.80" y="751.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="709" width="1.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1033.32" y="719.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="47.3" y="885" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="50.33" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="494.9" y="821" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="497.89" y="831.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (10,101,010 samples, 0.03%)</title><rect x="11.8" y="437" width="0.5" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="14.82" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.07%)</title><rect x="310.5" y="613" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="313.49" y="623.5" ></text>
+</g>
+<g >
+<title>do_softirq (30,303,030 samples, 0.10%)</title><rect x="1380.0" y="549" width="1.3" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1382.98" y="559.5" ></text>
+</g>
+<g >
+<title>ip_rcv (40,404,040 samples, 0.13%)</title><rect x="1040.3" y="501" width="1.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1043.33" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="529.9" y="853" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="532.95" y="863.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="102.0" y="661" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="104.97" y="671.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="22.7" y="741" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="25.75" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="404.3" y="725" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="407.29" y="735.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="110.6" y="581" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="113.62" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="524.9" y="773" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="527.94" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (40,404,040 samples, 0.13%)</title><rect x="458.5" y="629" width="1.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="461.47" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="537.2" y="821" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="540.23" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.03%)</title><rect x="591.4" y="597" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="594.41" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.03%)</title><rect x="1380.4" y="325" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1383.44" y="335.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="506.7" y="693" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="509.73" y="703.5" ></text>
+</g>
+<g >
+<title>pthread_create (151,515,150 samples, 0.49%)</title><rect x="28.7" y="917" width="6.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="31.67" y="927.5" ></text>
+</g>
+<g >
+<title>sock_rfree (10,101,010 samples, 0.03%)</title><rect x="23.2" y="677" width="0.5" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="26.20" y="687.5" ></text>
+</g>
+<g >
+<title>event_loop_run (111,111,110 samples, 0.36%)</title><rect x="1370.4" y="997" width="5.0" height="15.0" fill="rgb(0,235,193)" rx="2" ry="2" />
+<text x="1373.42" y="1007.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="269.1" y="789" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="272.06" y="799.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="392.4" y="581" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="395.45" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.03%)</title><rect x="396.1" y="485" width="0.4" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="399.09" y="495.5" ></text>
+</g>
+<g >
+<title>path_get (10,101,010 samples, 0.03%)</title><rect x="61.0" y="869" width="0.4" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="63.99" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="754.0" y="885" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="756.95" y="895.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="658.8" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="661.80" y="751.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (20,202,020 samples, 0.07%)</title><rect x="449.8" y="517" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="452.82" y="527.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="437" width="1.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1378.43" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="671.1" y="869" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="674.09" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.03%)</title><rect x="173.5" y="501" width="0.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="176.45" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="437.1" y="629" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="440.07" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="529.5" y="693" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="532.49" y="703.5" ></text>
+</g>
+<g >
+<title>remove (161,616,160 samples, 0.53%)</title><rect x="184.8" y="821" width="7.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="187.83" y="831.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="244.5" y="741" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="247.48" y="751.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="577.3" y="597" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="580.30" y="607.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="97.9" y="901" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="100.87" y="911.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="386.1" y="789" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="389.07" y="799.5" ></text>
+</g>
+<g >
+<title>try_charge_memcg (10,101,010 samples, 0.03%)</title><rect x="1033.5" y="709" width="0.5" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1036.50" y="719.5" ></text>
+</g>
+<g >
+<title>folio_add_new_anon_rmap (10,101,010 samples, 0.03%)</title><rect x="1008.9" y="741" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1011.92" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="105.2" y="565" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="108.16" y="575.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="414.3" y="565" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="417.30" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="510.8" y="565" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="513.82" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_match (10,101,010 samples, 0.03%)</title><rect x="367.4" y="613" width="0.5" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="370.41" y="623.5" ></text>
+</g>
+<g >
+<title>__napi_poll (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="485" width="4.1" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1029.22" y="495.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (20,202,020 samples, 0.07%)</title><rect x="608.3" y="613" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="611.26" y="623.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (20,202,020 samples, 0.07%)</title><rect x="601.4" y="597" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="604.43" y="607.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.03%)</title><rect x="423.4" y="741" width="0.5" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="426.41" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="284.1" y="741" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="287.09" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.07%)</title><rect x="662.0" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="664.98" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="467.6" y="837" width="2.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="470.57" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (20,202,020 samples, 0.07%)</title><rect x="349.2" y="741" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="352.19" y="751.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="351.5" y="677" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="354.47" y="687.5" ></text>
+</g>
+<g >
+<title>evict (40,404,040 samples, 0.13%)</title><rect x="227.2" y="725" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="230.18" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="51.4" y="853" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="54.43" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="604.2" y="741" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="607.16" y="751.5" ></text>
+</g>
+<g >
+<title>git_config_free (80,808,080 samples, 0.26%)</title><rect x="92.4" y="901" width="3.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="95.41" y="911.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="542.7" y="693" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="545.70" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mb_use_best_found (10,101,010 samples, 0.03%)</title><rect x="631.5" y="581" width="0.4" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="634.48" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="287.7" y="853" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="290.73" y="863.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="68.3" y="837" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="71.28" y="847.5" ></text>
+</g>
+<g >
+<title>ksys_write (40,404,040 samples, 0.13%)</title><rect x="44.1" y="805" width="1.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="47.15" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_write (30,303,030 samples, 0.10%)</title><rect x="519.9" y="661" width="1.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="522.93" y="671.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (80,808,080 samples, 0.26%)</title><rect x="1385.9" y="645" width="3.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1388.90" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="455.7" y="773" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="458.73" y="783.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="627.4" y="517" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="630.38" y="527.5" ></text>
+</g>
+<g >
+<title>free_unref_page (10,101,010 samples, 0.03%)</title><rect x="1346.7" y="789" width="0.5" height="15.0" fill="rgb(0,238,205)" rx="2" ry="2" />
+<text x="1349.75" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="297.3" y="757" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="300.29" y="767.5" ></text>
+</g>
+<g >
+<title>delayed_put_task_struct (10,101,010 samples, 0.03%)</title><rect x="1334.9" y="757" width="0.5" height="15.0" fill="rgb(0,192,11)" rx="2" ry="2" />
+<text x="1337.91" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_read_block_bitmap (10,101,010 samples, 0.03%)</title><rect x="611.9" y="453" width="0.5" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="614.90" y="463.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.07%)</title><rect x="539.5" y="725" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="542.51" y="735.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.03%)</title><rect x="38.7" y="917" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="41.68" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="330.1" y="645" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="333.07" y="655.5" ></text>
+</g>
+<g >
+<title>dput (20,202,020 samples, 0.07%)</title><rect x="246.3" y="757" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="249.30" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="256.8" y="677" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="259.77" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.03%)</title><rect x="333.7" y="709" width="0.5" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="336.71" y="719.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (20,202,020 samples, 0.07%)</title><rect x="347.4" y="581" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="350.37" y="591.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (111,111,110 samples, 0.36%)</title><rect x="334.2" y="821" width="5.0" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="337.17" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (40,404,040 samples, 0.13%)</title><rect x="112.9" y="613" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="115.90" y="623.5" ></text>
+</g>
+<g >
+<title>evict (10,101,010 samples, 0.03%)</title><rect x="352.8" y="661" width="0.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="355.84" y="671.5" ></text>
+</g>
+<g >
+<title>malloc (20,202,020 samples, 0.07%)</title><rect x="266.3" y="789" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="269.33" y="799.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="627.4" y="501" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="630.38" y="511.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (20,202,020 samples, 0.07%)</title><rect x="460.7" y="485" width="1.0" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="463.74" y="495.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="649.7" y="773" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="652.69" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.10%)</title><rect x="305.9" y="709" width="1.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="308.94" y="719.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.03%)</title><rect x="675.2" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="678.19" y="735.5" ></text>
+</g>
+<g >
+<title>anon_vma_fork (141,414,140 samples, 0.46%)</title><rect x="693.9" y="757" width="6.3" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="696.85" y="767.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="497.6" y="565" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="500.62" y="575.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (10,101,010 samples, 0.03%)</title><rect x="1034.0" y="597" width="0.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1036.96" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="382.4" y="741" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="385.43" y="751.5" ></text>
+</g>
+<g >
+<title>do_anonymous_page (141,414,140 samples, 0.46%)</title><rect x="1358.6" y="805" width="6.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1361.58" y="815.5" ></text>
+</g>
+<g >
+<title>vmbus_sendpacket_mpb_desc (10,101,010 samples, 0.03%)</title><rect x="450.3" y="341" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="453.27" y="351.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.03%)</title><rect x="315.0" y="485" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="318.05" y="495.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="651.5" y="629" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="654.51" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="411.1" y="725" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="414.12" y="735.5" ></text>
+</g>
+<g >
+<title>alloc_anon_folio (131,313,130 samples, 0.43%)</title><rect x="999.8" y="725" width="5.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1002.81" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="467.6" y="805" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="470.57" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.03%)</title><rect x="207.6" y="581" width="0.5" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="210.60" y="591.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="752.1" y="661" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="755.13" y="671.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (40,404,040 samples, 0.13%)</title><rect x="723.0" y="869" width="1.8" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="725.99" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="215.3" y="853" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="218.34" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_brk (10,101,010 samples, 0.03%)</title><rect x="139.8" y="661" width="0.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="142.76" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.07%)</title><rect x="425.2" y="677" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="428.23" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="390.6" y="581" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="393.63" y="591.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.03%)</title><rect x="241.7" y="581" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="244.75" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="301.8" y="709" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="304.84" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="637.9" y="837" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="640.85" y="847.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (20,202,020 samples, 0.07%)</title><rect x="248.1" y="581" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="251.12" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="388.8" y="789" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="391.81" y="799.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (30,303,030 samples, 0.10%)</title><rect x="1380.0" y="629" width="1.3" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1382.98" y="639.5" ></text>
+</g>
+<g >
+<title>security_inode_free (10,101,010 samples, 0.03%)</title><rect x="605.5" y="597" width="0.5" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="608.53" y="607.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (20,202,020 samples, 0.07%)</title><rect x="697.5" y="725" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="700.50" y="735.5" ></text>
+</g>
+<g >
+<title>apparmor_capable (10,101,010 samples, 0.03%)</title><rect x="637.9" y="629" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="640.85" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (131,313,130 samples, 0.43%)</title><rect x="650.1" y="837" width="6.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="653.15" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="307.3" y="757" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="310.31" y="767.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="542.2" y="645" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="545.24" y="655.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="22.3" y="789" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="25.29" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="682.5" y="757" width="0.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="685.47" y="767.5" ></text>
+</g>
+<g >
+<title>truncate_cleanup_folio (30,303,030 samples, 0.10%)</title><rect x="189.4" y="629" width="1.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="192.39" y="639.5" ></text>
+</g>
+<g >
+<title>net_send_part (494,949,490 samples, 1.62%)</title><rect x="1011.6" y="933" width="22.4" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1014.65" y="943.5" >n..</text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (60,606,060 samples, 0.20%)</title><rect x="193.0" y="773" width="2.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="196.03" y="783.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="371.0" y="725" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="374.05" y="735.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (80,808,080 samples, 0.26%)</title><rect x="1385.9" y="693" width="3.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1388.90" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="295.9" y="821" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="298.93" y="831.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (20,202,020 samples, 0.07%)</title><rect x="461.7" y="565" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="464.65" y="575.5" ></text>
+</g>
+<g >
+<title>inet_create (10,101,010 samples, 0.03%)</title><rect x="1381.8" y="869" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1384.80" y="879.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="543.2" y="517" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="546.15" y="527.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="80.1" y="965" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="83.12" y="975.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.16%)</title><rect x="1379.5" y="933" width="2.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1382.53" y="943.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="372.0" y="853" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="374.96" y="863.5" ></text>
+</g>
+<g >
+<title>refill_stock (10,101,010 samples, 0.03%)</title><rect x="1015.7" y="629" width="0.5" height="15.0" fill="rgb(0,223,140)" rx="2" ry="2" />
+<text x="1018.75" y="639.5" ></text>
+</g>
+<g >
+<title>down_read_trylock (10,101,010 samples, 0.03%)</title><rect x="1009.4" y="773" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1012.37" y="783.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="147.0" y="629" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="150.04" y="639.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="394.7" y="613" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="397.72" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (20,202,020 samples, 0.07%)</title><rect x="228.1" y="581" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="231.09" y="591.5" ></text>
+</g>
+<g >
+<title>ip_output (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="197" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1030.58" y="207.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (50,505,050 samples, 0.16%)</title><rect x="1379.5" y="917" width="2.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1382.53" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.03%)</title><rect x="443.4" y="613" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="446.44" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="668.8" y="837" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="671.81" y="847.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="224.0" y="741" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="226.99" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="741" width="1.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1378.43" y="751.5" ></text>
+</g>
+<g >
+<title>readlink (40,404,040 samples, 0.13%)</title><rect x="264.1" y="805" width="1.8" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="267.05" y="815.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="389.7" y="757" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="392.72" y="767.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.07%)</title><rect x="327.8" y="725" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="330.80" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="492.2" y="837" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="495.16" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.03%)</title><rect x="432.1" y="725" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="435.06" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="397.0" y="725" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="400.00" y="735.5" ></text>
+</g>
+<g >
+<title>srso_alias_return_thunk (10,101,010 samples, 0.03%)</title><rect x="769.0" y="629" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="771.98" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="158.9" y="613" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="161.88" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (50,505,050 samples, 0.16%)</title><rect x="656.1" y="821" width="2.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="659.06" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="377.4" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="380.42" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="267.2" y="789" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="270.24" y="799.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="601.0" y="661" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="603.97" y="671.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="487.6" y="741" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="490.60" y="751.5" ></text>
+</g>
+<g >
+<title>printbuf_free (272,727,270 samples, 0.89%)</title><rect x="758.1" y="949" width="12.2" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="761.05" y="959.5" ></text>
+</g>
+<g >
+<title>[libz.so.1.3] (30,303,030 samples, 0.10%)</title><rect x="290.5" y="741" width="1.3" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="293.46" y="751.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="398.8" y="661" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="401.82" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="272.7" y="677" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="275.71" y="687.5" ></text>
+</g>
+<g >
+<title>tzset (10,101,010 samples, 0.03%)</title><rect x="529.5" y="789" width="0.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="532.49" y="799.5" ></text>
+</g>
+<g >
+<title>worker_get_run (444,444,440 samples, 1.45%)</title><rect x="1370.0" y="1013" width="20.0" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1372.97" y="1023.5" ></text>
+</g>
+<g >
+<title>__es_remove_extent (10,101,010 samples, 0.03%)</title><rect x="206.2" y="613" width="0.5" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="209.23" y="623.5" ></text>
+</g>
+<g >
+<title>__next_zones_zonelist (10,101,010 samples, 0.03%)</title><rect x="1342.6" y="789" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1345.65" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="644.7" y="805" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="647.68" y="815.5" ></text>
+</g>
+<g >
+<title>folio_add_lru (10,101,010 samples, 0.03%)</title><rect x="278.2" y="645" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="281.17" y="655.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="96.5" y="901" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="99.51" y="911.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="263.1" y="709" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="266.14" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.26%)</title><rect x="293.2" y="885" width="3.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="296.19" y="895.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="306.9" y="613" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="309.85" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (141,414,140 samples, 0.46%)</title><rect x="28.7" y="901" width="6.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="31.67" y="911.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.03%)</title><rect x="380.6" y="517" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="383.61" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.07%)</title><rect x="167.1" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="170.08" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.03%)</title><rect x="1346.3" y="741" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1349.29" y="751.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="378.3" y="629" width="0.5" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="381.33" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="604.2" y="789" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="607.16" y="799.5" ></text>
+</g>
+<g >
+<title>__dquot_free_space (20,202,020 samples, 0.07%)</title><rect x="357.8" y="501" width="1.0" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="360.85" y="511.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.07%)</title><rect x="268.2" y="741" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="271.15" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (10,101,010 samples, 0.03%)</title><rect x="399.3" y="693" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="402.28" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="542.7" y="661" width="0.5" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="545.70" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (20,202,020 samples, 0.07%)</title><rect x="375.1" y="645" width="1.0" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="378.15" y="655.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="1331.7" y="853" width="0.5" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1334.72" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="340.1" y="629" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="343.09" y="639.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="398.4" y="693" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="401.37" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="117.9" y="725" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="120.90" y="735.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.03%)</title><rect x="28.2" y="949" width="0.5" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="31.21" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (30,303,030 samples, 0.10%)</title><rect x="219.4" y="597" width="1.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="222.44" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="458.9" y="501" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="461.92" y="511.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="21.8" y="821" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="24.84" y="831.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="658.8" y="645" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="661.80" y="655.5" ></text>
+</g>
+<g >
+<title>d_lru_add (10,101,010 samples, 0.03%)</title><rect x="263.1" y="613" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="266.14" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_bread (40,404,040 samples, 0.13%)</title><rect x="52.8" y="869" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="55.80" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="369.7" y="837" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="372.68" y="847.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (40,404,040 samples, 0.13%)</title><rect x="55.5" y="885" width="1.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="58.53" y="895.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="473.0" y="645" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="476.04" y="655.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_uncharge (70,707,070 samples, 0.23%)</title><rect x="727.1" y="757" width="3.2" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="730.09" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.03%)</title><rect x="191.7" y="645" width="0.4" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="194.66" y="655.5" ></text>
+</g>
+<g >
+<title>file_modified (10,101,010 samples, 0.03%)</title><rect x="385.6" y="629" width="0.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="388.62" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.07%)</title><rect x="241.7" y="693" width="1.0" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="244.75" y="703.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="195.3" y="709" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="198.31" y="719.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_bh (10,101,010 samples, 0.03%)</title><rect x="26.4" y="709" width="0.4" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="29.39" y="719.5" ></text>
+</g>
+<g >
+<title>down_read_trylock (10,101,010 samples, 0.03%)</title><rect x="1344.9" y="885" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1347.93" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="80.1" y="933" width="0.5" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="83.12" y="943.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.30%)</title><rect x="275.4" y="821" width="4.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="278.44" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="477.1" y="725" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="480.13" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="679.7" y="677" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="682.74" y="687.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="262.2" y="773" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="265.23" y="783.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.10%)</title><rect x="535.0" y="741" width="1.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="537.96" y="751.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.03%)</title><rect x="543.2" y="757" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="546.15" y="767.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.03%)</title><rect x="678.8" y="581" width="0.5" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="681.83" y="591.5" ></text>
+</g>
+<g >
+<title>pcre2_compile_8 (10,101,010 samples, 0.03%)</title><rect x="453.5" y="837" width="0.4" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="456.46" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_file_open (10,101,010 samples, 0.03%)</title><rect x="59.6" y="869" width="0.5" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="62.63" y="879.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="497.6" y="645" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="500.62" y="655.5" ></text>
+</g>
+<g >
+<title>folio_alloc (20,202,020 samples, 0.07%)</title><rect x="601.4" y="565" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="604.43" y="575.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="389.3" y="757" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="392.26" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="637.9" y="869" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="640.85" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (10,101,010 samples, 0.03%)</title><rect x="191.7" y="693" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="194.66" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (70,707,070 samples, 0.23%)</title><rect x="606.0" y="629" width="3.2" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="608.98" y="639.5" ></text>
+</g>
+<g >
+<title>should_failslab.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="485.3" y="581" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="488.33" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="471.7" y="613" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="474.67" y="623.5" ></text>
+</g>
+<g >
+<title>evict (80,808,080 samples, 0.26%)</title><rect x="217.2" y="725" width="3.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="220.16" y="735.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (10,101,010 samples, 0.03%)</title><rect x="11.8" y="277" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="14.82" y="287.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="331.0" y="613" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="333.98" y="623.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (10,101,010 samples, 0.03%)</title><rect x="1346.3" y="725" width="0.4" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1349.29" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="476.7" y="693" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="479.68" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="205.8" y="565" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="208.78" y="575.5" ></text>
+</g>
+<g >
+<title>iterate_dir (20,202,020 samples, 0.07%)</title><rect x="663.8" y="709" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="666.80" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_v4_route_req (10,101,010 samples, 0.03%)</title><rect x="1041.2" y="341" width="0.5" height="15.0" fill="rgb(0,216,113)" rx="2" ry="2" />
+<text x="1044.24" y="351.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (90,909,090 samples, 0.30%)</title><rect x="1012.6" y="741" width="4.1" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1015.56" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="73.3" y="741" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="76.29" y="751.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="837" width="1.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1378.43" y="847.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="697.0" y="565" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="700.04" y="575.5" ></text>
+</g>
+<g >
+<title>ipv6_sock_mc_close (10,101,010 samples, 0.03%)</title><rect x="26.8" y="757" width="0.5" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="29.85" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="667.4" y="773" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="670.45" y="783.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.13%)</title><rect x="409.3" y="645" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="412.29" y="655.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.03%)</title><rect x="581.4" y="613" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="584.40" y="623.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (20,202,020 samples, 0.07%)</title><rect x="1027.1" y="277" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1030.13" y="287.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="409.7" y="533" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="412.75" y="543.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="21.8" y="837" width="0.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="24.84" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="495.3" y="725" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="498.34" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="302.3" y="741" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="305.30" y="751.5" ></text>
+</g>
+<g >
+<title>schedule (40,404,040 samples, 0.13%)</title><rect x="15.9" y="853" width="1.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="18.92" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="414.3" y="661" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="417.30" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.20%)</title><rect x="226.3" y="837" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="229.27" y="847.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="471.7" y="629" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="474.67" y="639.5" ></text>
+</g>
+<g >
+<title>alloc_fd (10,101,010 samples, 0.03%)</title><rect x="377.4" y="629" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="380.42" y="639.5" ></text>
+</g>
+<g >
+<title>malloc (20,202,020 samples, 0.07%)</title><rect x="368.8" y="853" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="371.77" y="863.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="680.6" y="821" width="1.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="683.65" y="831.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="283.2" y="789" width="0.4" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="286.18" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="481.2" y="565" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="484.23" y="575.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.03%)</title><rect x="432.1" y="709" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="435.06" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,808,080 samples, 0.26%)</title><rect x="270.0" y="837" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="272.97" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="377.0" y="693" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="379.97" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="679.7" y="757" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="682.74" y="767.5" ></text>
+</g>
+<g >
+<title>mas_dup_build.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="693.4" y="741" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="696.40" y="751.5" ></text>
+</g>
+<g >
+<title>__mod_node_page_state (10,101,010 samples, 0.03%)</title><rect x="768.5" y="613" width="0.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="771.52" y="623.5" ></text>
+</g>
+<g >
+<title>git_odb_object_size (10,101,010 samples, 0.03%)</title><rect x="275.0" y="869" width="0.4" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="277.98" y="879.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (20,202,020 samples, 0.07%)</title><rect x="575.5" y="757" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="578.48" y="767.5" ></text>
+</g>
+<g >
+<title>strlen@plt (10,101,010 samples, 0.03%)</title><rect x="374.2" y="629" width="0.5" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="377.24" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (10,101,010 samples, 0.03%)</title><rect x="524.9" y="661" width="0.5" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="527.94" y="671.5" ></text>
+</g>
+<g >
+<title>kernel_wait4 (40,404,040 samples, 0.13%)</title><rect x="754.0" y="821" width="1.8" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="756.95" y="831.5" ></text>
+</g>
+<g >
+<title>skb_release_data (30,303,030 samples, 0.10%)</title><rect x="1388.2" y="549" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1391.18" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="401.1" y="773" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="404.10" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.03%)</title><rect x="193.9" y="677" width="0.5" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="196.94" y="687.5" ></text>
+</g>
+<g >
+<title>generic_fillattr (10,101,010 samples, 0.03%)</title><rect x="140.7" y="661" width="0.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="143.67" y="671.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="557.3" y="629" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="560.26" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (333,333,330 samples, 1.09%)</title><rect x="254.5" y="853" width="15.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="257.49" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="232.2" y="709" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="235.18" y="719.5" ></text>
+</g>
+<g >
+<title>chdir (40,404,040 samples, 0.13%)</title><rect x="86.0" y="965" width="1.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="89.03" y="975.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_uncharge (10,101,010 samples, 0.03%)</title><rect x="283.2" y="661" width="0.4" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="286.18" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.13%)</title><rect x="394.7" y="773" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="397.72" y="783.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="21.8" y="725" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="24.84" y="735.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.03%)</title><rect x="340.1" y="581" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="343.09" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="14.6" y="965" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="17.55" y="975.5" ></text>
+</g>
+<g >
+<title>ext4_match (10,101,010 samples, 0.03%)</title><rect x="423.4" y="597" width="0.5" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="426.41" y="607.5" ></text>
+</g>
+<g >
+<title>libjson_get (10,101,010 samples, 0.03%)</title><rect x="1372.2" y="901" width="0.5" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1375.24" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (30,303,030 samples, 0.10%)</title><rect x="611.0" y="533" width="1.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="613.99" y="543.5" ></text>
+</g>
+<g >
+<title>rmqueue (10,101,010 samples, 0.03%)</title><rect x="1362.2" y="709" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1365.23" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="555.9" y="613" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="558.90" y="623.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="102.0" y="645" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="104.97" y="655.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.03%)</title><rect x="570.5" y="709" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="573.47" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="13.6" y="853" width="0.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="16.64" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="660.6" y="693" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="663.62" y="703.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="499.9" y="693" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="502.90" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.13%)</title><rect x="128.4" y="757" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="131.38" y="767.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.03%)</title><rect x="446.6" y="693" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="449.63" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="409.3" y="629" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="412.29" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.30%)</title><rect x="378.3" y="725" width="4.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="381.33" y="735.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="1022.1" y="661" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1025.12" y="671.5" ></text>
+</g>
+<g >
+<title>libjson_to_string_internal (5,323,232,270 samples, 17.39%)</title><rect x="771.7" y="949" width="239.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="774.71" y="959.5" >libjson_to_string_internal</text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="664.3" y="645" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="667.26" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (393,939,390 samples, 1.29%)</title><rect x="196.2" y="773" width="17.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="199.22" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (20,202,020 samples, 0.07%)</title><rect x="1376.3" y="357" width="1.0" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1379.34" y="367.5" ></text>
+</g>
+<g >
+<title>__dquot_free_space (10,101,010 samples, 0.03%)</title><rect x="592.8" y="485" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="595.78" y="495.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (20,202,020 samples, 0.07%)</title><rect x="983.9" y="789" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="986.88" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (131,313,130 samples, 0.43%)</title><rect x="416.1" y="677" width="5.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="419.12" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="265.0" y="677" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="267.97" y="687.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.03%)</title><rect x="378.3" y="661" width="0.5" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="381.33" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.07%)</title><rect x="664.7" y="709" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="667.71" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="180.7" y="709" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="183.74" y="719.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (20,202,020 samples, 0.07%)</title><rect x="25.5" y="373" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="28.48" y="383.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (151,515,150 samples, 0.49%)</title><rect x="47.8" y="1013" width="6.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="50.79" y="1023.5" ></text>
+</g>
+<g >
+<title>strnlen (10,101,010 samples, 0.03%)</title><rect x="1057.2" y="773" width="0.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1060.18" y="783.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="348.7" y="693" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="351.74" y="703.5" ></text>
+</g>
+<g >
+<title>lookup_dcache (10,101,010 samples, 0.03%)</title><rect x="593.7" y="677" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="596.69" y="687.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="204.0" y="613" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="206.96" y="623.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.03%)</title><rect x="455.3" y="645" width="0.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="458.28" y="655.5" ></text>
+</g>
+<g >
+<title>sk_page_frag_refill (111,111,110 samples, 0.36%)</title><rect x="1018.5" y="773" width="5.0" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="1021.48" y="783.5" ></text>
+</g>
+<g >
+<title>run_queue_is_empty (10,101,010 samples, 0.03%)</title><rect x="15.5" y="997" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="18.46" y="1007.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="236.3" y="677" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="239.28" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="302.3" y="709" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="305.30" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.10%)</title><rect x="495.8" y="677" width="1.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="498.80" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (30,303,030 samples, 0.10%)</title><rect x="48.7" y="901" width="1.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="51.70" y="911.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="47.3" y="949" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="50.33" y="959.5" ></text>
+</g>
+<g >
+<title>mb_find_order_for_block (20,202,020 samples, 0.07%)</title><rect x="317.8" y="517" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="320.78" y="527.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="109.7" y="645" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="112.71" y="655.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.03%)</title><rect x="129.7" y="645" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="132.74" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="52.3" y="869" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="55.34" y="879.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="232.6" y="677" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="235.64" y="687.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>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="342.8" y="693" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="345.82" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (30,303,030 samples, 0.10%)</title><rect x="435.7" y="517" width="1.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="438.70" y="527.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="43.7" y="805" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="46.69" y="815.5" ></text>
+</g>
+<g >
+<title>release_task (10,101,010 samples, 0.03%)</title><rect x="754.4" y="741" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="757.41" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (141,414,140 samples, 0.46%)</title><rect x="627.4" y="677" width="6.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="630.38" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="626.9" y="629" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="629.93" y="639.5" ></text>
+</g>
+<g >
+<title>process_output_dump (20,202,020 samples, 0.07%)</title><rect x="1044.0" y="997" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1046.98" y="1007.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.03%)</title><rect x="12.3" y="997" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="15.28" y="1007.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="243.1" y="773" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="246.11" y="783.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (121,212,120 samples, 0.40%)</title><rect x="110.2" y="661" width="5.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="113.16" y="671.5" ></text>
+</g>
+<g >
+<title>to_shrink_list (10,101,010 samples, 0.03%)</title><rect x="176.2" y="629" width="0.4" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="179.18" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="494.9" y="677" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="497.89" y="687.5" ></text>
+</g>
+<g >
+<title>__tcp_ack_snd_check (20,202,020 samples, 0.07%)</title><rect x="1027.1" y="309" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1030.13" y="319.5" ></text>
+</g>
+<g >
+<title>_find_next_zero_bit (30,303,030 samples, 0.10%)</title><rect x="514.9" y="485" width="1.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="517.92" y="495.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="265.9" y="789" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="268.88" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_release_dir (10,101,010 samples, 0.03%)</title><rect x="192.1" y="741" width="0.5" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="195.12" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="401.6" y="709" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="404.55" y="719.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_uncharge (10,101,010 samples, 0.03%)</title><rect x="1022.1" y="501" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1025.12" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="372.4" y="725" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="375.42" y="735.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.03%)</title><rect x="658.8" y="581" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="661.80" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="244.9" y="821" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="247.93" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.10%)</title><rect x="625.6" y="693" width="1.3" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="628.56" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="388.4" y="757" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="391.35" y="767.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.03%)</title><rect x="277.7" y="645" width="0.5" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="280.71" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (20,202,020 samples, 0.07%)</title><rect x="104.2" y="613" width="1.0" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="107.25" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.03%)</title><rect x="459.8" y="581" width="0.5" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="462.83" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.16%)</title><rect x="530.9" y="853" width="2.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="533.86" y="863.5" ></text>
+</g>
+<g >
+<title>__ctype_tolower_loc@plt (10,101,010 samples, 0.03%)</title><rect x="350.1" y="805" width="0.5" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="353.11" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (80,808,080 samples, 0.26%)</title><rect x="270.0" y="805" width="3.6" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="272.97" y="815.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="308.7" y="677" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="311.67" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="655.2" y="629" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="658.15" y="639.5" ></text>
+</g>
+<g >
+<title>xas_descend (10,101,010 samples, 0.03%)</title><rect x="126.1" y="517" width="0.5" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="129.10" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="239.9" y="821" width="2.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="242.92" y="831.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="536.3" y="581" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="539.32" y="591.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.03%)</title><rect x="326.0" y="661" width="0.4" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="328.97" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="505.8" y="661" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="508.82" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (60,606,060 samples, 0.20%)</title><rect x="499.9" y="789" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="502.90" y="799.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="398.4" y="677" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="401.37" y="687.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.03%)</title><rect x="153.9" y="629" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="156.87" y="639.5" ></text>
+</g>
+<g >
+<title>ip_output (30,303,030 samples, 0.10%)</title><rect x="25.0" y="597" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="28.02" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="604.2" y="805" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="607.16" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="147.5" y="597" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="150.50" y="607.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (10,101,010 samples, 0.03%)</title><rect x="396.5" y="549" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="399.55" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.07%)</title><rect x="161.6" y="565" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="164.61" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="543.6" y="677" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="546.61" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (222,222,220 samples, 0.73%)</title><rect x="508.5" y="709" width="10.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="511.55" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="532.2" y="613" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="535.22" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="446.6" y="789" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="449.63" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_es_remove_extent (10,101,010 samples, 0.03%)</title><rect x="607.3" y="581" width="0.5" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="610.35" y="591.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.03%)</title><rect x="364.2" y="405" width="0.5" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="367.22" y="415.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="651.5" y="645" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="654.51" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="660.6" y="709" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="663.62" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.03%)</title><rect x="686.1" y="757" width="0.5" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="689.11" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (131,313,130 samples, 0.43%)</title><rect x="579.1" y="837" width="5.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="582.12" y="847.5" ></text>
+</g>
+<g >
+<title>__skb_clone (10,101,010 samples, 0.03%)</title><rect x="1385.4" y="789" width="0.5" height="15.0" fill="rgb(0,223,138)" rx="2" ry="2" />
+<text x="1388.45" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.03%)</title><rect x="224.9" y="757" width="0.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="227.90" y="767.5" ></text>
+</g>
+<g >
+<title>do_anonymous_page (90,909,090 samples, 0.30%)</title><rect x="1050.8" y="853" width="4.1" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1053.81" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="654.2" y="597" width="0.5" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="657.24" y="607.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (10,101,010 samples, 0.03%)</title><rect x="425.7" y="597" width="0.4" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="428.68" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="755.8" y="901" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="758.77" y="911.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.03%)</title><rect x="627.4" y="469" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="630.38" y="479.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="161.6" y="533" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="164.61" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="641.9" y="741" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="644.95" y="751.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.07%)</title><rect x="666.5" y="725" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="669.54" y="735.5" ></text>
+</g>
+<g >
+<title>filp_flush (10,101,010 samples, 0.03%)</title><rect x="192.6" y="773" width="0.4" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="195.57" y="783.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="539.1" y="709" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="542.05" y="719.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.07%)</title><rect x="637.9" y="757" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="640.85" y="767.5" ></text>
+</g>
+<g >
+<title>inet_release (50,505,050 samples, 0.16%)</title><rect x="1379.5" y="821" width="2.3" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1382.53" y="831.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="622.8" y="661" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="625.83" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="219.9" y="565" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="222.89" y="575.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="368.3" y="757" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="371.32" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (20,202,020 samples, 0.07%)</title><rect x="163.0" y="581" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="165.98" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (50,505,050 samples, 0.16%)</title><rect x="434.8" y="565" width="2.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="437.79" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="494.9" y="661" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="497.89" y="671.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="396.5" y="597" width="0.5" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="399.55" y="607.5" ></text>
+</g>
+<g >
+<title>iput (101,010,100 samples, 0.33%)</title><rect x="605.1" y="661" width="4.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="608.07" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="642.9" y="741" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="645.86" y="751.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="490.3" y="613" width="0.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="493.34" y="623.5" ></text>
+</g>
+<g >
+<title>security_inode_need_killpriv (10,101,010 samples, 0.03%)</title><rect x="385.6" y="597" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="388.62" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (10,101,010 samples, 0.03%)</title><rect x="296.4" y="773" width="0.4" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="299.38" y="783.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (60,606,060 samples, 0.20%)</title><rect x="1012.6" y="709" width="2.7" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1015.56" y="719.5" ></text>
+</g>
+<g >
+<title>net_send (494,949,490 samples, 1.62%)</title><rect x="1011.6" y="949" width="22.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1014.65" y="959.5" >n..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="265.9" y="821" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="268.88" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (40,404,040 samples, 0.13%)</title><rect x="576.4" y="789" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="579.39" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_child_process (50,505,050 samples, 0.16%)</title><rect x="1036.2" y="325" width="2.3" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1039.24" y="335.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="65.5" y="837" width="1.0" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="68.55" y="847.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="378.3" y="645" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="381.33" y="655.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="407.5" y="741" width="0.4" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="410.47" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="494.9" y="837" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="497.89" y="847.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="519.9" y="709" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="522.93" y="719.5" ></text>
+</g>
+<g >
+<title>__do_softirq (50,505,050 samples, 0.16%)</title><rect x="1013.0" y="485" width="2.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1016.02" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="278.6" y="581" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="281.62" y="591.5" ></text>
+</g>
+<g >
+<title>fscrypt_match_name (10,101,010 samples, 0.03%)</title><rect x="502.2" y="629" width="0.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="505.17" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="680.6" y="885" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="683.65" y="895.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (50,505,050 samples, 0.16%)</title><rect x="43.7" y="901" width="2.3" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="46.69" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (40,404,040 samples, 0.13%)</title><rect x="248.1" y="629" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="251.12" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (30,303,030 samples, 0.10%)</title><rect x="41.9" y="949" width="1.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="44.87" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (111,111,110 samples, 0.36%)</title><rect x="206.7" y="629" width="5.0" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="209.69" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.03%)</title><rect x="384.3" y="533" width="0.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="387.25" y="543.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (121,212,120 samples, 0.40%)</title><rect x="579.6" y="821" width="5.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="582.57" y="831.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="43.7" y="789" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="46.69" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.07%)</title><rect x="450.7" y="453" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="453.73" y="463.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (60,606,060 samples, 0.20%)</title><rect x="1012.6" y="645" width="2.7" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1015.56" y="655.5" ></text>
+</g>
+<g >
+<title>git_reference_iterator_new (30,303,030 samples, 0.10%)</title><rect x="480.3" y="837" width="1.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="483.32" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="266.3" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="269.33" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (50,505,050 samples, 0.16%)</title><rect x="39.1" y="949" width="2.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="42.14" y="959.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (10,101,010 samples, 0.03%)</title><rect x="1376.3" y="325" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1379.34" y="335.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="160.7" y="565" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="163.70" y="575.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (20,202,020 samples, 0.07%)</title><rect x="449.8" y="453" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="452.82" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="503.5" y="709" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="506.54" y="719.5" ></text>
+</g>
+<g >
+<title>__sock_release (20,202,020 samples, 0.07%)</title><rect x="1034.0" y="837" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1036.96" y="847.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (20,202,020 samples, 0.07%)</title><rect x="1370.4" y="805" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1373.42" y="815.5" ></text>
+</g>
+<g >
+<title>__fput (20,202,020 samples, 0.07%)</title><rect x="137.9" y="725" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="140.94" y="735.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="127.5" y="725" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="130.47" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="658.8" y="773" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="661.80" y="783.5" ></text>
+</g>
+<g >
+<title>net_rx_action (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="501" width="4.1" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1029.22" y="511.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="752.6" y="773" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="755.59" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (20,202,020 samples, 0.07%)</title><rect x="319.1" y="661" width="1.0" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="322.15" y="671.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="752.1" y="773" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="755.13" y="783.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="479.0" y="597" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="481.95" y="607.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="478.0" y="549" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="481.04" y="559.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (20,202,020 samples, 0.07%)</title><rect x="460.7" y="501" width="1.0" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="463.74" y="511.5" ></text>
+</g>
+<g >
+<title>free_rb_tree_fname (10,101,010 samples, 0.03%)</title><rect x="138.4" y="693" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="141.39" y="703.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="260.4" y="677" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="263.41" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="530.9" y="725" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="533.86" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (10,101,010 samples, 0.03%)</title><rect x="187.1" y="645" width="0.5" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="190.11" y="655.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (20,202,020 samples, 0.07%)</title><rect x="248.1" y="597" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="251.12" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (222,222,220 samples, 0.73%)</title><rect x="625.6" y="741" width="10.0" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="628.56" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="198.0" y="693" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="201.04" y="703.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="495.3" y="757" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="498.34" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (20,202,020 samples, 0.07%)</title><rect x="369.7" y="741" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="372.68" y="751.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="13.6" y="789" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="16.64" y="799.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="123.4" y="517" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="126.37" y="527.5" ></text>
+</g>
+<g >
+<title>block_invalidate_folio (10,101,010 samples, 0.03%)</title><rect x="231.7" y="661" width="0.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="234.73" y="671.5" ></text>
+</g>
+<g >
+<title>git_repository__cleanup (10,101,010 samples, 0.03%)</title><rect x="411.1" y="821" width="0.5" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="414.12" y="831.5" ></text>
+</g>
+<g >
+<title>release_pages (10,101,010 samples, 0.03%)</title><rect x="549.1" y="549" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="552.07" y="559.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.03%)</title><rect x="195.3" y="661" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="198.31" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="642.9" y="837" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="645.86" y="847.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.03%)</title><rect x="543.2" y="549" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="546.15" y="559.5" ></text>
+</g>
+<g >
+<title>open64 (40,404,040 samples, 0.13%)</title><rect x="534.5" y="821" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="537.50" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="513.1" y="437" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="516.10" y="447.5" ></text>
+</g>
+<g >
+<title>account_kernel_stack (10,101,010 samples, 0.03%)</title><rect x="32.3" y="741" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="35.31" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="132.0" y="549" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="135.02" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_create_access (10,101,010 samples, 0.03%)</title><rect x="52.8" y="837" width="0.5" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="55.80" y="847.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.07%)</title><rect x="285.9" y="725" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="288.91" y="735.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (40,404,040 samples, 0.13%)</title><rect x="1380.0" y="725" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1382.98" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_statx (40,404,040 samples, 0.13%)</title><rect x="55.5" y="933" width="1.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="58.53" y="943.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="390.2" y="645" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="393.17" y="655.5" ></text>
+</g>
+<g >
+<title>add_transaction_credits (10,101,010 samples, 0.03%)</title><rect x="379.2" y="565" width="0.5" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="382.24" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="502.2" y="677" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="505.17" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (40,404,040 samples, 0.13%)</title><rect x="171.2" y="501" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="174.17" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="404.7" y="709" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="407.74" y="719.5" ></text>
+</g>
+<g >
+<title>down_write (20,202,020 samples, 0.07%)</title><rect x="709.8" y="757" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="712.79" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="1034.9" y="965" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1037.87" y="975.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="370.6" y="837" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="373.59" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.03%)</title><rect x="100.6" y="549" width="0.5" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="103.60" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.03%)</title><rect x="214.0" y="757" width="0.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="216.97" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="587.3" y="661" width="0.5" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="590.31" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="523.6" y="677" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="526.57" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="300.5" y="629" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="303.48" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.03%)</title><rect x="295.0" y="645" width="0.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="298.01" y="655.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.03%)</title><rect x="467.1" y="677" width="0.5" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="470.12" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="227.6" y="629" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="230.63" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="504.0" y="597" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="507.00" y="607.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="524.5" y="661" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="527.48" y="671.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.03%)</title><rect x="21.8" y="853" width="0.5" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="24.84" y="863.5" ></text>
+</g>
+<g >
+<title>mntput_no_expire (10,101,010 samples, 0.03%)</title><rect x="78.3" y="885" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="81.29" y="895.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_tcp_packet (10,101,010 samples, 0.03%)</title><rect x="1038.5" y="661" width="0.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1041.51" y="671.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="585.9" y="661" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="588.95" y="671.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="853" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1046.98" y="863.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_state (30,303,030 samples, 0.10%)</title><rect x="767.6" y="629" width="1.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="770.61" y="639.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (404,040,400 samples, 1.32%)</title><rect x="597.8" y="869" width="18.2" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="600.79" y="879.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="1022.1" y="613" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1025.12" y="623.5" ></text>
+</g>
+<g >
+<title>__sk_mem_reduce_allocated (10,101,010 samples, 0.03%)</title><rect x="23.2" y="661" width="0.5" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="26.20" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="155.7" y="629" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="158.69" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="455.3" y="725" width="0.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="458.28" y="735.5" ></text>
+</g>
+<g >
+<title>generic_update_time (10,101,010 samples, 0.03%)</title><rect x="346.0" y="597" width="0.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="349.01" y="607.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (10,101,010 samples, 0.03%)</title><rect x="11.8" y="293" width="0.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="14.82" y="303.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="177.1" y="597" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="180.09" y="607.5" ></text>
+</g>
+<g >
+<title>list_lru_add_obj (10,101,010 samples, 0.03%)</title><rect x="263.1" y="597" width="0.5" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="266.14" y="607.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="425.2" y="613" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="428.23" y="623.5" ></text>
+</g>
+<g >
+<title>do_wp_page (10,101,010 samples, 0.03%)</title><rect x="602.8" y="693" width="0.4" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="605.79" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="453.9" y="741" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="456.91" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.07%)</title><rect x="297.7" y="581" width="1.0" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="300.75" y="591.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="405.2" y="725" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="408.20" y="735.5" ></text>
+</g>
+<g >
+<title>generic_fillattr (10,101,010 samples, 0.03%)</title><rect x="681.6" y="741" width="0.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="684.56" y="751.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.03%)</title><rect x="308.7" y="709" width="0.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="311.67" y="719.5" ></text>
+</g>
+<g >
+<title>alloc_file_pseudo (10,101,010 samples, 0.03%)</title><rect x="38.2" y="805" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="41.23" y="815.5" ></text>
+</g>
+<g >
+<title>sock_alloc_inode (10,101,010 samples, 0.03%)</title><rect x="1034.9" y="837" width="0.4" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="1037.87" y="847.5" ></text>
+</g>
+<g >
+<title>vfs_rename (80,808,080 samples, 0.26%)</title><rect x="594.1" y="693" width="3.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="597.14" y="703.5" ></text>
+</g>
+<g >
+<title>copy_p4d_range (202,020,200 samples, 0.66%)</title><rect x="700.7" y="741" width="9.1" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="703.68" y="751.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="109.7" y="629" width="0.5" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="112.71" y="639.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="685.7" y="693" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="688.66" y="703.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.03%)</title><rect x="566.8" y="565" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="569.83" y="575.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.03%)</title><rect x="336.4" y="693" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="339.45" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (10,101,010 samples, 0.03%)</title><rect x="11.8" y="389" width="0.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="14.82" y="399.5" ></text>
+</g>
+<g >
+<title>printbuf_memappend (555,555,550 samples, 1.81%)</title><rect x="986.2" y="869" width="25.0" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="989.15" y="879.5" >p..</text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.03%)</title><rect x="642.4" y="645" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="645.41" y="655.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (10,101,010 samples, 0.03%)</title><rect x="277.7" y="613" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="280.71" y="623.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="565.5" y="565" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="568.46" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="73.3" y="789" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="76.29" y="799.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (20,202,020 samples, 0.07%)</title><rect x="326.0" y="709" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="328.97" y="719.5" ></text>
+</g>
+<g >
+<title>mutex_unlock (10,101,010 samples, 0.03%)</title><rect x="124.7" y="597" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="127.73" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="404.7" y="645" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="407.74" y="655.5" ></text>
+</g>
+<g >
+<title>__check_object_size (20,202,020 samples, 0.07%)</title><rect x="575.5" y="741" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="578.48" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (60,606,060 samples, 0.20%)</title><rect x="18.7" y="933" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="21.65" y="943.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="585.5" y="709" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="588.49" y="719.5" ></text>
+</g>
+<g >
+<title>strerror_l (10,101,010 samples, 0.03%)</title><rect x="534.0" y="741" width="0.5" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="537.04" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (404,040,400 samples, 1.32%)</title><rect x="1349.0" y="917" width="18.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1352.02" y="927.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="479.9" y="773" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="482.86" y="783.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.03%)</title><rect x="292.7" y="693" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="295.74" y="703.5" ></text>
+</g>
+<g >
+<title>scsi_complete (20,202,020 samples, 0.07%)</title><rect x="1345.8" y="853" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1348.84" y="863.5" ></text>
+</g>
+<g >
+<title>__sys_connect_file (181,818,180 samples, 0.59%)</title><rect x="1035.3" y="885" width="8.2" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="1038.32" y="895.5" ></text>
+</g>
+<g >
+<title>__fput (111,111,110 samples, 0.36%)</title><rect x="22.3" y="821" width="5.0" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="25.29" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (40,404,040 samples, 0.13%)</title><rect x="227.2" y="709" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="230.18" y="719.5" ></text>
+</g>
+<g >
+<title>process_backlog (40,404,040 samples, 0.13%)</title><rect x="1040.3" y="549" width="1.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1043.33" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="297.3" y="773" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="300.29" y="783.5" ></text>
+</g>
+<g >
+<title>do_wp_page (10,101,010 samples, 0.03%)</title><rect x="653.3" y="501" width="0.5" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="656.33" y="511.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="668.8" y="789" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="671.81" y="799.5" ></text>
+</g>
+<g >
+<title>ci_run (1,545,454,530 samples, 5.05%)</title><rect x="688.4" y="981" width="69.7" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="691.39" y="991.5" >ci_run</text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.03%)</title><rect x="371.0" y="693" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="374.05" y="703.5" ></text>
+</g>
+<g >
+<title>apparmor_file_alloc_security (10,101,010 samples, 0.03%)</title><rect x="429.3" y="469" width="0.5" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="432.33" y="479.5" ></text>
+</g>
+<g >
+<title>__close (60,606,060 samples, 0.20%)</title><rect x="1379.1" y="965" width="2.7" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1382.07" y="975.5" ></text>
+</g>
+<g >
+<title>try_charge_memcg (10,101,010 samples, 0.03%)</title><rect x="722.1" y="757" width="0.4" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="725.08" y="767.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct_nocheck (10,101,010 samples, 0.03%)</title><rect x="553.2" y="485" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="556.17" y="495.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="700.2" y="645" width="0.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="703.23" y="655.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="346.0" y="437" width="0.5" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="349.01" y="447.5" ></text>
+</g>
+<g >
+<title>ci_cleanup_git_repo (3,333,333,300 samples, 10.89%)</title><rect x="87.9" y="981" width="150.2" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="90.86" y="991.5" >ci_cleanup_git_repo</text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="41.0" y="725" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="43.96" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (80,808,080 samples, 0.26%)</title><rect x="246.3" y="789" width="3.6" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="249.30" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.03%)</title><rect x="462.1" y="469" width="0.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="465.11" y="479.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="127.5" y="661" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="130.47" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="309.6" y="581" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="312.58" y="591.5" ></text>
+</g>
+<g >
+<title>mb_find_buddy (10,101,010 samples, 0.03%)</title><rect x="516.7" y="421" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="519.74" y="431.5" ></text>
+</g>
+<g >
+<title>nd_jump_root (10,101,010 samples, 0.03%)</title><rect x="197.1" y="677" width="0.5" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="200.13" y="687.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.03%)</title><rect x="440.7" y="789" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="443.71" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="356.9" y="517" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="359.94" y="527.5" ></text>
+</g>
+<g >
+<title>tcp_mstamp_refresh (10,101,010 samples, 0.03%)</title><rect x="1375.0" y="677" width="0.4" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="1377.98" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.03%)</title><rect x="384.3" y="629" width="0.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="387.25" y="639.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (20,202,020 samples, 0.07%)</title><rect x="1341.3" y="757" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1344.28" y="767.5" ></text>
+</g>
+<g >
+<title>rmdir (90,909,090 samples, 0.30%)</title><rect x="103.8" y="725" width="4.1" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="106.79" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="591.9" y="565" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="594.87" y="575.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.03%)</title><rect x="1022.1" y="581" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1025.12" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="673.4" y="837" width="1.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="676.37" y="847.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="296.4" y="821" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="299.38" y="831.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="672.5" y="773" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="675.45" y="783.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (40,404,040 samples, 0.13%)</title><rect x="59.6" y="885" width="1.8" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="62.63" y="895.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="487.1" y="677" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="490.15" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (70,707,070 samples, 0.23%)</title><rect x="647.0" y="853" width="3.1" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="649.96" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.07%)</title><rect x="167.1" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="170.08" y="543.5" ></text>
+</g>
+<g >
+<title>inet6_release (10,101,010 samples, 0.03%)</title><rect x="14.6" y="837" width="0.4" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="17.55" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.03%)</title><rect x="710.2" y="533" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="713.24" y="543.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (373,737,370 samples, 1.22%)</title><rect x="1350.4" y="901" width="16.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1353.39" y="911.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.07%)</title><rect x="306.4" y="629" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="309.40" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="596.0" y="501" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="598.97" y="511.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="546.3" y="549" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="549.34" y="559.5" ></text>
+</g>
+<g >
+<title>alloc_anon_folio (60,606,060 samples, 0.20%)</title><rect x="1360.4" y="789" width="2.7" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1363.41" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_es_free_extent (10,101,010 samples, 0.03%)</title><rect x="113.4" y="549" width="0.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="116.35" y="559.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (20,202,020 samples, 0.07%)</title><rect x="1013.9" y="293" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1016.93" y="303.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="511.7" y="565" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="514.74" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (30,303,030 samples, 0.10%)</title><rect x="447.1" y="645" width="1.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="450.08" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (40,404,040 samples, 0.13%)</title><rect x="52.8" y="853" width="1.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="55.80" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="272.7" y="661" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="275.71" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.26%)</title><rect x="344.6" y="789" width="3.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="347.64" y="799.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="982.5" y="773" width="0.5" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="985.51" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="424.3" y="709" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="427.32" y="719.5" ></text>
+</g>
+<g >
+<title>mode_strip_sgid (10,101,010 samples, 0.03%)</title><rect x="560.9" y="741" width="0.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="563.91" y="751.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.03%)</title><rect x="181.6" y="693" width="0.5" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="184.65" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="438.0" y="613" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="440.98" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (50,505,050 samples, 0.16%)</title><rect x="521.3" y="773" width="2.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="524.30" y="783.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="300.9" y="597" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="303.93" y="607.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="667.9" y="629" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="670.90" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="289.6" y="773" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="292.55" y="783.5" ></text>
+</g>
+<g >
+<title>ip_local_out (10,101,010 samples, 0.03%)</title><rect x="1034.0" y="677" width="0.4" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1036.96" y="687.5" ></text>
+</g>
+<g >
+<title>lock_vma_under_rcu (10,101,010 samples, 0.03%)</title><rect x="1009.4" y="789" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1012.37" y="799.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.03%)</title><rect x="334.6" y="677" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="337.63" y="687.5" ></text>
+</g>
+<g >
+<title>__radix_tree_lookup (10,101,010 samples, 0.03%)</title><rect x="754.9" y="757" width="0.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="757.86" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (10,101,010 samples, 0.03%)</title><rect x="630.6" y="613" width="0.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="633.57" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="290.0" y="821" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="293.01" y="831.5" ></text>
+</g>
+<g >
+<title>free_unref_page_commit (10,101,010 samples, 0.03%)</title><rect x="1012.1" y="613" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1015.10" y="623.5" ></text>
+</g>
+<g >
+<title>ima_file_check (10,101,010 samples, 0.03%)</title><rect x="182.1" y="725" width="0.5" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="185.10" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_attach_jinode (10,101,010 samples, 0.03%)</title><rect x="60.1" y="869" width="0.4" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="63.08" y="879.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="518.6" y="613" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="521.56" y="623.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="234.0" y="821" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="237.01" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="534.0" y="757" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="537.04" y="767.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.03%)</title><rect x="426.1" y="469" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="429.14" y="479.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="407.0" y="693" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="410.02" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (90,909,090 samples, 0.30%)</title><rect x="275.4" y="789" width="4.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="278.44" y="799.5" ></text>
+</g>
+<g >
+<title>make_pollfds (20,202,020 samples, 0.07%)</title><rect x="27.8" y="981" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="30.76" y="991.5" ></text>
+</g>
+<g >
+<title>do_rmdir (90,909,090 samples, 0.30%)</title><rect x="103.8" y="645" width="4.1" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="106.79" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="215.3" y="789" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="218.34" y="799.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="397.5" y="661" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="400.46" y="671.5" ></text>
+</g>
+<g >
+<title>git_error_set (10,101,010 samples, 0.03%)</title><rect x="480.3" y="661" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="483.32" y="671.5" ></text>
+</g>
+<g >
+<title>__output_copy.isra.0 (10,101,010 samples, 0.03%)</title><rect x="1367.7" y="677" width="0.4" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1370.69" y="687.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="262.7" y="677" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="265.69" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="466.2" y="773" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="469.21" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.03%)</title><rect x="103.3" y="629" width="0.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="106.34" y="639.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="584.6" y="693" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="587.58" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="349.7" y="693" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="352.65" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.07%)</title><rect x="321.4" y="693" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="324.42" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="392.0" y="789" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="394.99" y="799.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (40,404,040 samples, 0.13%)</title><rect x="1040.3" y="517" width="1.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1043.33" y="527.5" ></text>
+</g>
+<g >
+<title>kmalloc_trace (10,101,010 samples, 0.03%)</title><rect x="753.5" y="805" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="756.50" y="815.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="257.2" y="629" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="260.23" y="639.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="398.8" y="709" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="401.82" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="372.4" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="375.42" y="783.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (10,101,010 samples, 0.03%)</title><rect x="455.3" y="565" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="458.28" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="490.8" y="693" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="493.79" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="100.1" y="533" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="103.15" y="543.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="139.8" y="677" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="142.76" y="687.5" ></text>
+</g>
+<g >
+<title>_Fork (696,969,690 samples, 2.28%)</title><rect x="688.4" y="917" width="31.4" height="15.0" fill="rgb(0,237,201)" rx="2" ry="2" />
+<text x="691.39" y="927.5" >_F..</text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="237.6" y="821" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="240.65" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="557.3" y="661" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="560.26" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="438.4" y="629" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="441.43" y="639.5" ></text>
+</g>
+<g >
+<title>connect (151,515,150 samples, 0.49%)</title><rect x="1382.7" y="981" width="6.8" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1385.72" y="991.5" ></text>
+</g>
+<g >
+<title>ext4_release_folio (10,101,010 samples, 0.03%)</title><rect x="231.7" y="629" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="234.73" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="438.0" y="693" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="440.98" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="1034.9" y="949" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1037.87" y="959.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="1370.4" y="965" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1373.42" y="975.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="455.7" y="821" width="0.5" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="458.73" y="831.5" ></text>
+</g>
+<g >
+<title>inode_sub_bytes (10,101,010 samples, 0.03%)</title><rect x="219.4" y="565" width="0.5" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="222.44" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.07%)</title><rect x="217.2" y="661" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="220.16" y="671.5" ></text>
+</g>
+<g >
+<title>__sk_flush_backlog (90,909,090 samples, 0.30%)</title><rect x="1012.6" y="773" width="4.1" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1015.56" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="467.1" y="869" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="470.12" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="364.7" y="517" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="367.68" y="527.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="399.3" y="629" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="402.28" y="639.5" ></text>
+</g>
+<g >
+<title>ksys_write (30,303,030 samples, 0.10%)</title><rect x="426.1" y="661" width="1.4" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="429.14" y="671.5" ></text>
+</g>
+<g >
+<title>kfree (10,101,010 samples, 0.03%)</title><rect x="124.3" y="549" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="127.28" y="559.5" ></text>
+</g>
+<g >
+<title>__fsnotify_inode_delete (10,101,010 samples, 0.03%)</title><rect x="103.8" y="581" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="106.79" y="591.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.03%)</title><rect x="1382.3" y="837" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="1385.26" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.03%)</title><rect x="161.2" y="629" width="0.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="164.16" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.03%)</title><rect x="1379.5" y="741" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1382.53" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (30,303,030 samples, 0.10%)</title><rect x="83.3" y="853" width="1.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="86.30" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="331.0" y="645" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="333.98" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="591.9" y="533" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="594.87" y="543.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="133" width="0.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1030.58" y="143.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (10,101,010 samples, 0.03%)</title><rect x="501.3" y="661" width="0.4" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="504.26" y="671.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.07%)</title><rect x="601.4" y="773" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="604.43" y="783.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (20,202,020 samples, 0.07%)</title><rect x="90.6" y="853" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="93.59" y="863.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="513.1" y="501" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="516.10" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="244.5" y="837" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="247.48" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (60,606,060 samples, 0.20%)</title><rect x="610.5" y="661" width="2.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="613.53" y="671.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="505.8" y="565" width="0.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="508.82" y="575.5" ></text>
+</g>
+<g >
+<title>release_sock (10,101,010 samples, 0.03%)</title><rect x="10.9" y="821" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="13.91" y="831.5" ></text>
+</g>
+<g >
+<title>ip_local_out (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="677" width="4.1" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1029.22" y="687.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="342.8" y="709" width="0.5" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="345.82" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.03%)</title><rect x="204.0" y="661" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="206.96" y="671.5" ></text>
+</g>
+<g >
+<title>iterate_dir (20,202,020 samples, 0.07%)</title><rect x="369.7" y="773" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="372.68" y="783.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="699.8" y="677" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="702.77" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="372.0" y="789" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="374.96" y="799.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="425.7" y="469" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="428.68" y="479.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="1367.2" y="821" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1370.24" y="831.5" ></text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.03%)</title><rect x="356.9" y="501" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="359.94" y="511.5" ></text>
+</g>
+<g >
+<title>ci_prepare_git_repo (9,989,898,890 samples, 32.63%)</title><rect x="238.1" y="981" width="450.3" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="241.10" y="991.5" >ci_prepare_git_repo</text>
+</g>
+<g >
+<title>getname (20,202,020 samples, 0.07%)</title><rect x="79.2" y="949" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="82.20" y="959.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="301.8" y="741" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="304.84" y="751.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="491.2" y="645" width="1.0" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="494.25" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="202.1" y="661" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="205.13" y="671.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="368.3" y="677" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="371.32" y="687.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="150.7" y="661" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="153.69" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_release_folio (10,101,010 samples, 0.03%)</title><rect x="190.3" y="565" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="193.30" y="575.5" ></text>
+</g>
+<g >
+<title>__tcp_close (50,505,050 samples, 0.16%)</title><rect x="1379.5" y="789" width="2.3" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1382.53" y="799.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="464.4" y="773" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="467.38" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_ext_index_trans_blocks (10,101,010 samples, 0.03%)</title><rect x="211.7" y="629" width="0.5" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="214.70" y="639.5" ></text>
+</g>
+<g >
+<title>ima_file_check (10,101,010 samples, 0.03%)</title><rect x="302.3" y="629" width="0.5" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="305.30" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="649.7" y="741" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="652.69" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="430.2" y="629" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="433.24" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="569.1" y="549" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="572.10" y="559.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (90,909,090 samples, 0.30%)</title><rect x="363.3" y="629" width="4.1" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="366.31" y="639.5" ></text>
+</g>
+<g >
+<title>inflateInit2_ (10,101,010 samples, 0.03%)</title><rect x="525.4" y="725" width="0.4" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="528.39" y="735.5" ></text>
+</g>
+<g >
+<title>unlink_cb (727,272,720 samples, 2.38%)</title><rect x="148.4" y="821" width="32.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="151.41" y="831.5" >un..</text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="298.7" y="773" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="301.66" y="783.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.03%)</title><rect x="465.3" y="773" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="468.30" y="783.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="494.9" y="613" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="497.89" y="623.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="597" width="1.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1378.43" y="607.5" ></text>
+</g>
+<g >
+<title>write (40,404,040 samples, 0.13%)</title><rect x="576.4" y="853" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="579.39" y="863.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="389.3" y="709" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="392.26" y="719.5" ></text>
+</g>
+<g >
+<title>__file_remove_privs (10,101,010 samples, 0.03%)</title><rect x="576.4" y="693" width="0.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="579.39" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_clone3 (141,414,140 samples, 0.46%)</title><rect x="28.7" y="805" width="6.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="31.67" y="815.5" ></text>
+</g>
+<g >
+<title>io_schedule (10,101,010 samples, 0.03%)</title><rect x="608.7" y="517" width="0.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="611.71" y="527.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="506.7" y="661" width="1.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="509.73" y="671.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="499.9" y="741" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="502.90" y="751.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="468.5" y="645" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="471.48" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.03%)</title><rect x="202.6" y="629" width="0.4" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="205.59" y="639.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.07%)</title><rect x="479.0" y="645" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="481.95" y="655.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="558.2" y="661" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="561.18" y="671.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="198.0" y="677" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="201.04" y="687.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.03%)</title><rect x="22.7" y="597" width="0.5" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="25.75" y="607.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.07%)</title><rect x="426.6" y="517" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="429.60" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="202.1" y="629" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="205.13" y="639.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (40,404,040 samples, 0.13%)</title><rect x="1036.2" y="309" width="1.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1039.24" y="319.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="701.6" y="709" width="0.4" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="704.59" y="719.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="664.3" y="661" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="667.26" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="430.2" y="645" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="433.24" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="619.6" y="709" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="622.64" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="453.9" y="821" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="456.91" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (313,131,310 samples, 1.02%)</title><rect x="423.9" y="805" width="14.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="426.86" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="371.0" y="789" width="1.0" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="374.05" y="799.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="487.1" y="661" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="490.15" y="671.5" ></text>
+</g>
+<g >
+<title>check_stack_object (10,101,010 samples, 0.03%)</title><rect x="656.1" y="693" width="0.4" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="659.06" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="136.1" y="597" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="139.12" y="607.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.03%)</title><rect x="214.4" y="757" width="0.5" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="217.43" y="767.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="190.8" y="645" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="193.75" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.16%)</title><rect x="234.9" y="853" width="2.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="237.92" y="863.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="263.1" y="645" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="266.14" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (101,010,100 samples, 0.33%)</title><rect x="334.6" y="789" width="4.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="337.63" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="438.4" y="757" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="441.43" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (232,323,230 samples, 0.76%)</title><rect x="658.3" y="837" width="10.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="661.34" y="847.5" ></text>
+</g>
+<g >
+<title>closedir@plt (10,101,010 samples, 0.03%)</title><rect x="332.3" y="837" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="335.35" y="847.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="708.0" y="549" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="710.97" y="559.5" ></text>
+</g>
+<g >
+<title>net_send_part (50,505,050 samples, 0.16%)</title><rect x="10.0" y="965" width="2.3" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="13.00" y="975.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.07%)</title><rect x="667.9" y="661" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="670.90" y="671.5" ></text>
+</g>
+<g >
+<title>mas_walk (10,101,010 samples, 0.03%)</title><rect x="542.2" y="613" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="545.24" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="620.6" y="709" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="623.55" y="719.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="546.8" y="389" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="549.79" y="399.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="481.7" y="629" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="484.69" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="569.1" y="533" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="572.10" y="543.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="636.9" y="805" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="639.94" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (181,818,180 samples, 0.59%)</title><rect x="589.6" y="773" width="8.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="592.59" y="783.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (10,101,010 samples, 0.03%)</title><rect x="593.2" y="581" width="0.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="596.23" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="570.5" y="725" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="573.47" y="735.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="352.4" y="709" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="355.38" y="719.5" ></text>
+</g>
+<g >
+<title>walk_component (90,909,090 samples, 0.30%)</title><rect x="580.9" y="709" width="4.1" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="583.94" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="307.3" y="773" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="310.31" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (959,595,950 samples, 3.13%)</title><rect x="253.6" y="933" width="43.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="256.58" y="943.5" >[lib..</text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (30,303,030 samples, 0.10%)</title><rect x="322.3" y="661" width="1.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="325.33" y="671.5" ></text>
+</g>
+<g >
+<title>mas_store_prealloc (10,101,010 samples, 0.03%)</title><rect x="116.5" y="581" width="0.5" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="119.54" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_append (40,404,040 samples, 0.13%)</title><rect x="686.6" y="773" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="689.57" y="783.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.03%)</title><rect x="326.0" y="693" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="328.97" y="703.5" ></text>
+</g>
+<g >
+<title>alloc_file_pseudo (30,303,030 samples, 0.10%)</title><rect x="752.1" y="821" width="1.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="755.13" y="831.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="445.7" y="693" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="448.72" y="703.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (10,101,010 samples, 0.03%)</title><rect x="1017.6" y="725" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1020.57" y="735.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="722.1" y="885" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="725.08" y="895.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (10,101,010 samples, 0.03%)</title><rect x="1347.7" y="917" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1350.66" y="927.5" ></text>
+</g>
+<g >
+<title>__ext4_link (10,101,010 samples, 0.03%)</title><rect x="556.8" y="725" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="559.81" y="735.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="258.6" y="581" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="261.59" y="591.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="617.4" y="741" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="620.36" y="751.5" ></text>
+</g>
+<g >
+<title>map_id_range_down (10,101,010 samples, 0.03%)</title><rect x="537.7" y="741" width="0.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="540.69" y="751.5" ></text>
+</g>
+<g >
+<title>git_branch_is_checked_out (333,333,330 samples, 1.09%)</title><rect x="408.8" y="869" width="15.1" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="411.84" y="879.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="589.1" y="629" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="592.14" y="639.5" ></text>
+</g>
+<g >
+<title>io_schedule (10,101,010 samples, 0.03%)</title><rect x="62.8" y="757" width="0.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="65.81" y="767.5" ></text>
+</g>
+<g >
+<title>security_file_permission (10,101,010 samples, 0.03%)</title><rect x="146.6" y="709" width="0.4" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" />
+<text x="149.59" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="653.8" y="661" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="656.79" y="671.5" ></text>
+</g>
+<g >
+<title>mkdir (121,212,120 samples, 0.40%)</title><rect x="682.9" y="917" width="5.5" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="685.93" y="927.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (20,202,020 samples, 0.07%)</title><rect x="114.7" y="645" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="117.72" y="655.5" ></text>
+</g>
+<g >
+<title>__inode_attach_wb (10,101,010 samples, 0.03%)</title><rect x="687.0" y="661" width="0.5" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="690.02" y="671.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="658.8" y="613" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="661.80" y="623.5" ></text>
+</g>
+<g >
+<title>strcmp (10,101,010 samples, 0.03%)</title><rect x="385.6" y="565" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="388.62" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="128.4" y="789" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="131.38" y="799.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="303.2" y="757" width="0.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="306.21" y="767.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (20,202,020 samples, 0.07%)</title><rect x="1346.7" y="885" width="1.0" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1349.75" y="895.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (20,202,020 samples, 0.07%)</title><rect x="191.2" y="709" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="194.21" y="719.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.03%)</title><rect x="58.7" y="917" width="0.5" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="61.72" y="927.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="168.0" y="517" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="170.99" y="527.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="604.2" y="693" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="607.16" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="422.5" y="677" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="425.50" y="687.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="609.2" y="581" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="612.17" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="407.9" y="709" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="410.93" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="1370.4" y="933" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1373.42" y="943.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.13%)</title><rect x="163.9" y="597" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="166.89" y="607.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="601.4" y="501" width="0.5" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="604.43" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (393,939,390 samples, 1.29%)</title><rect x="196.2" y="789" width="17.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="199.22" y="799.5" ></text>
+</g>
+<g >
+<title>git_error_set (10,101,010 samples, 0.03%)</title><rect x="373.3" y="805" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="376.33" y="815.5" ></text>
+</g>
+<g >
+<title>unlock_buffer (10,101,010 samples, 0.03%)</title><rect x="633.8" y="693" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="636.75" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (60,606,060 samples, 0.20%)</title><rect x="340.5" y="773" width="2.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="343.54" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.03%)</title><rect x="437.1" y="645" width="0.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="440.07" y="655.5" ></text>
+</g>
+<g >
+<title>scsi_prepare_cmd (10,101,010 samples, 0.03%)</title><rect x="552.7" y="357" width="0.5" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="555.71" y="367.5" ></text>
+</g>
+<g >
+<title>ip_rcv_finish_core.isra.0 (10,101,010 samples, 0.03%)</title><rect x="1029.9" y="405" width="0.4" height="15.0" fill="rgb(0,192,11)" rx="2" ry="2" />
+<text x="1032.86" y="415.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.13%)</title><rect x="420.2" y="613" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="423.22" y="623.5" ></text>
+</g>
+<g >
+<title>get_pfnblock_flags_mask (10,101,010 samples, 0.03%)</title><rect x="731.6" y="725" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="734.64" y="735.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (20,202,020 samples, 0.07%)</title><rect x="398.8" y="725" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="401.82" y="735.5" ></text>
+</g>
+<g >
+<title>unlink (20,202,020 samples, 0.07%)</title><rect x="100.1" y="709" width="1.0" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="103.15" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (60,606,060 samples, 0.20%)</title><rect x="105.2" y="581" width="2.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="108.16" y="591.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="91.5" y="901" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="94.50" y="911.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="755.8" y="869" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="758.77" y="879.5" ></text>
+</g>
+<g >
+<title>access_error (10,101,010 samples, 0.03%)</title><rect x="97.0" y="837" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="99.96" y="847.5" ></text>
+</g>
+<g >
+<title>libgit_checkout (1,454,545,440 samples, 4.75%)</title><rect x="238.1" y="965" width="65.6" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="241.10" y="975.5" >libgit_..</text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="1331.7" y="805" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1334.72" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="422.0" y="645" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="425.04" y="655.5" ></text>
+</g>
+<g >
+<title>__kmalloc (20,202,020 samples, 0.07%)</title><rect x="145.7" y="629" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="148.68" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.20%)</title><rect x="178.5" y="757" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="181.46" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="295.9" y="789" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="298.93" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_server_accept_handler (222,222,220 samples, 0.73%)</title><rect x="28.7" y="981" width="10.0" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="31.67" y="991.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.03%)</title><rect x="459.4" y="581" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="462.38" y="591.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.03%)</title><rect x="519.9" y="485" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="522.93" y="495.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.03%)</title><rect x="154.3" y="645" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="157.33" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="217.6" y="613" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="220.61" y="623.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (80,808,080 samples, 0.26%)</title><rect x="1385.9" y="677" width="3.6" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1388.90" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="678.8" y="597" width="0.5" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="681.83" y="607.5" ></text>
+</g>
+<g >
+<title>__fput_sync (20,202,020 samples, 0.07%)</title><rect x="719.8" y="837" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="722.81" y="847.5" ></text>
+</g>
+<g >
+<title>folio_add_lru_vma (20,202,020 samples, 0.07%)</title><rect x="1343.1" y="837" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1346.10" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="132.0" y="565" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="135.02" y="575.5" ></text>
+</g>
+<g >
+<title>alloc_inode (20,202,020 samples, 0.07%)</title><rect x="37.3" y="789" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="40.32" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="134.8" y="613" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="137.75" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="437.5" y="693" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="440.52" y="703.5" ></text>
+</g>
+<g >
+<title>uncharge_batch (10,101,010 samples, 0.03%)</title><rect x="732.1" y="757" width="0.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="735.10" y="767.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (40,404,040 samples, 0.13%)</title><rect x="1013.0" y="325" width="1.8" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1016.02" y="335.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="501" width="1.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1386.17" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="679.3" y="693" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="682.28" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (202,020,200 samples, 0.66%)</title><rect x="493.5" y="869" width="9.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="496.52" y="879.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="196.7" y="661" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="199.67" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.03%)</title><rect x="318.7" y="645" width="0.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="321.69" y="655.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="698.0" y="661" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="700.95" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="101.1" y="725" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="104.06" y="735.5" ></text>
+</g>
+<g >
+<title>git_error_set (10,101,010 samples, 0.03%)</title><rect x="508.1" y="741" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="511.09" y="751.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="634.2" y="629" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="637.21" y="639.5" ></text>
+</g>
+<g >
+<title>tlb_remove_table_rcu (20,202,020 samples, 0.07%)</title><rect x="1346.7" y="837" width="1.0" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1349.75" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="250.9" y="757" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="253.85" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="575.0" y="645" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="578.02" y="655.5" ></text>
+</g>
+<g >
+<title>do_futex (10,101,010 samples, 0.03%)</title><rect x="21.4" y="853" width="0.4" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="24.38" y="863.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.10%)</title><rect x="671.1" y="837" width="1.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="674.09" y="847.5" ></text>
+</g>
+<g >
+<title>try_to_free_buffers (10,101,010 samples, 0.03%)</title><rect x="231.7" y="597" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="234.73" y="607.5" ></text>
+</g>
+<g >
+<title>alloc_inode (20,202,020 samples, 0.07%)</title><rect x="621.5" y="709" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="624.46" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="538.1" y="709" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="541.14" y="719.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (20,202,020 samples, 0.07%)</title><rect x="1370.4" y="853" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1373.42" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="372.0" y="805" width="1.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="374.96" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (80,808,080 samples, 0.26%)</title><rect x="217.2" y="709" width="3.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="220.16" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (151,515,150 samples, 0.49%)</title><rect x="47.8" y="997" width="6.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="50.79" y="1007.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (40,404,040 samples, 0.13%)</title><rect x="673.4" y="869" width="1.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="676.37" y="879.5" ></text>
+</g>
+<g >
+<title>apparmor_file_permission (10,101,010 samples, 0.03%)</title><rect x="654.2" y="565" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="657.24" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="13.6" y="885" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="16.64" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="526.8" y="757" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="529.76" y="767.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (80,808,080 samples, 0.26%)</title><rect x="270.0" y="789" width="3.6" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="272.97" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (343,434,340 samples, 1.12%)</title><rect x="541.3" y="821" width="15.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="544.33" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="471.7" y="837" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="474.67" y="847.5" ></text>
+</g>
+<g >
+<title>__do_softirq (30,303,030 samples, 0.10%)</title><rect x="25.0" y="469" width="1.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="28.02" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="300.0" y="837" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="303.02" y="847.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="229.9" y="757" width="0.5" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="232.91" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="126.6" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="129.56" y="751.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="163.4" y="533" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="166.43" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (121,212,120 samples, 0.40%)</title><rect x="545.0" y="613" width="5.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="547.97" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="134.8" y="597" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="137.75" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="309.6" y="661" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="312.58" y="671.5" ></text>
+</g>
+<g >
+<title>do_filp_open (90,909,090 samples, 0.30%)</title><rect x="334.6" y="725" width="4.1" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="337.63" y="735.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="1384.1" y="293" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1387.08" y="303.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="675.6" y="773" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="678.64" y="783.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="680.2" y="677" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="683.19" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="499.0" y="805" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="501.99" y="815.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.03%)</title><rect x="1331.7" y="757" width="0.5" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1334.72" y="767.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (10,101,010 samples, 0.03%)</title><rect x="448.0" y="629" width="0.4" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="450.99" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="677.0" y="661" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="680.01" y="671.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="621.0" y="629" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="624.01" y="639.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.03%)</title><rect x="423.4" y="821" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="426.41" y="831.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.03%)</title><rect x="667.0" y="645" width="0.4" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="669.99" y="655.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.03%)</title><rect x="296.4" y="789" width="0.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="299.38" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="351.5" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="354.47" y="799.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (50,505,050 samples, 0.16%)</title><rect x="460.3" y="629" width="2.3" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="463.29" y="639.5" ></text>
+</g>
+<g >
+<title>git_signature_now (10,101,010 samples, 0.03%)</title><rect x="393.4" y="837" width="0.4" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="396.36" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="346.5" y="741" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="349.46" y="751.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (20,202,020 samples, 0.07%)</title><rect x="522.2" y="597" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="525.21" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="97.0" y="885" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="99.96" y="895.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="604.6" y="789" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="607.62" y="799.5" ></text>
+</g>
+<g >
+<title>_copy_to_user (10,101,010 samples, 0.03%)</title><rect x="215.3" y="757" width="0.5" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="218.34" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="267.2" y="773" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="270.24" y="783.5" ></text>
+</g>
+<g >
+<title>d_lru_del (10,101,010 samples, 0.03%)</title><rect x="176.2" y="613" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="179.18" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="404.3" y="789" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="407.29" y="799.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.03%)</title><rect x="700.2" y="581" width="0.5" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="703.23" y="591.5" ></text>
+</g>
+<g >
+<title>fsnotify_get_cookie (10,101,010 samples, 0.03%)</title><rect x="556.4" y="661" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="559.35" y="671.5" ></text>
+</g>
+<g >
+<title>vm_normal_page (10,101,010 samples, 0.03%)</title><rect x="769.4" y="661" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="772.43" y="671.5" ></text>
+</g>
+<g >
+<title>inet_stream_connect (141,414,140 samples, 0.46%)</title><rect x="1383.2" y="869" width="6.3" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1386.17" y="879.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="155.7" y="597" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="158.69" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_es_free_extent (10,101,010 samples, 0.03%)</title><rect x="435.7" y="485" width="0.5" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="438.70" y="495.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (171,717,170 samples, 0.56%)</title><rect x="590.0" y="709" width="7.8" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="593.05" y="719.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="653.3" y="597" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="656.33" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="285.0" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="288.00" y="767.5" ></text>
+</g>
+<g >
+<title>ip_rcv (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="405" width="3.2" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1038.32" y="415.5" ></text>
+</g>
+<g >
+<title>fscrypt_file_open (20,202,020 samples, 0.07%)</title><rect x="472.1" y="549" width="0.9" height="15.0" fill="rgb(0,198,33)" rx="2" ry="2" />
+<text x="475.12" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="105.2" y="533" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="108.16" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.03%)</title><rect x="295.0" y="661" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="298.01" y="671.5" ></text>
+</g>
+<g >
+<title>git_signature_now (10,101,010 samples, 0.03%)</title><rect x="438.4" y="821" width="0.5" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="441.43" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (40,404,040 samples, 0.13%)</title><rect x="576.4" y="741" width="1.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="579.39" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="214.0" y="805" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="216.97" y="815.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.03%)</title><rect x="539.5" y="645" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="542.51" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (131,313,130 samples, 0.43%)</title><rect x="650.1" y="805" width="6.0" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="653.15" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.16%)</title><rect x="656.1" y="837" width="2.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="659.06" y="847.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="21.4" y="885" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="24.38" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.03%)</title><rect x="232.6" y="709" width="0.5" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="235.64" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="409.3" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="412.29" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="1011.2" y="821" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1014.19" y="831.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="348.7" y="677" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="351.74" y="687.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="21.4" y="757" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="24.38" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="468.0" y="757" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="471.03" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="261.3" y="773" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="264.32" y="783.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.03%)</title><rect x="231.7" y="613" width="0.5" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="234.73" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="653.8" y="677" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="656.79" y="687.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="1057.6" y="885" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1060.63" y="895.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.03%)</title><rect x="589.1" y="645" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="592.14" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.03%)</title><rect x="643.3" y="613" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="646.32" y="623.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="551.8" y="533" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="554.80" y="543.5" ></text>
+</g>
+<g >
+<title>link (20,202,020 samples, 0.07%)</title><rect x="351.5" y="805" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="354.47" y="815.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="477.1" y="709" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="480.13" y="719.5" ></text>
+</g>
+<g >
+<title>git_reference_symbolic_create_matching (222,222,220 samples, 0.73%)</title><rect x="393.8" y="869" width="10.0" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="396.81" y="879.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="424.3" y="629" width="0.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="427.32" y="639.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (333,333,330 samples, 1.09%)</title><rect x="994.3" y="789" width="15.1" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="997.35" y="799.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="710.2" y="597" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="713.24" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (121,212,120 samples, 0.40%)</title><rect x="458.0" y="805" width="5.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="461.01" y="815.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="240.4" y="677" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="243.38" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.07%)</title><rect x="473.9" y="613" width="1.0" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="476.95" y="623.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (20,202,020 samples, 0.07%)</title><rect x="449.8" y="421" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="452.82" y="431.5" ></text>
+</g>
+<g >
+<title>__dquot_initialize (10,101,010 samples, 0.03%)</title><rect x="595.5" y="629" width="0.5" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="598.51" y="639.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (20,202,020 samples, 0.07%)</title><rect x="213.1" y="677" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="216.06" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="438.0" y="773" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="440.98" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.16%)</title><rect x="1379.5" y="949" width="2.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1382.53" y="959.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (60,606,060 samples, 0.20%)</title><rect x="226.3" y="805" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="229.27" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_superblock_csum_set (10,101,010 samples, 0.03%)</title><rect x="458.0" y="613" width="0.5" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" />
+<text x="461.01" y="623.5" ></text>
+</g>
+<g >
+<title>mntget (10,101,010 samples, 0.03%)</title><rect x="530.9" y="693" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="533.86" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (50,505,050 samples, 0.16%)</title><rect x="521.3" y="693" width="2.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="524.30" y="703.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.03%)</title><rect x="315.0" y="565" width="0.5" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="318.05" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="773" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1386.17" y="783.5" ></text>
+</g>
+<g >
+<title>git_reference_normalize_name (10,101,010 samples, 0.03%)</title><rect x="408.4" y="853" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="411.38" y="863.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="117" width="0.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1030.58" y="127.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="446.6" y="773" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="449.63" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="367.4" y="645" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="370.41" y="655.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (20,202,020 samples, 0.07%)</title><rect x="231.3" y="709" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="234.27" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="374.2" y="725" width="1.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="377.24" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (50,505,050 samples, 0.16%)</title><rect x="573.2" y="757" width="2.3" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="576.20" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (30,303,030 samples, 0.10%)</title><rect x="171.6" y="437" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="174.63" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (10,101,010 samples, 0.03%)</title><rect x="501.3" y="693" width="0.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="504.26" y="703.5" ></text>
+</g>
+<g >
+<title>iterate_dir (20,202,020 samples, 0.07%)</title><rect x="339.6" y="741" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="342.63" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (30,303,030 samples, 0.10%)</title><rect x="137.9" y="757" width="1.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="140.94" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="398.8" y="757" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="401.82" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="499.0" y="789" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="501.99" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="413.4" y="741" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="416.39" y="751.5" ></text>
+</g>
+<g >
+<title>__socket (10,101,010 samples, 0.03%)</title><rect x="1034.9" y="981" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1037.87" y="991.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="391.5" y="741" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="394.54" y="751.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="471.2" y="789" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="474.21" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="386.5" y="773" width="1.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="389.53" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="534.5" y="789" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="537.50" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.03%)</title><rect x="260.4" y="741" width="0.5" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="263.41" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="377.0" y="725" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="379.97" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="241.7" y="757" width="1.0" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="244.75" y="767.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="397.0" y="629" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="400.00" y="639.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="708.0" y="629" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="710.97" y="639.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (20,202,020 samples, 0.07%)</title><rect x="719.8" y="773" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="722.81" y="783.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.03%)</title><rect x="552.7" y="437" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="555.71" y="447.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="234.0" y="901" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="237.01" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="585.5" y="741" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="588.49" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="51.4" y="869" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="54.43" y="879.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="708.0" y="581" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="710.97" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (313,131,310 samples, 1.02%)</title><rect x="239.5" y="901" width="14.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="242.47" y="911.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="305.9" y="741" width="1.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="308.94" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (40,404,040 samples, 0.13%)</title><rect x="1013.0" y="309" width="1.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1016.02" y="319.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (30,303,030 samples, 0.10%)</title><rect x="426.1" y="597" width="1.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="429.14" y="607.5" ></text>
+</g>
+<g >
+<title>rm_rf (3,090,909,060 samples, 10.10%)</title><rect x="98.8" y="965" width="139.3" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="101.78" y="975.5" >rm_rf</text>
+</g>
+<g >
+<title>ext4_mb_find_by_goal (10,101,010 samples, 0.03%)</title><rect x="631.9" y="613" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="634.93" y="623.5" ></text>
+</g>
+<g >
+<title>touch_atime (20,202,020 samples, 0.07%)</title><rect x="225.4" y="773" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="228.35" y="783.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="982.5" y="805" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="985.51" y="815.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="397.0" y="613" width="0.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="400.00" y="623.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="469.4" y="661" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="472.39" y="671.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.03%)</title><rect x="13.6" y="933" width="0.5" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="16.64" y="943.5" ></text>
+</g>
+<g >
+<title>do_rmdir (161,616,160 samples, 0.53%)</title><rect x="119.3" y="677" width="7.3" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="122.27" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="679.7" y="693" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="682.74" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.07%)</title><rect x="687.0" y="725" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="690.02" y="735.5" ></text>
+</g>
+<g >
+<title>mas_next_slot (10,101,010 samples, 0.03%)</title><rect x="712.5" y="741" width="0.5" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="715.52" y="751.5" ></text>
+</g>
+<g >
+<title>path_put (20,202,020 samples, 0.07%)</title><rect x="456.2" y="693" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="459.19" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.33%)</title><rect x="334.6" y="805" width="4.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="337.63" y="815.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.03%)</title><rect x="38.7" y="805" width="0.4" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="41.68" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="1057.2" y="885" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1060.18" y="895.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="437" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1386.17" y="447.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (10,101,010 samples, 0.03%)</title><rect x="1333.1" y="901" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1336.09" y="911.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="693.4" y="709" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="696.40" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="548.2" y="485" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="551.16" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="274.1" y="869" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="277.07" y="879.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="494.4" y="805" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="497.43" y="815.5" ></text>
+</g>
+<g >
+<title>capable_wrt_inode_uidgid (10,101,010 samples, 0.03%)</title><rect x="260.4" y="613" width="0.5" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="263.41" y="623.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="314.1" y="549" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="317.14" y="559.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="521.3" y="501" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="524.30" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.03%)</title><rect x="229.0" y="789" width="0.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="232.00" y="799.5" ></text>
+</g>
+<g >
+<title>__sbrk (30,303,030 samples, 0.10%)</title><rect x="116.5" y="709" width="1.4" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="119.54" y="719.5" ></text>
+</g>
+<g >
+<title>sock_close (10,101,010 samples, 0.03%)</title><rect x="14.6" y="869" width="0.4" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="17.55" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="484.0" y="821" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="486.96" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (171,717,170 samples, 0.56%)</title><rect x="561.8" y="789" width="7.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="564.82" y="799.5" ></text>
+</g>
+<g >
+<title>__folio_put (10,101,010 samples, 0.03%)</title><rect x="1022.1" y="517" width="0.5" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1025.12" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="458.9" y="469" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="461.92" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (393,939,390 samples, 1.29%)</title><rect x="196.2" y="805" width="17.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="199.22" y="815.5" ></text>
+</g>
+<g >
+<title>kfree_skbmem (10,101,010 samples, 0.03%)</title><rect x="1014.8" y="421" width="0.5" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1017.84" y="431.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (50,505,050 samples, 0.16%)</title><rect x="234.9" y="821" width="2.3" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="237.92" y="831.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.03%)</title><rect x="214.0" y="741" width="0.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="216.97" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="525.4" y="805" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="528.39" y="815.5" ></text>
+</g>
+<g >
+<title>inode_init_always (10,101,010 samples, 0.03%)</title><rect x="567.3" y="629" width="0.4" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="570.28" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (70,707,070 samples, 0.23%)</title><rect x="208.1" y="581" width="3.1" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="211.05" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="532.2" y="645" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="535.22" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="594.6" y="645" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="597.60" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.03%)</title><rect x="679.3" y="629" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="682.28" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="265.9" y="805" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="268.88" y="815.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="398.8" y="693" width="0.5" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="401.82" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (10,101,010 samples, 0.03%)</title><rect x="382.0" y="501" width="0.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="384.98" y="511.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="1057.2" y="853" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1060.18" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="462.6" y="629" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="465.56" y="639.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="37" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1030.58" y="47.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="272.3" y="661" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="275.25" y="671.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.03%)</title><rect x="752.6" y="789" width="0.4" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="755.59" y="799.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="473.5" y="645" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="476.49" y="655.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (20,202,020 samples, 0.07%)</title><rect x="696.1" y="725" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="699.13" y="735.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (20,202,020 samples, 0.07%)</title><rect x="178.9" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="181.91" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (60,606,060 samples, 0.20%)</title><rect x="514.5" y="501" width="2.7" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="517.47" y="511.5" ></text>
+</g>
+<g >
+<title>net_close (20,202,020 samples, 0.07%)</title><rect x="14.6" y="1013" width="0.9" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="17.55" y="1023.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="38.7" y="821" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="41.68" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="238.1" y="917" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="241.10" y="927.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="268.6" y="709" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="271.61" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (20,202,020 samples, 0.07%)</title><rect x="25.5" y="277" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="28.48" y="287.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (252,525,250 samples, 0.82%)</title><rect x="658.3" y="853" width="11.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="661.34" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_xattr_delete_inode (10,101,010 samples, 0.03%)</title><rect x="212.2" y="661" width="0.4" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="215.15" y="671.5" ></text>
+</g>
+<g >
+<title>__put_cred (10,101,010 samples, 0.03%)</title><rect x="1334.9" y="725" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1337.91" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="374.2" y="645" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="377.24" y="655.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (20,202,020 samples, 0.07%)</title><rect x="1017.1" y="741" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1020.11" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (80,808,080 samples, 0.26%)</title><rect x="230.4" y="821" width="3.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="233.36" y="831.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (30,303,030 samples, 0.10%)</title><rect x="1331.3" y="917" width="1.3" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1334.27" y="927.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="498.5" y="725" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="501.53" y="735.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="497.6" y="581" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="500.62" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="363.8" y="549" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="366.76" y="559.5" ></text>
+</g>
+<g >
+<title>git_reference_list (121,212,120 samples, 0.40%)</title><rect x="476.2" y="869" width="5.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="479.22" y="879.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="1372.7" y="853" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1375.70" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="497.2" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="500.17" y="767.5" ></text>
+</g>
+<g >
+<title>find_lock_entries (10,101,010 samples, 0.03%)</title><rect x="132.5" y="597" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="135.47" y="607.5" ></text>
+</g>
+<g >
+<title>to_shrink_list (10,101,010 samples, 0.03%)</title><rect x="126.1" y="597" width="0.5" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="129.10" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="173.0" y="517" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="176.00" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="682.0" y="789" width="0.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="685.02" y="799.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.10%)</title><rect x="677.9" y="661" width="1.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="680.92" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.07%)</title><rect x="241.7" y="709" width="1.0" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="244.75" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="404.7" y="693" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="407.74" y="703.5" ></text>
+</g>
+<g >
+<title>mutex_unlock (10,101,010 samples, 0.03%)</title><rect x="104.7" y="597" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="107.70" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="1378.6" y="789" width="0.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1381.62" y="799.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="346.0" y="581" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="349.01" y="591.5" ></text>
+</g>
+<g >
+<title>irq_fpu_usable (10,101,010 samples, 0.03%)</title><rect x="458.0" y="581" width="0.5" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="461.01" y="591.5" ></text>
+</g>
+<g >
+<title>server_wait_for_action (50,505,050 samples, 0.16%)</title><rect x="15.5" y="1045" width="2.2" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="18.46" y="1055.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="647.0" y="821" width="3.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="649.96" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (30,303,030 samples, 0.10%)</title><rect x="147.0" y="661" width="1.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="150.04" y="671.5" ></text>
+</g>
+<g >
+<title>__sk_mem_schedule (10,101,010 samples, 0.03%)</title><rect x="1029.4" y="277" width="0.5" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="1032.41" y="287.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="388.4" y="741" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="391.35" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="392.4" y="757" width="1.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="395.45" y="767.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="398.8" y="677" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="401.82" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="546.8" y="501" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="549.79" y="511.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="503.5" y="693" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="506.54" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.26%)</title><rect x="230.4" y="853" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="233.36" y="863.5" ></text>
+</g>
+<g >
+<title>wait_transaction_locked (10,101,010 samples, 0.03%)</title><rect x="565.5" y="597" width="0.4" height="15.0" fill="rgb(0,217,113)" rx="2" ry="2" />
+<text x="568.46" y="607.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (434,343,430 samples, 1.42%)</title><rect x="616.5" y="789" width="19.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="619.45" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="595.1" y="629" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="598.05" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="525.4" y="757" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="528.39" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="553.6" y="485" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="556.62" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="481.2" y="581" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="484.23" y="591.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="1056.7" y="869" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1059.72" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.03%)</title><rect x="49.2" y="885" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="52.16" y="895.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (40,404,040 samples, 0.13%)</title><rect x="24.6" y="629" width="1.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="27.57" y="639.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="1023.0" y="677" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1026.03" y="687.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="95.1" y="885" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="98.14" y="895.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="491.7" y="581" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="494.70" y="591.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="290.0" y="741" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="293.01" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (282,828,280 samples, 0.92%)</title><rect x="658.3" y="901" width="12.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="661.34" y="911.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.03%)</title><rect x="529.5" y="565" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="532.49" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="96.1" y="869" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="99.05" y="879.5" ></text>
+</g>
+<g >
+<title>inode_to_bdi (10,101,010 samples, 0.03%)</title><rect x="629.7" y="613" width="0.4" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="632.66" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="548.2" y="501" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="551.16" y="511.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (121,212,120 samples, 0.40%)</title><rect x="1049.4" y="885" width="5.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1052.44" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="471.7" y="773" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="474.67" y="783.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.10%)</title><rect x="128.8" y="677" width="1.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="131.83" y="687.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="302.3" y="645" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="305.30" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (40,404,040 samples, 0.13%)</title><rect x="567.7" y="677" width="1.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="570.74" y="687.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="216.7" y="693" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="219.70" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="279.5" y="853" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="282.53" y="863.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="41.0" y="805" width="0.4" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="43.96" y="815.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="173.5" y="485" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="176.45" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="529.5" y="677" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="532.49" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.07%)</title><rect x="205.3" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="208.32" y="623.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="96.1" y="821" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="99.05" y="831.5" ></text>
+</g>
+<g >
+<title>ksys_write (50,505,050 samples, 0.16%)</title><rect x="443.0" y="709" width="2.3" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="445.99" y="719.5" ></text>
+</g>
+<g >
+<title>__tcp_close (20,202,020 samples, 0.07%)</title><rect x="1034.0" y="789" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1036.96" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="484.4" y="773" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="487.42" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="430.7" y="613" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="433.69" y="623.5" ></text>
+</g>
+<g >
+<title>scsi_prepare_cmd (10,101,010 samples, 0.03%)</title><rect x="461.2" y="389" width="0.5" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="464.20" y="399.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_set_param_string (464,646,460 samples, 1.52%)</title><rect x="1349.0" y="981" width="21.0" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1352.02" y="991.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="756.7" y="901" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="759.68" y="911.5" ></text>
+</g>
+<g >
+<title>__sched_fork (10,101,010 samples, 0.03%)</title><rect x="719.4" y="773" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="722.35" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (50,505,050 samples, 0.16%)</title><rect x="24.1" y="677" width="2.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="27.11" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="438.9" y="885" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="441.89" y="895.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.03%)</title><rect x="697.0" y="725" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="700.04" y="735.5" ></text>
+</g>
+<g >
+<title>path_openat (40,404,040 samples, 0.13%)</title><rect x="587.8" y="661" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="590.77" y="671.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.03%)</title><rect x="422.5" y="629" width="0.5" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="425.50" y="639.5" ></text>
+</g>
+<g >
+<title>mas_walk (10,101,010 samples, 0.03%)</title><rect x="1054.9" y="885" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1057.90" y="895.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="127.5" y="741" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="130.47" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="47.3" y="1013" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="50.33" y="1023.5" ></text>
+</g>
+<g >
+<title>d_instantiate (10,101,010 samples, 0.03%)</title><rect x="753.0" y="805" width="0.5" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="756.04" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_find_dest_de (10,101,010 samples, 0.03%)</title><rect x="273.2" y="645" width="0.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="276.16" y="655.5" ></text>
+</g>
+<g >
+<title>storvsc_do_io (10,101,010 samples, 0.03%)</title><rect x="450.3" y="357" width="0.4" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="453.27" y="367.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="551.8" y="549" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="554.80" y="559.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="83.3" y="837" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="86.30" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (181,818,180 samples, 0.59%)</title><rect x="1035.3" y="949" width="8.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1038.32" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.03%)</title><rect x="597.3" y="629" width="0.5" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="600.33" y="639.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="471.7" y="597" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="474.67" y="607.5" ></text>
+</g>
+<g >
+<title>xas_descend (10,101,010 samples, 0.03%)</title><rect x="370.1" y="549" width="0.5" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="373.14" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (20,202,020 samples, 0.07%)</title><rect x="69.2" y="821" width="0.9" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="72.19" y="831.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="21.8" y="773" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="24.84" y="783.5" ></text>
+</g>
+<g >
+<title>__do_sys_clone (696,969,690 samples, 2.28%)</title><rect x="688.4" y="837" width="31.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="691.39" y="847.5" >__..</text>
+</g>
+<g >
+<title>obj_cgroup_charge (10,101,010 samples, 0.03%)</title><rect x="717.1" y="725" width="0.4" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="720.07" y="735.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="462.1" y="453" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="465.11" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="554.1" y="517" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="557.08" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="454.4" y="773" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="457.37" y="783.5" ></text>
+</g>
+<g >
+<title>stat64 (10,101,010 samples, 0.03%)</title><rect x="492.6" y="869" width="0.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="495.61" y="879.5" ></text>
+</g>
+<g >
+<title>tcp_v4_syn_recv_sock (10,101,010 samples, 0.03%)</title><rect x="1383.6" y="293" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1386.63" y="303.5" ></text>
+</g>
+<g >
+<title>git_reference_create (606,060,600 samples, 1.98%)</title><rect x="502.6" y="869" width="27.3" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="505.63" y="879.5" >g..</text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="525.4" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="528.39" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="392.4" y="741" width="1.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="395.45" y="751.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (10,101,010 samples, 0.03%)</title><rect x="368.3" y="853" width="0.5" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="371.32" y="863.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (50,505,050 samples, 0.16%)</title><rect x="1013.0" y="469" width="2.3" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1016.02" y="479.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="578.7" y="757" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="581.66" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (343,434,340 samples, 1.12%)</title><rect x="541.3" y="805" width="15.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="544.33" y="815.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="1057.6" y="901" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1060.63" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_read_block_bitmap (10,101,010 samples, 0.03%)</title><rect x="210.8" y="533" width="0.4" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="213.79" y="543.5" ></text>
+</g>
+<g >
+<title>pthread_rwlock_destroy (10,101,010 samples, 0.03%)</title><rect x="493.1" y="789" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="496.07" y="799.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.03%)</title><rect x="645.6" y="741" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="648.59" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="1057.2" y="869" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1060.18" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.03%)</title><rect x="191.7" y="661" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="194.66" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (50,505,050 samples, 0.16%)</title><rect x="656.1" y="805" width="2.2" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="659.06" y="815.5" ></text>
+</g>
+<g >
+<title>apparmor_file_permission (10,101,010 samples, 0.03%)</title><rect x="250.9" y="645" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="253.85" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="484.4" y="725" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="487.42" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="350.6" y="709" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="353.56" y="719.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_pre_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="69.6" y="789" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="72.64" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.03%)</title><rect x="396.5" y="661" width="0.5" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="399.55" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="543.2" y="725" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="546.15" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="351.9" y="709" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="354.93" y="719.5" ></text>
+</g>
+<g >
+<title>fsnotify_grab_connector (10,101,010 samples, 0.03%)</title><rect x="201.7" y="613" width="0.4" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="204.68" y="623.5" ></text>
+</g>
+<g >
+<title>read (30,303,030 samples, 0.10%)</title><rect x="1374.1" y="885" width="1.3" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1377.06" y="895.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (585,858,580 samples, 1.91%)</title><rect x="151.1" y="693" width="26.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="154.14" y="703.5" >v..</text>
+</g>
+<g >
+<title>ext4_ext_truncate (20,202,020 samples, 0.07%)</title><rect x="123.8" y="581" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="126.82" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_ack (10,101,010 samples, 0.03%)</title><rect x="10.9" y="757" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="13.91" y="767.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (252,525,250 samples, 0.82%)</title><rect x="586.4" y="853" width="11.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="589.40" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="463.9" y="757" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="466.93" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.10%)</title><rect x="163.9" y="565" width="1.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="166.89" y="575.5" ></text>
+</g>
+<g >
+<title>alloc_fd (10,101,010 samples, 0.03%)</title><rect x="338.7" y="709" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="341.72" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (20,202,020 samples, 0.07%)</title><rect x="450.7" y="437" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="453.73" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="527.2" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="530.22" y="719.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.07%)</title><rect x="349.2" y="805" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="352.19" y="815.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (20,202,020 samples, 0.07%)</title><rect x="100.1" y="629" width="1.0" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="103.15" y="639.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (10,101,010 samples, 0.03%)</title><rect x="364.2" y="533" width="0.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="367.22" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="436.2" y="437" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="439.16" y="447.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="709" width="3.2" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1038.32" y="719.5" ></text>
+</g>
+<g >
+<title>getdents64 (20,202,020 samples, 0.07%)</title><rect x="663.8" y="789" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="666.80" y="799.5" ></text>
+</g>
+<g >
+<title>find_get_entries (10,101,010 samples, 0.03%)</title><rect x="593.2" y="565" width="0.5" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="596.23" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_invalidate_folio (10,101,010 samples, 0.03%)</title><rect x="231.7" y="677" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="234.73" y="687.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="192.1" y="757" width="0.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="195.12" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (10,101,010 samples, 0.03%)</title><rect x="399.3" y="677" width="0.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="402.28" y="687.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.03%)</title><rect x="47.8" y="933" width="0.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="50.79" y="943.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="484.9" y="661" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="487.87" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="641.9" y="645" width="0.5" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="644.95" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="398.4" y="757" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="401.37" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (131,313,130 samples, 0.43%)</title><rect x="314.1" y="677" width="6.0" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="317.14" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="303.2" y="773" width="0.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="306.21" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="666.5" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="669.54" y="783.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="95.6" y="885" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="98.60" y="895.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="773" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1046.98" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="391.1" y="757" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="394.08" y="767.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.03%)</title><rect x="524.9" y="789" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="527.94" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="252.7" y="837" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="255.67" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="288.6" y="805" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="291.64" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="123.8" y="533" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="126.82" y="543.5" ></text>
+</g>
+<g >
+<title>generic_write_checks (10,101,010 samples, 0.03%)</title><rect x="276.3" y="677" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="279.35" y="687.5" ></text>
+</g>
+<g >
+<title>net_rx_action (30,303,030 samples, 0.10%)</title><rect x="1380.0" y="501" width="1.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1382.98" y="511.5" ></text>
+</g>
+<g >
+<title>folio_add_lru (20,202,020 samples, 0.07%)</title><rect x="1343.1" y="821" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1346.10" y="831.5" ></text>
+</g>
+<g >
+<title>git_error_set (10,101,010 samples, 0.03%)</title><rect x="523.6" y="645" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="526.57" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.46%)</title><rect x="280.4" y="853" width="6.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="283.45" y="863.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="618.7" y="645" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="621.73" y="655.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.03%)</title><rect x="426.1" y="549" width="0.5" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="429.14" y="559.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.03%)</title><rect x="11.8" y="405" width="0.5" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="14.82" y="415.5" ></text>
+</g>
+<g >
+<title>__folio_batch_release (10,101,010 samples, 0.03%)</title><rect x="549.1" y="565" width="0.4" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="552.07" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="682.5" y="885" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="685.47" y="895.5" ></text>
+</g>
+<g >
+<title>ip_rcv (40,404,040 samples, 0.13%)</title><rect x="1385.9" y="501" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1388.90" y="511.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.03%)</title><rect x="698.0" y="549" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="700.95" y="559.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="657.0" y="725" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="659.97" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.03%)</title><rect x="292.7" y="725" width="0.5" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="295.74" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.07%)</title><rect x="63.7" y="837" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="66.72" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (30,303,030 samples, 0.10%)</title><rect x="458.9" y="613" width="1.4" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="461.92" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="682.0" y="757" width="0.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="685.02" y="767.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (10,101,010 samples, 0.03%)</title><rect x="438.0" y="789" width="0.4" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="440.98" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="296.8" y="869" width="2.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="299.84" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.07%)</title><rect x="205.3" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="208.32" y="607.5" ></text>
+</g>
+<g >
+<title>alloc_pipe_info (10,101,010 samples, 0.03%)</title><rect x="753.5" y="821" width="0.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="756.50" y="831.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.03%)</title><rect x="398.4" y="805" width="0.4" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="401.37" y="815.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="466.7" y="773" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="469.66" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.03%)</title><rect x="1038.1" y="309" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1041.06" y="319.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.03%)</title><rect x="607.8" y="485" width="0.5" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="610.80" y="495.5" ></text>
+</g>
+<g >
+<title>git_error_set (10,101,010 samples, 0.03%)</title><rect x="377.0" y="741" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="379.97" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="117.9" y="757" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="120.90" y="767.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="454.4" y="757" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="457.37" y="767.5" ></text>
+</g>
+<g >
+<title>__release_sock (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="805" width="1.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1386.17" y="815.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (40,404,040 samples, 0.13%)</title><rect x="346.5" y="629" width="1.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="349.46" y="639.5" ></text>
+</g>
+<g >
+<title>ip_local_out (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="693" width="1.4" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1033.32" y="703.5" ></text>
+</g>
+<g >
+<title>alloc_thread_stack_node (20,202,020 samples, 0.07%)</title><rect x="32.8" y="741" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="35.76" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="504.0" y="645" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="507.00" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="669.7" y="773" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="672.72" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="303.2" y="805" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="306.21" y="815.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.03%)</title><rect x="624.2" y="517" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="627.19" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.03%)</title><rect x="123.4" y="597" width="0.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="126.37" y="607.5" ></text>
+</g>
+<g >
+<title>delete_from_page_cache_batch (10,101,010 samples, 0.03%)</title><rect x="549.5" y="565" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="552.52" y="575.5" ></text>
+</g>
+<g >
+<title>inode_wait_for_writeback (10,101,010 samples, 0.03%)</title><rect x="433.4" y="629" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="436.42" y="639.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct_nocheck (20,202,020 samples, 0.07%)</title><rect x="434.8" y="485" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="437.79" y="495.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,878,787,850 samples, 9.40%)</title><rect x="99.7" y="901" width="129.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="102.69" y="911.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>truncate_cleanup_folio (10,101,010 samples, 0.03%)</title><rect x="231.7" y="693" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="234.73" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (727,272,720 samples, 2.38%)</title><rect x="254.0" y="901" width="32.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="257.04" y="911.5" >[l..</text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="302.3" y="725" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="305.30" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="486.7" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="489.69" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="413.4" y="773" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="416.39" y="783.5" ></text>
+</g>
+<g >
+<title>ip_output (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="661" width="4.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1029.22" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_init_pending_tree (10,101,010 samples, 0.03%)</title><rect x="70.1" y="821" width="0.5" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="73.10" y="831.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.03%)</title><rect x="58.7" y="885" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="61.72" y="895.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="22.7" y="693" width="0.5" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="25.75" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="394.7" y="693" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="397.72" y="703.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="351.9" y="693" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="354.93" y="703.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="682.5" y="741" width="0.4" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="685.47" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.03%)</title><rect x="25.9" y="261" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="28.94" y="271.5" ></text>
+</g>
+<g >
+<title>hash_conntrack_raw (10,101,010 samples, 0.03%)</title><rect x="1039.4" y="661" width="0.5" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="1042.42" y="671.5" ></text>
+</g>
+<g >
+<title>git_repository_config_snapshot (111,111,110 samples, 0.36%)</title><rect x="487.1" y="837" width="5.1" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="490.15" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="214.4" y="853" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="217.43" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_ext_determine_insert_hole (10,101,010 samples, 0.03%)</title><rect x="278.6" y="597" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="281.62" y="607.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="725" width="4.1" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1029.22" y="735.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (60,606,060 samples, 0.20%)</title><rect x="43.2" y="917" width="2.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="46.24" y="927.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (20,202,020 samples, 0.07%)</title><rect x="347.4" y="533" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="350.37" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_getattr (10,101,010 samples, 0.03%)</title><rect x="681.6" y="757" width="0.4" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="684.56" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="309.6" y="645" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="312.58" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="241.7" y="789" width="1.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="244.75" y="799.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="372.9" y="613" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="375.87" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_dx_find_entry (10,101,010 samples, 0.03%)</title><rect x="234.9" y="741" width="0.5" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="237.92" y="751.5" ></text>
+</g>
+<g >
+<title>__fsnotify_parent (10,101,010 samples, 0.03%)</title><rect x="654.7" y="613" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="657.70" y="623.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="455.7" y="725" width="0.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="458.73" y="735.5" ></text>
+</g>
+<g >
+<title>block_invalidate_folio (20,202,020 samples, 0.07%)</title><rect x="189.8" y="597" width="1.0" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="192.84" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (30,303,030 samples, 0.10%)</title><rect x="389.7" y="709" width="1.4" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="392.72" y="719.5" ></text>
+</g>
+<g >
+<title>malloc (20,202,020 samples, 0.07%)</title><rect x="418.9" y="613" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="421.86" y="623.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (20,202,020 samples, 0.07%)</title><rect x="1034.0" y="725" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1036.96" y="735.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.03%)</title><rect x="285.9" y="661" width="0.5" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="288.91" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="423.4" y="789" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="426.41" y="799.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.3.0] (10,101,010 samples, 0.03%)</title><rect x="1371.8" y="853" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1374.79" y="863.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="91.5" y="869" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="94.50" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (212,121,210 samples, 0.69%)</title><rect x="671.1" y="901" width="9.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="674.09" y="911.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="440.7" y="773" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="443.71" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="499.0" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="501.99" y="831.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (20,202,020 samples, 0.07%)</title><rect x="449.8" y="405" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="452.82" y="415.5" ></text>
+</g>
+<g >
+<title>remove (70,707,070 samples, 0.23%)</title><rect x="226.3" y="869" width="3.2" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="229.27" y="879.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (181,818,180 samples, 0.59%)</title><rect x="62.8" y="869" width="8.2" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="65.81" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="413.4" y="693" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="416.39" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="435.7" y="501" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="438.70" y="511.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_bio_merge (10,101,010 samples, 0.03%)</title><rect x="553.2" y="421" width="0.4" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="556.17" y="431.5" ></text>
+</g>
+<g >
+<title>getdents64 (70,707,070 samples, 0.23%)</title><rect x="193.0" y="837" width="3.2" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="196.03" y="847.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="375.6" y="565" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="378.60" y="575.5" ></text>
+</g>
+<g >
+<title>generic_fillattr (10,101,010 samples, 0.03%)</title><rect x="657.9" y="709" width="0.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="660.89" y="719.5" ></text>
+</g>
+<g >
+<title>make_vfsgid (10,101,010 samples, 0.03%)</title><rect x="140.7" y="645" width="0.4" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="143.67" y="655.5" ></text>
+</g>
+<g >
+<title>wb_get_lookup.part.0 (10,101,010 samples, 0.03%)</title><rect x="687.0" y="629" width="0.5" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="690.02" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="305.9" y="677" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="308.94" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="471.7" y="805" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="474.67" y="815.5" ></text>
+</g>
+<g >
+<title>sock_poll (10,101,010 samples, 0.03%)</title><rect x="20.5" y="869" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="23.47" y="879.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (20,202,020 samples, 0.07%)</title><rect x="51.4" y="885" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="54.43" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="652.4" y="677" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="655.42" y="687.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="674.3" y="805" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="677.28" y="815.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="357" width="3.2" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1038.32" y="367.5" ></text>
+</g>
+<g >
+<title>futex_wait_queue (10,101,010 samples, 0.03%)</title><rect x="21.4" y="805" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="24.38" y="815.5" ></text>
+</g>
+<g >
+<title>ip_local_out (10,101,010 samples, 0.03%)</title><rect x="1381.3" y="693" width="0.5" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1384.35" y="703.5" ></text>
+</g>
+<g >
+<title>call_timer_fn (10,101,010 samples, 0.03%)</title><rect x="601.0" y="581" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="603.97" y="591.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.03%)</title><rect x="399.3" y="645" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="402.28" y="655.5" ></text>
+</g>
+<g >
+<title>process_backlog (40,404,040 samples, 0.13%)</title><rect x="1013.0" y="421" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1016.02" y="431.5" ></text>
+</g>
+<g >
+<title>__schedule (20,202,020 samples, 0.07%)</title><rect x="40.0" y="805" width="1.0" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="43.05" y="815.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.07%)</title><rect x="341.9" y="709" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="344.91" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="462.6" y="613" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="465.56" y="623.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="179.8" y="693" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="182.83" y="703.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="245" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1030.58" y="255.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="166.2" y="565" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="169.17" y="575.5" ></text>
+</g>
+<g >
+<title>__send (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="917" width="1.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1378.43" y="927.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="453" width="1.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1378.43" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (20,202,020 samples, 0.07%)</title><rect x="53.7" y="789" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="56.71" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="368.3" y="821" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="371.32" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.03%)</title><rect x="370.1" y="677" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="373.14" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_setent (10,101,010 samples, 0.03%)</title><rect x="615.5" y="661" width="0.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="618.54" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="663.8" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="666.80" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="264.1" y="789" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="267.05" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.10%)</title><rect x="625.6" y="677" width="1.3" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="628.56" y="687.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.07%)</title><rect x="438.9" y="821" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="441.89" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="604.2" y="757" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="607.16" y="767.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="660.6" y="789" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="663.62" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (20,202,020 samples, 0.07%)</title><rect x="520.4" y="597" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="523.39" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="63.7" y="789" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="66.72" y="799.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (10,101,010 samples, 0.03%)</title><rect x="315.0" y="533" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="318.05" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="405.7" y="693" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="408.65" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="303.2" y="901" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="306.21" y="911.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (10,101,010 samples, 0.03%)</title><rect x="11.8" y="629" width="0.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="14.82" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_send_fin (50,505,050 samples, 0.16%)</title><rect x="24.1" y="709" width="2.3" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="27.11" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.10%)</title><rect x="550.9" y="629" width="1.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="553.89" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_match (10,101,010 samples, 0.03%)</title><rect x="574.1" y="677" width="0.5" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="577.11" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.07%)</title><rect x="567.7" y="597" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="570.74" y="607.5" ></text>
+</g>
+<g >
+<title>__schedule (40,404,040 samples, 0.13%)</title><rect x="18.7" y="821" width="1.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="21.65" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="441.2" y="821" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="444.16" y="831.5" ></text>
+</g>
+<g >
+<title>security_path_rename (10,101,010 samples, 0.03%)</title><rect x="433.9" y="693" width="0.4" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="436.88" y="703.5" ></text>
+</g>
+<g >
+<title>fsnotify_grab_connector (10,101,010 samples, 0.03%)</title><rect x="192.6" y="725" width="0.4" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="195.57" y="735.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="1373.6" y="757" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1376.61" y="767.5" ></text>
+</g>
+<g >
+<title>do_wp_page (10,101,010 samples, 0.03%)</title><rect x="722.1" y="805" width="0.4" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="725.08" y="815.5" ></text>
+</g>
+<g >
+<title>_find_next_zero_bit (10,101,010 samples, 0.03%)</title><rect x="317.3" y="549" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="320.32" y="559.5" ></text>
+</g>
+<g >
+<title>dget_parent (10,101,010 samples, 0.03%)</title><rect x="472.1" y="533" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="475.12" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (242,424,240 samples, 0.79%)</title><rect x="373.8" y="773" width="10.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="376.78" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="542.2" y="709" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="545.24" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="238.1" y="885" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="241.10" y="895.5" ></text>
+</g>
+<g >
+<title>__remove_inode_hash (20,202,020 samples, 0.07%)</title><rect x="200.3" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="203.31" y="687.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="305.9" y="645" width="0.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="308.94" y="655.5" ></text>
+</g>
+<g >
+<title>__uselocale (10,101,010 samples, 0.03%)</title><rect x="523.6" y="597" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="526.57" y="607.5" ></text>
+</g>
+<g >
+<title>git_repository_set_head (777,777,770 samples, 2.54%)</title><rect x="403.8" y="885" width="35.1" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="406.83" y="895.5" >gi..</text>
+</g>
+<g >
+<title>x64_sys_call (444,444,440 samples, 1.45%)</title><rect x="616.5" y="821" width="20.0" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="619.45" y="831.5" ></text>
+</g>
+<g >
+<title>filemap_flush (30,303,030 samples, 0.10%)</title><rect x="596.0" y="629" width="1.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="598.97" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="453.9" y="805" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="456.91" y="815.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="282.7" y="645" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="285.72" y="655.5" ></text>
+</g>
+<g >
+<title>__get_vm_area_node (20,202,020 samples, 0.07%)</title><rect x="32.8" y="709" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="35.76" y="719.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="363.3" y="565" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="366.31" y="575.5" ></text>
+</g>
+<g >
+<title>opendir (40,404,040 samples, 0.13%)</title><rect x="665.6" y="821" width="1.8" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="668.63" y="831.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="624.2" y="629" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="627.19" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="466.2" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="469.21" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (20,202,020 samples, 0.07%)</title><rect x="100.1" y="645" width="1.0" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="103.15" y="655.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="613" width="1.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1033.32" y="623.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="162.1" y="517" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="165.07" y="527.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="672.9" y="837" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="675.91" y="847.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.07%)</title><rect x="664.7" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="667.71" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="529.9" y="805" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="532.95" y="815.5" ></text>
+</g>
+<g >
+<title>libjson_set_string_const_key (10,101,010 samples, 0.03%)</title><rect x="1348.6" y="933" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1351.57" y="943.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="243.1" y="789" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="246.11" y="799.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.07%)</title><rect x="76.0" y="805" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="79.02" y="815.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="589.6" y="741" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="592.59" y="751.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="543.6" y="645" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="546.61" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="482.1" y="757" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="485.14" y="767.5" ></text>
+</g>
+<g >
+<title>inflateEnd (10,101,010 samples, 0.03%)</title><rect x="299.1" y="837" width="0.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="302.11" y="847.5" ></text>
+</g>
+<g >
+<title>inode_permission (20,202,020 samples, 0.07%)</title><rect x="325.1" y="661" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="328.06" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="534.0" y="837" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="537.04" y="847.5" ></text>
+</g>
+<g >
+<title>path_parentat (20,202,020 samples, 0.07%)</title><rect x="178.9" y="677" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="181.91" y="687.5" ></text>
+</g>
+<g >
+<title>kthread_blkcg (10,101,010 samples, 0.03%)</title><rect x="998.0" y="709" width="0.4" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="1000.99" y="719.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="343.3" y="773" width="0.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="346.28" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="214.0" y="789" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="216.97" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="283.2" y="725" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="286.18" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="1373.6" y="805" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1376.61" y="815.5" ></text>
+</g>
+<g >
+<title>file_modified (10,101,010 samples, 0.03%)</title><rect x="536.3" y="677" width="0.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="539.32" y="687.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (30,303,030 samples, 0.10%)</title><rect x="1380.0" y="565" width="1.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1382.98" y="575.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (10,101,010 samples, 0.03%)</title><rect x="291.8" y="709" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="294.83" y="719.5" ></text>
+</g>
+<g >
+<title>all (30,616,161,310 samples, 100%)</title><rect x="10.0" y="1125" width="1380.0" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="13.00" y="1135.5" ></text>
+</g>
+<g >
+<title>ext4_htree_store_dirent (10,101,010 samples, 0.03%)</title><rect x="224.9" y="709" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="227.90" y="719.5" ></text>
+</g>
+<g >
+<title>submit_bio_wait_endio (10,101,010 samples, 0.03%)</title><rect x="698.0" y="517" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="700.95" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="330.5" y="629" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="333.53" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="643.3" y="565" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="646.32" y="575.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.07%)</title><rect x="425.2" y="661" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="428.23" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="168.4" y="517" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="171.44" y="527.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="260.4" y="757" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="263.41" y="767.5" ></text>
+</g>
+<g >
+<title>unlink_cb (161,616,160 samples, 0.53%)</title><rect x="184.8" y="837" width="7.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="187.83" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (50,505,050 samples, 0.16%)</title><rect x="50.1" y="901" width="2.2" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="53.07" y="911.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="80.1" y="837" width="0.5" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="83.12" y="847.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="195.3" y="645" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="198.31" y="655.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="413.4" y="661" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="416.39" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="214.9" y="773" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="217.88" y="783.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="214.4" y="773" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="217.43" y="783.5" ></text>
+</g>
+<g >
+<title>ip_output (80,808,080 samples, 0.26%)</title><rect x="1385.9" y="741" width="3.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1388.90" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="300.5" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="303.48" y="687.5" ></text>
+</g>
+<g >
+<title>log_entry_start (10,101,010 samples, 0.03%)</title><rect x="682.5" y="933" width="0.4" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="685.47" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (20,202,020 samples, 0.07%)</title><rect x="369.7" y="757" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="372.68" y="767.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.03%)</title><rect x="277.7" y="581" width="0.5" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="280.71" y="591.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="546.3" y="565" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="549.34" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="13.6" y="901" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="16.64" y="911.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="671.1" y="757" width="1.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="674.09" y="767.5" ></text>
+</g>
+<g >
+<title>may_delete (10,101,010 samples, 0.03%)</title><rect x="127.0" y="645" width="0.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="130.01" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="448.9" y="677" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="451.90" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="488.1" y="709" width="2.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="491.06" y="719.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="282.7" y="677" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="285.72" y="687.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="680.2" y="645" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="683.19" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="471.7" y="757" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="474.67" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="652.0" y="725" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="654.97" y="735.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.03%)</title><rect x="96.1" y="725" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="99.05" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.03%)</title><rect x="451.6" y="517" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="454.64" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="249.9" y="757" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="252.94" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="445.7" y="773" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="448.72" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="21.8" y="917" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="24.84" y="927.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="368.3" y="837" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="371.32" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (131,313,130 samples, 0.43%)</title><rect x="610.1" y="693" width="5.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="613.08" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.36%)</title><rect x="81.0" y="1045" width="5.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="84.03" y="1055.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.03%)</title><rect x="244.9" y="789" width="0.5" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="247.93" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="638.8" y="821" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="641.76" y="831.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="65.5" y="773" width="0.5" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="68.55" y="783.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="302.3" y="661" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="305.30" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (70,707,070 samples, 0.23%)</title><rect x="619.2" y="741" width="3.2" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="622.19" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="89.2" y="901" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="92.22" y="911.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="648.8" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="651.78" y="735.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.03%)</title><rect x="1030.3" y="197" width="0.5" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1033.32" y="207.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="412.0" y="773" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="415.03" y="783.5" ></text>
+</g>
+<g >
+<title>alloc_pid (10,101,010 samples, 0.03%)</title><rect x="30.0" y="757" width="0.5" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="33.03" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="456.2" y="757" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="459.19" y="767.5" ></text>
+</g>
+<g >
+<title>faccessat (10,101,010 samples, 0.03%)</title><rect x="636.5" y="853" width="0.4" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="639.49" y="863.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_send (50,505,050 samples, 0.16%)</title><rect x="10.0" y="1029" width="2.3" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="13.00" y="1039.5" ></text>
+</g>
+<g >
+<title>nd_jump_root (10,101,010 samples, 0.03%)</title><rect x="662.4" y="629" width="0.5" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="665.44" y="639.5" ></text>
+</g>
+<g >
+<title>do_linkat (151,515,150 samples, 0.49%)</title><rect x="325.1" y="741" width="6.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="328.06" y="751.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (151,515,150 samples, 0.49%)</title><rect x="1048.1" y="901" width="6.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1051.07" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="458.9" y="485" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="461.92" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="680.2" y="773" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="683.19" y="783.5" ></text>
+</g>
+<g >
+<title>submit_bio (20,202,020 samples, 0.07%)</title><rect x="434.8" y="517" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="437.79" y="527.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (191,919,190 samples, 0.63%)</title><rect x="216.2" y="789" width="8.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="219.25" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (393,939,390 samples, 1.29%)</title><rect x="196.2" y="757" width="17.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="199.22" y="767.5" ></text>
+</g>
+<g >
+<title>strchrnul@plt (10,101,010 samples, 0.03%)</title><rect x="377.0" y="661" width="0.4" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="379.97" y="671.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="190.8" y="629" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="193.75" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="249.9" y="837" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="252.94" y="847.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.07%)</title><rect x="224.0" y="757" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="226.99" y="767.5" ></text>
+</g>
+<g >
+<title>fsnotify_find_mark (10,101,010 samples, 0.03%)</title><rect x="192.6" y="741" width="0.4" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="195.57" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (222,222,220 samples, 0.73%)</title><rect x="453.9" y="853" width="10.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="456.91" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (40,404,040 samples, 0.13%)</title><rect x="576.4" y="725" width="1.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="579.39" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (40,404,040 samples, 0.13%)</title><rect x="135.2" y="613" width="1.8" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="138.21" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="585.5" y="821" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="588.49" y="831.5" ></text>
+</g>
+<g >
+<title>evict (141,414,140 samples, 0.46%)</title><rect x="184.8" y="693" width="6.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="187.83" y="703.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="238.1" y="805" width="0.5" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="241.10" y="815.5" ></text>
+</g>
+<g >
+<title>__do_sys_brk (30,303,030 samples, 0.10%)</title><rect x="116.5" y="613" width="1.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="119.54" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="229.0" y="805" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="232.00" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.03%)</title><rect x="385.6" y="645" width="0.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="388.62" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (30,303,030 samples, 0.10%)</title><rect x="86.0" y="837" width="1.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="89.03" y="847.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (20,202,020 samples, 0.07%)</title><rect x="248.1" y="533" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="251.12" y="543.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (20,202,020 samples, 0.07%)</title><rect x="1385.9" y="469" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1388.90" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (222,222,220 samples, 0.73%)</title><rect x="453.9" y="869" width="10.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="456.91" y="879.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.13%)</title><rect x="121.5" y="597" width="1.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="124.55" y="607.5" ></text>
+</g>
+<g >
+<title>_copy_from_iter (60,606,060 samples, 0.20%)</title><rect x="1023.5" y="757" width="2.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1026.49" y="767.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (30,303,030 samples, 0.10%)</title><rect x="294.1" y="693" width="1.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="297.10" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_bread (101,010,100 samples, 0.33%)</title><rect x="314.1" y="645" width="4.6" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="317.14" y="655.5" ></text>
+</g>
+<g >
+<title>mntput_no_expire (10,101,010 samples, 0.03%)</title><rect x="456.6" y="661" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="459.64" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.16%)</title><rect x="473.5" y="741" width="2.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="476.49" y="751.5" ></text>
+</g>
+<g >
+<title>nf_nat_ipv4_local_fn (10,101,010 samples, 0.03%)</title><rect x="1017.6" y="661" width="0.4" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="1020.57" y="671.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.03%)</title><rect x="983.9" y="677" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="986.88" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="1378.6" y="837" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1381.62" y="847.5" ></text>
+</g>
+<g >
+<title>key_put (10,101,010 samples, 0.03%)</title><rect x="1332.6" y="821" width="0.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1335.63" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="438.4" y="693" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="441.43" y="703.5" ></text>
+</g>
+<g >
+<title>apparmor_file_permission (10,101,010 samples, 0.03%)</title><rect x="1044.4" y="725" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1047.43" y="735.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.03%)</title><rect x="587.8" y="645" width="0.4" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="590.77" y="655.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="530.9" y="741" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="533.86" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="80.1" y="997" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="83.12" y="1007.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="102.0" y="693" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="104.97" y="703.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (20,202,020 samples, 0.07%)</title><rect x="40.0" y="837" width="1.0" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="43.05" y="847.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.07%)</title><rect x="265.0" y="709" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="267.97" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="619.6" y="725" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="622.64" y="735.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (171,717,170 samples, 0.56%)</title><rect x="216.2" y="757" width="7.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="219.25" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (30,303,030 samples, 0.10%)</title><rect x="1016.7" y="757" width="1.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1019.66" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="165.3" y="565" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="168.26" y="575.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.03%)</title><rect x="341.9" y="677" width="0.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="344.91" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="546.8" y="325" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="549.79" y="335.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.07%)</title><rect x="537.7" y="853" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="540.69" y="863.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="492.2" y="853" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="495.16" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (484,848,480 samples, 1.58%)</title><rect x="58.3" y="981" width="21.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="61.26" y="991.5" >_..</text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="302.3" y="773" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="305.30" y="783.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="268.6" y="677" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="271.61" y="687.5" ></text>
+</g>
+<g >
+<title>git_signature_default (70,707,070 samples, 0.23%)</title><rect x="400.6" y="837" width="3.2" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="403.64" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="639.7" y="773" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="642.67" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (20,202,020 samples, 0.07%)</title><rect x="395.6" y="549" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="398.64" y="559.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (30,303,030 samples, 0.10%)</title><rect x="1038.5" y="693" width="1.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1041.51" y="703.5" ></text>
+</g>
+<g >
+<title>is_vmalloc_addr (10,101,010 samples, 0.03%)</title><rect x="409.7" y="453" width="0.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="412.75" y="463.5" ></text>
+</g>
+<g >
+<title>touch_atime (20,202,020 samples, 0.07%)</title><rect x="667.9" y="709" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="670.90" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.03%)</title><rect x="341.9" y="629" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="344.91" y="639.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.03%)</title><rect x="633.3" y="629" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="636.30" y="639.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="127.5" y="677" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="130.47" y="687.5" ></text>
+</g>
+<g >
+<title>inet_csk_reset_keepalive_timer (10,101,010 samples, 0.03%)</title><rect x="25.9" y="245" width="0.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="28.94" y="255.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.03%)</title><rect x="315.0" y="549" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="318.05" y="559.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.03%)</title><rect x="407.0" y="645" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="410.02" y="655.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.10%)</title><rect x="671.1" y="693" width="1.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="674.09" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_close (20,202,020 samples, 0.07%)</title><rect x="1034.0" y="805" width="0.9" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1036.96" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="542.7" y="725" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="545.70" y="735.5" ></text>
+</g>
+<g >
+<title>d_move (10,101,010 samples, 0.03%)</title><rect x="247.7" y="741" width="0.4" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="250.66" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="601.4" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="604.43" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="218.5" y="645" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="221.53" y="655.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="521.8" y="581" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="524.75" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (30,303,030 samples, 0.10%)</title><rect x="519.9" y="645" width="1.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="522.93" y="655.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="214.0" y="709" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="216.97" y="719.5" ></text>
+</g>
+<g >
+<title>generic_fillattr (10,101,010 samples, 0.03%)</title><rect x="498.5" y="661" width="0.5" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="501.53" y="671.5" ></text>
+</g>
+<g >
+<title>main (28,929,292,640 samples, 94.49%)</title><rect x="86.0" y="1045" width="1304.0" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="89.03" y="1055.5" >main</text>
+</g>
+<g >
+<title>__tcp_transmit_skb (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="725" width="1.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1378.43" y="735.5" ></text>
+</g>
+<g >
+<title>__es_tree_search.isra.0 (10,101,010 samples, 0.03%)</title><rect x="554.1" y="485" width="0.4" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="557.08" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (878,787,870 samples, 2.87%)</title><rect x="46.4" y="1077" width="39.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="49.42" y="1087.5" >[li..</text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.03%)</title><rect x="95.6" y="773" width="0.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="98.60" y="783.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_pre_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="37.8" y="741" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="40.77" y="751.5" ></text>
+</g>
+<g >
+<title>remove (90,909,090 samples, 0.30%)</title><rect x="103.8" y="741" width="4.1" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="106.79" y="751.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="439.3" y="805" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="442.34" y="815.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="504.9" y="613" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="507.91" y="623.5" ></text>
+</g>
+<g >
+<title>git_remote_create_with_opts (575,757,570 samples, 1.88%)</title><rect x="441.2" y="901" width="25.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="444.16" y="911.5" >g..</text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="224.4" y="725" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="227.44" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="484.0" y="725" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="486.96" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="450.7" y="469" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="453.73" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="389.3" y="789" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="392.26" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="425.2" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="428.23" y="719.5" ></text>
+</g>
+<g >
+<title>fdopendir (30,303,030 samples, 0.10%)</title><rect x="116.5" y="789" width="1.4" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="119.54" y="799.5" ></text>
+</g>
+<g >
+<title>try_to_free_buffers (10,101,010 samples, 0.03%)</title><rect x="190.3" y="533" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="193.30" y="543.5" ></text>
+</g>
+<g >
+<title>tcp_data_ready (10,101,010 samples, 0.03%)</title><rect x="1031.2" y="309" width="0.5" height="15.0" fill="rgb(0,217,113)" rx="2" ry="2" />
+<text x="1034.23" y="319.5" ></text>
+</g>
+<g >
+<title>base64_encode (6,727,272,660 samples, 21.97%)</title><rect x="1044.9" y="981" width="303.2" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1047.89" y="991.5" >base64_encode</text>
+</g>
+<g >
+<title>ip_finish_output2 (60,606,060 samples, 0.20%)</title><rect x="1012.6" y="565" width="2.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1015.56" y="575.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="672.0" y="645" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="675.00" y="655.5" ></text>
+</g>
+<g >
+<title>__lookup_mnt (10,101,010 samples, 0.03%)</title><rect x="445.7" y="613" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="448.72" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="425.2" y="597" width="0.5" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="428.23" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="227.2" y="645" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="230.18" y="655.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (60,606,060 samples, 0.20%)</title><rect x="1039.9" y="693" width="2.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1042.88" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.33%)</title><rect x="403.8" y="805" width="4.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="406.83" y="815.5" ></text>
+</g>
+<g >
+<title>mod_timer (10,101,010 samples, 0.03%)</title><rect x="25.9" y="213" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="28.94" y="223.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (30,303,030 samples, 0.10%)</title><rect x="1016.7" y="773" width="1.3" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1019.66" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="529.5" y="773" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="532.49" y="783.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (20,202,020 samples, 0.07%)</title><rect x="1052.6" y="757" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1055.63" y="767.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (40,404,040 samples, 0.13%)</title><rect x="463.9" y="885" width="1.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="466.93" y="895.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_reschedule_ipi (10,101,010 samples, 0.03%)</title><rect x="1333.1" y="933" width="0.4" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="1336.09" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (70,707,070 samples, 0.23%)</title><rect x="315.5" y="613" width="3.2" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="318.50" y="623.5" ></text>
+</g>
+<g >
+<title>evict (30,303,030 samples, 0.10%)</title><rect x="235.8" y="757" width="1.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="238.83" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="303.2" y="741" width="0.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="306.21" y="751.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="85.1" y="853" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="88.12" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="271.8" y="613" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="274.79" y="623.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="80.1" y="901" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="83.12" y="911.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.03%)</title><rect x="455.3" y="789" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="458.28" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="508.1" y="693" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="511.09" y="703.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="1373.2" y="853" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1376.15" y="863.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="700.2" y="741" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="703.23" y="751.5" ></text>
+</g>
+<g >
+<title>__kmalloc_node (10,101,010 samples, 0.03%)</title><rect x="33.7" y="709" width="0.4" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="36.68" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (90,909,090 samples, 0.30%)</title><rect x="81.5" y="933" width="4.1" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="84.48" y="943.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (10,101,010 samples, 0.03%)</title><rect x="519.0" y="597" width="0.5" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="522.02" y="607.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.03%)</title><rect x="552.7" y="421" width="0.5" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="555.71" y="431.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (30,303,030 samples, 0.10%)</title><rect x="10.9" y="837" width="1.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="13.91" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="434.3" y="645" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="437.34" y="655.5" ></text>
+</g>
+<g >
+<title>__sock_release (101,010,100 samples, 0.33%)</title><rect x="22.7" y="789" width="4.6" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="25.75" y="799.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="472.1" y="693" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="475.12" y="703.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="497.6" y="693" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="500.62" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="492.2" y="773" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="495.16" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="392.4" y="597" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="395.45" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="669.7" y="661" width="1.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="672.72" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="647.9" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="650.87" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="493.1" y="885" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="496.07" y="895.5" ></text>
+</g>
+<g >
+<title>getaddrinfo (10,101,010 samples, 0.03%)</title><rect x="1389.5" y="981" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1392.54" y="991.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="271.3" y="677" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="274.34" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="647.9" y="789" width="2.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="650.87" y="799.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="697.0" y="693" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="700.04" y="703.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="751.2" y="837" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="754.22" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.03%)</title><rect x="425.7" y="533" width="0.4" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="428.68" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.03%)</title><rect x="202.6" y="645" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="205.59" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="351.0" y="645" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="354.02" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (20,202,020 samples, 0.07%)</title><rect x="513.6" y="453" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="516.56" y="463.5" ></text>
+</g>
+<g >
+<title>brk (272,727,270 samples, 0.89%)</title><rect x="758.1" y="869" width="12.2" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="761.05" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="356.9" y="533" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="359.94" y="543.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="436.2" y="469" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="439.16" y="479.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="257.2" y="677" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="260.23" y="687.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="560.0" y="565" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="563.00" y="575.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.03%)</title><rect x="241.3" y="597" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="244.29" y="607.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.03%)</title><rect x="519.9" y="565" width="0.5" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="522.93" y="575.5" ></text>
+</g>
+<g >
+<title>git_config_iterator_free (10,101,010 samples, 0.03%)</title><rect x="674.7" y="837" width="0.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="677.73" y="847.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="725" width="3.2" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1038.32" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="1034.0" y="933" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1036.96" y="943.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="1367.2" y="805" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1370.24" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="1011.2" y="837" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1014.19" y="847.5" ></text>
+</g>
+<g >
+<title>free_page_and_swap_cache (10,101,010 samples, 0.03%)</title><rect x="1022.1" y="533" width="0.5" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1025.12" y="543.5" ></text>
+</g>
+<g >
+<title>irqentry_exit_to_user_mode (20,202,020 samples, 0.07%)</title><rect x="985.2" y="805" width="1.0" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="988.24" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (50,505,050 samples, 0.16%)</title><rect x="546.8" y="597" width="2.3" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="549.79" y="607.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="1022.1" y="629" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1025.12" y="639.5" ></text>
+</g>
+<g >
+<title>open64 (30,303,030 samples, 0.10%)</title><rect x="518.6" y="741" width="1.3" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="521.56" y="751.5" ></text>
+</g>
+<g >
+<title>iput (30,303,030 samples, 0.10%)</title><rect x="235.8" y="773" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="238.83" y="783.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (20,202,020 samples, 0.07%)</title><rect x="601.4" y="517" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="604.43" y="527.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="600.5" y="645" width="0.5" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="603.52" y="655.5" ></text>
+</g>
+<g >
+<title>filp_flush (10,101,010 samples, 0.03%)</title><rect x="138.8" y="741" width="0.5" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="141.85" y="751.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (212,121,210 samples, 0.69%)</title><rect x="509.0" y="661" width="9.6" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="512.00" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="660.6" y="741" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="663.62" y="751.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="98.3" y="853" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="101.33" y="863.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="471.7" y="677" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="474.67" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="647.9" y="757" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="650.87" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="467.6" y="741" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="470.57" y="751.5" ></text>
+</g>
+<g >
+<title>run_rebalance_domains (10,101,010 samples, 0.03%)</title><rect x="699.8" y="661" width="0.4" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="702.77" y="671.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.03%)</title><rect x="708.0" y="533" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="710.97" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (40,404,040 samples, 0.13%)</title><rect x="219.0" y="677" width="1.8" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="221.98" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="468.0" y="741" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="471.03" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.20%)</title><rect x="178.5" y="773" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="181.46" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (10,101,010 samples, 0.03%)</title><rect x="462.1" y="485" width="0.5" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="465.11" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="428.9" y="629" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="431.87" y="639.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (10,101,010 samples, 0.03%)</title><rect x="1331.7" y="709" width="0.5" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1334.72" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (20,202,020 samples, 0.07%)</title><rect x="25.5" y="293" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="28.48" y="303.5" ></text>
+</g>
+<g >
+<title>folio_memcg_lock (10,101,010 samples, 0.03%)</title><rect x="231.7" y="565" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="234.73" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_v6_syn_recv_sock (20,202,020 samples, 0.07%)</title><rect x="1035.3" y="309" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1038.32" y="319.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="107.9" y="773" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="110.89" y="783.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="376.1" y="581" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="379.06" y="591.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="233.1" y="645" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="236.09" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="397.0" y="741" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="400.00" y="751.5" ></text>
+</g>
+<g >
+<title>blk_update_request (20,202,020 samples, 0.07%)</title><rect x="1345.8" y="789" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1348.84" y="799.5" ></text>
+</g>
+<g >
+<title>__release_sock (90,909,090 samples, 0.30%)</title><rect x="1012.6" y="757" width="4.1" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1015.56" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (60,606,060 samples, 0.20%)</title><rect x="1055.4" y="949" width="2.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1058.36" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_file_open (10,101,010 samples, 0.03%)</title><rect x="678.8" y="565" width="0.5" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="681.83" y="575.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.03%)</title><rect x="289.6" y="757" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="292.55" y="767.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="243.1" y="597" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="246.11" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="92.9" y="869" width="2.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="95.86" y="879.5" ></text>
+</g>
+<g >
+<title>lock_vma_under_rcu (20,202,020 samples, 0.07%)</title><rect x="1344.9" y="901" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1347.93" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="112.9" y="565" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="115.90" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.07%)</title><rect x="158.0" y="645" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="160.97" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.26%)</title><rect x="639.2" y="837" width="3.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="642.22" y="847.5" ></text>
+</g>
+<g >
+<title>do_open (20,202,020 samples, 0.07%)</title><rect x="678.4" y="613" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="681.37" y="623.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="524.9" y="629" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="527.94" y="639.5" ></text>
+</g>
+<g >
+<title>d_walk (30,303,030 samples, 0.10%)</title><rect x="175.3" y="661" width="1.3" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="178.27" y="671.5" ></text>
+</g>
+<g >
+<title>process_backlog (20,202,020 samples, 0.07%)</title><rect x="25.5" y="405" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="28.48" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (232,323,230 samples, 0.76%)</title><rect x="202.1" y="677" width="10.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="205.13" y="687.5" ></text>
+</g>
+<g >
+<title>pthread_rwlock_unlock (10,101,010 samples, 0.03%)</title><rect x="534.0" y="709" width="0.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="537.04" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (50,505,050 samples, 0.16%)</title><rect x="521.3" y="629" width="2.3" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="524.30" y="639.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (10,101,010 samples, 0.03%)</title><rect x="270.0" y="741" width="0.4" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="272.97" y="751.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.07%)</title><rect x="285.9" y="821" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="288.91" y="831.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (101,010,100 samples, 0.33%)</title><rect x="1018.9" y="693" width="4.6" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1021.93" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="109.3" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="112.25" y="735.5" ></text>
+</g>
+<g >
+<title>__sys_socket (10,101,010 samples, 0.03%)</title><rect x="1034.9" y="901" width="0.4" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="1037.87" y="911.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="253.1" y="693" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="256.13" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="390.6" y="597" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="393.63" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="441.2" y="805" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="444.16" y="815.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="445.7" y="821" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="448.72" y="831.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="371.5" y="741" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="374.50" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.10%)</title><rect x="550.9" y="613" width="1.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="553.89" y="623.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="405.7" y="629" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="408.65" y="639.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (60,606,060 samples, 0.20%)</title><rect x="591.0" y="677" width="2.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="593.96" y="687.5" ></text>
+</g>
+<g >
+<title>__napi_poll (40,404,040 samples, 0.13%)</title><rect x="1385.9" y="565" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1388.90" y="575.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="466.2" y="645" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="469.21" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="339.2" y="805" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="342.18" y="815.5" ></text>
+</g>
+<g >
+<title>__fput_sync (20,202,020 samples, 0.07%)</title><rect x="137.9" y="741" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="140.94" y="751.5" ></text>
+</g>
+<g >
+<title>set_root (10,101,010 samples, 0.03%)</title><rect x="197.1" y="661" width="0.5" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="200.13" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="305.9" y="773" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="308.94" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="419.3" y="597" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="422.31" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (313,131,310 samples, 1.02%)</title><rect x="159.8" y="645" width="14.1" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="162.79" y="655.5" ></text>
+</g>
+<g >
+<title>errseq_check (10,101,010 samples, 0.03%)</title><rect x="364.7" y="485" width="0.4" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="367.68" y="495.5" ></text>
+</g>
+<g >
+<title>__schedule (40,404,040 samples, 0.13%)</title><rect x="15.9" y="837" width="1.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="18.92" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.03%)</title><rect x="398.4" y="741" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="401.37" y="751.5" ></text>
+</g>
+<g >
+<title>readlink (10,101,010 samples, 0.03%)</title><rect x="569.6" y="837" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="572.56" y="847.5" ></text>
+</g>
+<g >
+<title>path_get (10,101,010 samples, 0.03%)</title><rect x="420.7" y="485" width="0.4" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="423.68" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="489.9" y="613" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="492.88" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="405.7" y="709" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="408.65" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (40,404,040 samples, 0.13%)</title><rect x="181.2" y="789" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="184.19" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="458.9" y="549" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="461.92" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="63.7" y="757" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="66.72" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="555.4" y="645" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="558.44" y="655.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="373" width="3.2" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1038.32" y="383.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="982.5" y="757" width="0.5" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="985.51" y="767.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="1031.2" y="277" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1034.23" y="287.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="237.2" y="885" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="240.19" y="895.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.03%)</title><rect x="370.6" y="789" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="373.59" y="799.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="577.8" y="629" width="0.4" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="580.75" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="585.0" y="789" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="588.04" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="668.8" y="773" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="671.81" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (50,505,050 samples, 0.16%)</title><rect x="1379.5" y="901" width="2.3" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1382.53" y="911.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_recv (80,808,080 samples, 0.26%)</title><rect x="1371.8" y="949" width="3.6" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1374.79" y="959.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.03%)</title><rect x="13.6" y="997" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="16.64" y="1007.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.03%)</title><rect x="340.1" y="709" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="343.09" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="332.8" y="789" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="335.80" y="799.5" ></text>
+</g>
+<g >
+<title>ip_output (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="661" width="1.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1378.43" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.07%)</title><rect x="601.4" y="709" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="604.43" y="719.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="539.1" y="677" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="542.05" y="687.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (40,404,040 samples, 0.13%)</title><rect x="1385.9" y="517" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1388.90" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.03%)</title><rect x="558.2" y="725" width="0.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="561.18" y="735.5" ></text>
+</g>
+<g >
+<title>may_delete (10,101,010 samples, 0.03%)</title><rect x="174.4" y="677" width="0.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="177.36" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (30,303,030 samples, 0.10%)</title><rect x="330.5" y="677" width="1.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="333.53" y="687.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.03%)</title><rect x="468.5" y="661" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="471.48" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="440.3" y="837" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="443.25" y="847.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (545,454,540 samples, 1.78%)</title><rect x="343.7" y="869" width="24.6" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="346.73" y="879.5" >g..</text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="497.6" y="613" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="500.62" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="672.9" y="869" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="675.91" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (60,606,060 samples, 0.20%)</title><rect x="460.3" y="709" width="2.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="463.29" y="719.5" ></text>
+</g>
+<g >
+<title>git_odb_read_header (20,202,020 samples, 0.07%)</title><rect x="391.1" y="837" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="394.08" y="847.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="410.2" y="517" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="413.20" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_rename (40,404,040 samples, 0.13%)</title><rect x="248.1" y="725" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="251.12" y="735.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="497.6" y="597" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="500.62" y="607.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="700.2" y="725" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="703.23" y="735.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.03%)</title><rect x="331.9" y="837" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="334.89" y="847.5" ></text>
+</g>
+<g >
+<title>lock_mm_and_find_vma (20,202,020 samples, 0.07%)</title><rect x="744.8" y="709" width="1.0" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="747.85" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="466.2" y="629" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="469.21" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="438.0" y="757" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="440.98" y="767.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.10%)</title><rect x="262.2" y="821" width="1.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="265.23" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.03%)</title><rect x="546.3" y="581" width="0.5" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="549.34" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.07%)</title><rect x="655.2" y="693" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="658.15" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="392.4" y="661" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="395.45" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_symlink (20,202,020 samples, 0.07%)</title><rect x="570.5" y="757" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="573.47" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="38.7" y="885" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="41.68" y="895.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.03%)</title><rect x="282.7" y="613" width="0.5" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="285.72" y="623.5" ></text>
+</g>
+<g >
+<title>apparmor_current_getlsmblob_subj (10,101,010 samples, 0.03%)</title><rect x="302.3" y="613" width="0.5" height="15.0" fill="rgb(0,223,140)" rx="2" ry="2" />
+<text x="305.30" y="623.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="499.4" y="741" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="502.44" y="751.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (20,202,020 samples, 0.07%)</title><rect x="983.9" y="757" width="0.9" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="986.88" y="767.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="14.6" y="885" width="0.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="17.55" y="895.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.03%)</title><rect x="340.1" y="661" width="0.4" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="343.09" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="354.2" y="581" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="357.20" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="541.3" y="773" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="544.33" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="229.5" y="853" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="232.45" y="863.5" ></text>
+</g>
+<g >
+<title>do_open (20,202,020 samples, 0.07%)</title><rect x="472.1" y="613" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="475.12" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_discard_preallocations (10,101,010 samples, 0.03%)</title><rect x="572.7" y="677" width="0.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="575.74" y="687.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="111.1" y="613" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="114.08" y="623.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (454,545,450 samples, 1.48%)</title><rect x="989.3" y="805" width="20.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="992.34" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.07%)</title><rect x="380.2" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="383.16" y="591.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.13%)</title><rect x="183.0" y="837" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="186.01" y="847.5" ></text>
+</g>
+<g >
+<title>client_destroy (131,313,130 samples, 0.43%)</title><rect x="21.4" y="965" width="5.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="24.38" y="975.5" ></text>
+</g>
+<g >
+<title>ext4_inode_journal_mode (10,101,010 samples, 0.03%)</title><rect x="447.5" y="565" width="0.5" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="450.54" y="575.5" ></text>
+</g>
+<g >
+<title>destroy_large_folio (30,303,030 samples, 0.10%)</title><rect x="1388.2" y="517" width="1.3" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1391.18" y="527.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="21.4" y="773" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="24.38" y="783.5" ></text>
+</g>
+<g >
+<title>generic_update_time (10,101,010 samples, 0.03%)</title><rect x="600.5" y="597" width="0.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="603.52" y="607.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="710.2" y="741" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="713.24" y="751.5" ></text>
+</g>
+<g >
+<title>uncharge_batch (10,101,010 samples, 0.03%)</title><rect x="1022.1" y="485" width="0.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1025.12" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (40,404,040 samples, 0.13%)</title><rect x="587.8" y="709" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="590.77" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="686.1" y="741" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="689.11" y="751.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.03%)</title><rect x="1017.6" y="677" width="0.4" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1020.57" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (30,303,030 samples, 0.10%)</title><rect x="501.3" y="725" width="1.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="504.26" y="735.5" ></text>
+</g>
+<g >
+<title>net_rx_action (30,303,030 samples, 0.10%)</title><rect x="25.0" y="437" width="1.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="28.02" y="447.5" ></text>
+</g>
+<g >
+<title>__tcp_ack_snd_check (10,101,010 samples, 0.03%)</title><rect x="25.5" y="245" width="0.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="28.48" y="255.5" ></text>
+</g>
+<g >
+<title>git_remote_fetch (1,464,646,450 samples, 4.78%)</title><rect x="467.1" y="917" width="66.0" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="470.12" y="927.5" >git_rem..</text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.03%)</title><rect x="556.8" y="693" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="559.81" y="703.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (30,303,030 samples, 0.10%)</title><rect x="549.1" y="581" width="1.3" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="552.07" y="591.5" ></text>
+</g>
+<g >
+<title>open64 (494,949,490 samples, 1.62%)</title><rect x="57.8" y="1045" width="22.3" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="60.81" y="1055.5" >o..</text>
+</g>
+<g >
+<title>__ext4_journal_get_create_access (10,101,010 samples, 0.03%)</title><rect x="381.1" y="565" width="0.4" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="384.07" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (30,303,030 samples, 0.10%)</title><rect x="122.0" y="533" width="1.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="125.00" y="543.5" ></text>
+</g>
+<g >
+<title>json_object_to_json_string_length (5,323,232,270 samples, 17.39%)</title><rect x="771.7" y="933" width="239.9" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="774.71" y="943.5" >json_object_to_json_string_length</text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.03%)</title><rect x="680.2" y="725" width="0.4" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="683.19" y="735.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.03%)</title><rect x="576.8" y="661" width="0.5" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="579.84" y="671.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (20,202,020 samples, 0.07%)</title><rect x="719.8" y="789" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="722.81" y="799.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.03%)</title><rect x="669.3" y="661" width="0.4" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="672.27" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.03%)</title><rect x="423.4" y="613" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="426.41" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (282,828,280 samples, 0.92%)</title><rect x="544.1" y="773" width="12.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="547.06" y="783.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="528.1" y="725" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="531.13" y="735.5" ></text>
+</g>
+<g >
+<title>do_softirq (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="533" width="1.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1386.17" y="543.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.03%)</title><rect x="272.3" y="629" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="275.25" y="639.5" ></text>
+</g>
+<g >
+<title>do_writepages (30,303,030 samples, 0.10%)</title><rect x="596.0" y="581" width="1.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="598.97" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="166.2" y="517" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="169.17" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (40,404,040 samples, 0.13%)</title><rect x="346.5" y="709" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="349.46" y="719.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="837" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1046.98" y="847.5" ></text>
+</g>
+<g >
+<title>end_bio_bh_io_sync (10,101,010 samples, 0.03%)</title><rect x="700.2" y="565" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="703.23" y="575.5" ></text>
+</g>
+<g >
+<title>unlink (80,808,080 samples, 0.26%)</title><rect x="230.4" y="869" width="3.6" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="233.36" y="879.5" ></text>
+</g>
+<g >
+<title>libjson_set_string_internal (464,646,460 samples, 1.52%)</title><rect x="1349.0" y="949" width="21.0" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1352.02" y="959.5" ></text>
+</g>
+<g >
+<title>propagate_protected_usage (10,101,010 samples, 0.03%)</title><rect x="729.8" y="693" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="732.82" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="316.4" y="533" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="319.41" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="401.1" y="741" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="404.10" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (171,717,170 samples, 0.56%)</title><rect x="130.2" y="709" width="7.7" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="133.20" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (30,303,030 samples, 0.10%)</title><rect x="163.9" y="549" width="1.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="166.89" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (242,424,240 samples, 0.79%)</title><rect x="163.0" y="629" width="10.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="165.98" y="639.5" ></text>
+</g>
+<g >
+<title>snprintf (10,101,010 samples, 0.03%)</title><rect x="46.0" y="965" width="0.4" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="48.97" y="975.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="239.0" y="741" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="242.01" y="751.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="469.4" y="693" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="472.39" y="703.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="96.1" y="789" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="99.05" y="799.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (10,101,010 samples, 0.03%)</title><rect x="610.5" y="469" width="0.5" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="613.53" y="479.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="581" width="4.1" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1029.22" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="641.9" y="661" width="0.5" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="644.95" y="671.5" ></text>
+</g>
+<g >
+<title>iput (272,727,270 samples, 0.89%)</title><rect x="200.3" y="709" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="203.31" y="719.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.07%)</title><rect x="554.5" y="485" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="557.53" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.03%)</title><rect x="104.2" y="597" width="0.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="107.25" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="364.7" y="533" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="367.68" y="543.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (161,616,160 samples, 0.53%)</title><rect x="184.8" y="725" width="7.3" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="187.83" y="735.5" ></text>
+</g>
+<g >
+<title>remove (727,272,720 samples, 2.38%)</title><rect x="148.4" y="805" width="32.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="151.41" y="815.5" >re..</text>
+</g>
+<g >
+<title>destroy_inode (30,303,030 samples, 0.10%)</title><rect x="111.5" y="613" width="1.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="114.53" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="484.0" y="805" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="486.96" y="815.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.07%)</title><rect x="664.7" y="677" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="667.71" y="687.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="403.4" y="741" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="406.38" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (242,424,240 samples, 0.79%)</title><rect x="605.1" y="741" width="10.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="608.07" y="751.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (40,404,040 samples, 0.13%)</title><rect x="1380.0" y="709" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1382.98" y="719.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="464.8" y="597" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="467.84" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="292.7" y="661" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="295.74" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="682.5" y="805" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="685.47" y="815.5" ></text>
+</g>
+<g >
+<title>get_pfnblock_flags_mask (10,101,010 samples, 0.03%)</title><rect x="764.9" y="661" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="767.88" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (40,404,040 samples, 0.13%)</title><rect x="484.9" y="629" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="487.87" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="346.0" y="725" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="349.01" y="735.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.07%)</title><rect x="497.2" y="789" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="500.17" y="799.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.03%)</title><rect x="343.3" y="869" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="346.28" y="879.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="650.6" y="709" width="1.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="653.60" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="447.1" y="613" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="450.08" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="225.8" y="677" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="228.81" y="687.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.03%)</title><rect x="277.7" y="565" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="280.71" y="575.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (10,101,010 samples, 0.03%)</title><rect x="552.7" y="533" width="0.5" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="555.71" y="543.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_uncharge_skmem (20,202,020 samples, 0.07%)</title><rect x="1015.3" y="645" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1018.29" y="655.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="555.9" y="565" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="558.90" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (121,212,120 samples, 0.40%)</title><rect x="550.9" y="677" width="5.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="553.89" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_open_ondisk (30,303,030 samples, 0.10%)</title><rect x="585.0" y="869" width="1.4" height="15.0" fill="rgb(0,205,63)" rx="2" ry="2" />
+<text x="588.04" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (121,212,120 samples, 0.40%)</title><rect x="432.5" y="725" width="5.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="435.51" y="735.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (181,818,180 samples, 0.59%)</title><rect x="1047.2" y="933" width="8.2" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1050.16" y="943.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="357.4" y="453" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="360.39" y="463.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="624.2" y="581" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="627.19" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_accept4 (60,606,060 samples, 0.20%)</title><rect x="36.0" y="869" width="2.7" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="38.95" y="879.5" ></text>
+</g>
+<g >
+<title>anon_vma_interval_tree_insert (10,101,010 samples, 0.03%)</title><rect x="695.7" y="725" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="698.67" y="735.5" ></text>
+</g>
+<g >
+<title>sk_reset_timer (10,101,010 samples, 0.03%)</title><rect x="25.9" y="229" width="0.5" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="28.94" y="239.5" ></text>
+</g>
+<g >
+<title>unlink_cb (70,707,070 samples, 0.23%)</title><rect x="226.3" y="885" width="3.2" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="229.27" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.03%)</title><rect x="574.1" y="693" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="577.11" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.26%)</title><rect x="476.2" y="773" width="3.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="479.22" y="783.5" ></text>
+</g>
+<g >
+<title>iterate_dir (10,101,010 samples, 0.03%)</title><rect x="234.5" y="821" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="237.46" y="831.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.07%)</title><rect x="216.2" y="709" width="1.0" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="219.25" y="719.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (40,404,040 samples, 0.13%)</title><rect x="469.8" y="869" width="1.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="472.85" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (111,111,110 samples, 0.36%)</title><rect x="487.1" y="821" width="5.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="490.15" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.33%)</title><rect x="393.8" y="805" width="4.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="396.81" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.03%)</title><rect x="548.6" y="501" width="0.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="551.61" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="275.4" y="869" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="278.44" y="879.5" ></text>
+</g>
+<g >
+<title>git_index_free (20,202,020 samples, 0.07%)</title><rect x="96.5" y="917" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="99.51" y="927.5" ></text>
+</g>
+<g >
+<title>tcp_clean_rtx_queue.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="10.9" y="741" width="0.5" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="13.91" y="751.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="92.9" y="837" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="95.86" y="847.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="389" width="1.8" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1386.17" y="399.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (121,212,120 samples, 0.40%)</title><rect x="280.4" y="821" width="5.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="283.45" y="831.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="1363.1" y="789" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1366.14" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (10,101,010 samples, 0.03%)</title><rect x="447.5" y="629" width="0.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="450.54" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="664.7" y="821" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="667.71" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="412.5" y="725" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="415.48" y="735.5" ></text>
+</g>
+<g >
+<title>fsnotify (10,101,010 samples, 0.03%)</title><rect x="667.0" y="613" width="0.4" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="669.99" y="623.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="650.1" y="757" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="653.15" y="767.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (10,101,010 samples, 0.03%)</title><rect x="610.5" y="485" width="0.5" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="613.53" y="495.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="430.7" y="581" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="433.69" y="591.5" ></text>
+</g>
+<g >
+<title>git_reference_symbolic_create_matching (333,333,330 samples, 1.09%)</title><rect x="423.9" y="853" width="15.0" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="426.86" y="863.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (20,202,020 samples, 0.07%)</title><rect x="268.2" y="821" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="271.15" y="831.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (20,202,020 samples, 0.07%)</title><rect x="1030.3" y="309" width="0.9" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1033.32" y="319.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited (10,101,010 samples, 0.03%)</title><rect x="275.4" y="693" width="0.5" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="278.44" y="703.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_free_hook (10,101,010 samples, 0.03%)</title><rect x="983.9" y="693" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="986.88" y="703.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (101,010,100 samples, 0.33%)</title><rect x="1018.9" y="709" width="4.6" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1021.93" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.03%)</title><rect x="23.7" y="693" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="26.66" y="703.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="697.0" y="629" width="0.5" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="700.04" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="199.9" y="629" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="202.86" y="639.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="476.7" y="661" width="0.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="479.68" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.13%)</title><rect x="181.2" y="805" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="184.19" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.26%)</title><rect x="293.2" y="901" width="3.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="296.19" y="911.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="721.6" y="853" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="724.63" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="498.5" y="805" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="501.53" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="386.1" y="773" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="389.07" y="783.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (101,010,100 samples, 0.33%)</title><rect x="605.1" y="693" width="4.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="608.07" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="600.5" y="501" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="603.52" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="672.5" y="837" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="675.45" y="847.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="47.3" y="901" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="50.33" y="911.5" ></text>
+</g>
+<g >
+<title>block_write_end (10,101,010 samples, 0.03%)</title><rect x="577.8" y="677" width="0.4" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="580.75" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (80,808,080 samples, 0.26%)</title><rect x="270.0" y="821" width="3.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="272.97" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (50,505,050 samples, 0.16%)</title><rect x="443.0" y="661" width="2.3" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="445.99" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.07%)</title><rect x="646.0" y="709" width="1.0" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="649.05" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.03%)</title><rect x="1385.9" y="421" width="0.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1388.90" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (20,202,020 samples, 0.07%)</title><rect x="582.3" y="645" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="585.31" y="655.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.07%)</title><rect x="1028.5" y="261" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1031.50" y="271.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (40,404,040 samples, 0.13%)</title><rect x="181.2" y="773" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="184.19" y="783.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="234.0" y="853" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="237.01" y="863.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="229.5" y="741" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="232.45" y="751.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (50,505,050 samples, 0.16%)</title><rect x="1340.8" y="805" width="2.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1343.83" y="815.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="757.1" y="757" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="760.14" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="438.0" y="725" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="440.98" y="735.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.03%)</title><rect x="422.0" y="597" width="0.5" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="425.04" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="73.7" y="773" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="76.74" y="783.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.03%)</title><rect x="678.4" y="581" width="0.4" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="681.37" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_clone (696,969,690 samples, 2.28%)</title><rect x="688.4" y="853" width="31.4" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="691.39" y="863.5" >__..</text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="256.3" y="773" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="259.31" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_fname_setup_filename (10,101,010 samples, 0.03%)</title><rect x="76.9" y="837" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="79.93" y="847.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.03%)</title><rect x="677.0" y="549" width="0.5" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="680.01" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="407.5" y="645" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="410.47" y="655.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.03%)</title><rect x="457.1" y="741" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="460.10" y="751.5" ></text>
+</g>
+<g >
+<title>__schedule (20,202,020 samples, 0.07%)</title><rect x="1370.4" y="821" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1373.42" y="831.5" ></text>
+</g>
+<g >
+<title>inet_stream_connect (181,818,180 samples, 0.59%)</title><rect x="1035.3" y="869" width="8.2" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1038.32" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.07%)</title><rect x="158.0" y="613" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="160.97" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="479.9" y="725" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="482.86" y="735.5" ></text>
+</g>
+<g >
+<title>buf_create_from_string (30,303,030 samples, 0.10%)</title><rect x="770.3" y="965" width="1.4" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="773.34" y="975.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="546.8" y="373" width="0.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="549.79" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="546.8" y="565" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="549.79" y="575.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.03%)</title><rect x="363.8" y="517" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="366.76" y="527.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="1332.6" y="885" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1335.63" y="895.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.07%)</title><rect x="655.2" y="661" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="658.15" y="671.5" ></text>
+</g>
+<g >
+<title>filemap_get_pages (10,101,010 samples, 0.03%)</title><rect x="587.3" y="597" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="590.31" y="607.5" ></text>
+</g>
+<g >
+<title>__sys_connect (151,515,150 samples, 0.49%)</title><rect x="1382.7" y="901" width="6.8" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1385.72" y="911.5" ></text>
+</g>
+<g >
+<title>read (30,303,030 samples, 0.10%)</title><rect x="600.1" y="773" width="1.3" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="603.06" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="384.7" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="387.71" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="646.0" y="757" width="1.0" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="649.05" y="767.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.03%)</title><rect x="13.6" y="805" width="0.5" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="16.64" y="815.5" ></text>
+</g>
+<g >
+<title>__memcpy (10,101,010 samples, 0.03%)</title><rect x="247.7" y="709" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="250.66" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="487.6" y="773" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="490.60" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="284.5" y="677" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="287.54" y="687.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="314.6" y="597" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="317.59" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="467.1" y="805" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="470.12" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (20,202,020 samples, 0.07%)</title><rect x="339.6" y="725" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="342.63" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (10,101,010 samples, 0.03%)</title><rect x="115.2" y="613" width="0.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="118.17" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (40,404,040 samples, 0.13%)</title><rect x="44.1" y="821" width="1.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="47.15" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="658.8" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="661.80" y="687.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.07%)</title><rect x="637.9" y="853" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="640.85" y="863.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.03%)</title><rect x="636.5" y="757" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="639.49" y="767.5" ></text>
+</g>
+<g >
+<title>set_root (10,101,010 samples, 0.03%)</title><rect x="391.1" y="597" width="0.4" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="394.08" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (20,202,020 samples, 0.07%)</title><rect x="118.4" y="661" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="121.36" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="679.7" y="629" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="682.74" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (10,101,010 samples, 0.03%)</title><rect x="606.4" y="597" width="0.5" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="609.44" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="685.7" y="709" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="688.66" y="719.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="95.1" y="869" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="98.14" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (20,202,020 samples, 0.07%)</title><rect x="132.0" y="645" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="135.02" y="655.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (30,303,030 samples, 0.10%)</title><rect x="1331.3" y="901" width="1.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1334.27" y="911.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="388.8" y="773" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="391.81" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="407.9" y="757" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="410.93" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_v4_conn_request (10,101,010 samples, 0.03%)</title><rect x="1041.2" y="373" width="0.5" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1044.24" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="709" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1046.98" y="719.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="693" width="4.1" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1029.22" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="585.5" y="789" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="588.49" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="486.7" y="709" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="489.69" y="719.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="495.3" y="677" width="0.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="498.34" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="553.6" y="469" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="556.62" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="105.6" y="469" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="108.61" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.07%)</title><rect x="241.7" y="677" width="1.0" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="244.75" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_push (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="773" width="4.1" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1029.22" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="105.6" y="517" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="108.61" y="527.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (10,101,010 samples, 0.03%)</title><rect x="11.8" y="677" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="14.82" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (151,515,150 samples, 0.49%)</title><rect x="325.1" y="773" width="6.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="328.06" y="783.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.03%)</title><rect x="241.3" y="613" width="0.4" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="244.29" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="620.6" y="693" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="623.55" y="703.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="227.6" y="597" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="230.63" y="607.5" ></text>
+</g>
+<g >
+<title>do_wp_page (40,404,040 samples, 0.13%)</title><rect x="743.0" y="661" width="1.8" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="746.03" y="671.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (10,101,010 samples, 0.03%)</title><rect x="1043.1" y="789" width="0.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1046.06" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (50,505,050 samples, 0.16%)</title><rect x="105.6" y="533" width="2.3" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="108.61" y="543.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="286.4" y="693" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="289.36" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="1367.2" y="837" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1370.24" y="847.5" ></text>
+</g>
+<g >
+<title>__sys_socket (20,202,020 samples, 0.07%)</title><rect x="1381.8" y="901" width="0.9" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="1384.80" y="911.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (10,101,010 samples, 0.03%)</title><rect x="1012.1" y="741" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1015.10" y="751.5" ></text>
+</g>
+<g >
+<title>path_parentat (20,202,020 samples, 0.07%)</title><rect x="325.1" y="693" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="328.06" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="757.1" y="901" width="1.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="760.14" y="911.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="653.8" y="613" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="656.79" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="525.4" y="693" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="528.39" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_symlink (30,303,030 samples, 0.10%)</title><rect x="570.0" y="789" width="1.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="573.01" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_create (121,212,120 samples, 0.40%)</title><rect x="564.1" y="693" width="5.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="567.09" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="147.5" y="613" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="150.50" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="262.2" y="789" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="265.23" y="799.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="286.4" y="709" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="289.36" y="719.5" ></text>
+</g>
+<g >
+<title>__block_commit_write (20,202,020 samples, 0.07%)</title><rect x="444.4" y="597" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="447.35" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (30,303,030 samples, 0.10%)</title><rect x="596.0" y="645" width="1.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="598.97" y="655.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="244.9" y="773" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="247.93" y="783.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (181,818,180 samples, 0.59%)</title><rect x="1047.2" y="949" width="8.2" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1050.16" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.03%)</title><rect x="512.2" y="613" width="0.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="515.19" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="468.5" y="757" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="471.48" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="279.5" y="821" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="282.53" y="831.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (60,606,060 samples, 0.20%)</title><rect x="1027.1" y="325" width="2.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1030.13" y="335.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="578.7" y="805" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="581.66" y="815.5" ></text>
+</g>
+<g >
+<title>__release_sock (10,101,010 samples, 0.03%)</title><rect x="10.9" y="805" width="0.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="13.91" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="414.3" y="677" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="417.30" y="687.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (30,303,030 samples, 0.10%)</title><rect x="1331.3" y="933" width="1.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1334.27" y="943.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (171,717,170 samples, 0.56%)</title><rect x="590.0" y="725" width="7.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="593.05" y="735.5" ></text>
+</g>
+<g >
+<title>server_main (636,363,630 samples, 2.08%)</title><rect x="17.7" y="1029" width="28.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="20.74" y="1039.5" >se..</text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (40,404,040 samples, 0.13%)</title><rect x="248.1" y="709" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="251.12" y="719.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.03%)</title><rect x="422.5" y="709" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="425.50" y="719.5" ></text>
+</g>
+<g >
+<title>do_writepages (70,707,070 samples, 0.23%)</title><rect x="449.8" y="613" width="3.2" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="452.82" y="623.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="535.9" y="661" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="538.87" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.03%)</title><rect x="11.8" y="373" width="0.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="14.82" y="383.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="62.8" y="853" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="65.81" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="480.3" y="789" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="483.32" y="799.5" ></text>
+</g>
+<g >
+<title>_copy_to_user (10,101,010 samples, 0.03%)</title><rect x="675.2" y="709" width="0.4" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="678.19" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="350.6" y="757" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="353.56" y="767.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="708.0" y="597" width="0.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="710.97" y="607.5" ></text>
+</g>
+<g >
+<title>unlink (191,919,190 samples, 0.63%)</title><rect x="216.2" y="837" width="8.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="219.25" y="847.5" ></text>
+</g>
+<g >
+<title>mempool_free_slab (10,101,010 samples, 0.03%)</title><rect x="700.2" y="517" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="703.23" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="202.1" y="645" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="205.13" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_journal_check_start (10,101,010 samples, 0.03%)</title><rect x="148.0" y="645" width="0.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="150.95" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.13%)</title><rect x="86.0" y="917" width="1.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="89.03" y="927.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="397.5" y="613" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="400.46" y="623.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.3.0] (10,101,010 samples, 0.03%)</title><rect x="1373.6" y="853" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1376.61" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="15.9" y="965" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="18.92" y="975.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (10,101,010 samples, 0.03%)</title><rect x="361.0" y="597" width="0.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="364.03" y="607.5" ></text>
+</g>
+<g >
+<title>rename (181,818,180 samples, 0.59%)</title><rect x="589.6" y="789" width="8.2" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="592.59" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="112.9" y="517" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="115.90" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="73.7" y="805" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="76.74" y="815.5" ></text>
+</g>
+<g >
+<title>run_timer_softirq (10,101,010 samples, 0.03%)</title><rect x="601.0" y="613" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="603.97" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (151,515,150 samples, 0.49%)</title><rect x="1382.7" y="949" width="6.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1385.72" y="959.5" ></text>
+</g>
+<g >
+<title>__sk_mem_raise_allocated (20,202,020 samples, 0.07%)</title><rect x="1032.1" y="741" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1035.14" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="476.7" y="741" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="479.68" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="265.4" y="693" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="268.42" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="708.0" y="485" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="710.97" y="495.5" ></text>
+</g>
+<g >
+<title>git_error_set (10,101,010 samples, 0.03%)</title><rect x="484.4" y="709" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="487.42" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_open (40,404,040 samples, 0.13%)</title><rect x="59.6" y="901" width="1.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="62.63" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_rename (10,101,010 samples, 0.03%)</title><rect x="594.1" y="677" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="597.14" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.03%)</title><rect x="510.8" y="597" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="513.82" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (212,121,210 samples, 0.69%)</title><rect x="509.0" y="677" width="9.6" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="512.00" y="687.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range (40,404,040 samples, 0.13%)</title><rect x="18.7" y="869" width="1.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="21.65" y="879.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="85.1" y="837" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="88.12" y="847.5" ></text>
+</g>
+<g >
+<title>release_sock (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="821" width="1.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1386.17" y="831.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (30,303,030 samples, 0.10%)</title><rect x="1040.3" y="469" width="1.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1043.33" y="479.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="344.6" y="773" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="347.64" y="783.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (40,404,040 samples, 0.13%)</title><rect x="1385.9" y="533" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1388.90" y="543.5" ></text>
+</g>
+<g >
+<title>git_odb_free (20,202,020 samples, 0.07%)</title><rect x="97.4" y="917" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="100.42" y="927.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="673.4" y="821" width="1.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="676.37" y="831.5" ></text>
+</g>
+<g >
+<title>process_backlog (20,202,020 samples, 0.07%)</title><rect x="1380.0" y="469" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1382.98" y="479.5" ></text>
+</g>
+<g >
+<title>idr_find (10,101,010 samples, 0.03%)</title><rect x="754.9" y="789" width="0.4" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="757.86" y="799.5" ></text>
+</g>
+<g >
+<title>event_loop_run (454,545,450 samples, 1.48%)</title><rect x="18.2" y="997" width="20.5" height="15.0" fill="rgb(0,235,193)" rx="2" ry="2" />
+<text x="21.20" y="1007.5" ></text>
+</g>
+<g >
+<title>__errno_location (10,101,010 samples, 0.03%)</title><rect x="661.1" y="805" width="0.4" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="664.07" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (282,828,280 samples, 0.92%)</title><rect x="544.1" y="757" width="12.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="547.06" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="232.2" y="661" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="235.18" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_xattr_security_get (10,101,010 samples, 0.03%)</title><rect x="536.3" y="597" width="0.5" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="539.32" y="607.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.03%)</title><rect x="610.5" y="453" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="613.53" y="463.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="421" width="1.4" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1033.32" y="431.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="1010.7" y="725" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1013.74" y="735.5" ></text>
+</g>
+<g >
+<title>realpath (20,202,020 samples, 0.07%)</title><rect x="636.5" y="869" width="0.9" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="639.49" y="879.5" ></text>
+</g>
+<g >
+<title>_find_next_zero_bit (10,101,010 samples, 0.03%)</title><rect x="53.7" y="773" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="56.71" y="783.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.03%)</title><rect x="425.2" y="581" width="0.5" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="428.23" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="459.8" y="501" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="462.83" y="511.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="495.8" y="693" width="1.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="498.80" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="487.1" y="757" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="490.15" y="767.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="489.9" y="533" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="492.88" y="543.5" ></text>
+</g>
+<g >
+<title>wait_for_child (40,404,040 samples, 0.13%)</title><rect x="754.0" y="933" width="1.8" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="756.95" y="943.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (30,303,030 samples, 0.10%)</title><rect x="770.3" y="949" width="1.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="773.34" y="959.5" ></text>
+</g>
+<g >
+<title>alloc_user_cpus_ptr (10,101,010 samples, 0.03%)</title><rect x="33.7" y="725" width="0.4" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="36.68" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.10%)</title><rect x="518.6" y="677" width="1.3" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="521.56" y="687.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="489.4" y="597" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="492.43" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="751.2" y="885" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="754.22" y="895.5" ></text>
+</g>
+<g >
+<title>alloc_file (10,101,010 samples, 0.03%)</title><rect x="752.6" y="805" width="0.4" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="755.59" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="240.4" y="741" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="243.38" y="751.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.07%)</title><rect x="477.6" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="480.59" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="436.2" y="453" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="439.16" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.20%)</title><rect x="499.9" y="805" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="502.90" y="815.5" ></text>
+</g>
+<g >
+<title>sg_alloc_table_chained (10,101,010 samples, 0.03%)</title><rect x="552.7" y="293" width="0.5" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="555.71" y="303.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="392.9" y="693" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="395.90" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="108.3" y="741" width="1.0" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="111.34" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="658.8" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="661.80" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.03%)</title><rect x="313.7" y="645" width="0.4" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="316.68" y="655.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="457.6" y="821" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="460.56" y="831.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="305.9" y="661" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="308.94" y="671.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="351.9" y="677" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="354.93" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="349.2" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="352.19" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.03%)</title><rect x="370.1" y="661" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="373.14" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="48.2" y="885" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="51.24" y="895.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="219.0" y="661" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="221.98" y="671.5" ></text>
+</g>
+<g >
+<title>inet_release (20,202,020 samples, 0.07%)</title><rect x="1034.0" y="821" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1036.96" y="831.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="308.7" y="661" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="311.67" y="671.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (10,101,010 samples, 0.03%)</title><rect x="11.8" y="181" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="14.82" y="191.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="301.8" y="661" width="0.5" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="304.84" y="671.5" ></text>
+</g>
+<g >
+<title>filldir64 (10,101,010 samples, 0.03%)</title><rect x="369.7" y="709" width="0.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="372.68" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="600.5" y="565" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="603.52" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="480.3" y="757" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="483.32" y="767.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.03%)</title><rect x="467.1" y="757" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="470.12" y="767.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="114.3" y="565" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="117.26" y="575.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (90,909,090 samples, 0.30%)</title><rect x="488.1" y="773" width="4.1" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="491.06" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.03%)</title><rect x="278.6" y="613" width="0.5" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="281.62" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="238.1" y="773" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="241.10" y="783.5" ></text>
+</g>
+<g >
+<title>free_unref_page (30,303,030 samples, 0.10%)</title><rect x="1388.2" y="501" width="1.3" height="15.0" fill="rgb(0,238,205)" rx="2" ry="2" />
+<text x="1391.18" y="511.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (50,505,050 samples, 0.16%)</title><rect x="751.7" y="885" width="2.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="754.68" y="895.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="393.4" y="789" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="396.36" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="372.0" y="837" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="374.96" y="847.5" ></text>
+</g>
+<g >
+<title>remove (131,313,130 samples, 0.43%)</title><rect x="110.2" y="757" width="5.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="113.16" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="492.2" y="789" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="495.16" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="251.8" y="837" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="254.76" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="107.9" y="757" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="110.89" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="109.3" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="112.25" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_create (30,303,030 samples, 0.10%)</title><rect x="531.8" y="709" width="1.3" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="534.77" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="634.2" y="709" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="637.21" y="719.5" ></text>
+</g>
+<g >
+<title>mpage_submit_folio (20,202,020 samples, 0.07%)</title><rect x="366.5" y="517" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="369.50" y="527.5" ></text>
+</g>
+<g >
+<title>do_vmi_align_munmap (252,525,250 samples, 0.82%)</title><rect x="759.0" y="773" width="11.3" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="761.96" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="504.9" y="693" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="507.91" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_release_folio (10,101,010 samples, 0.03%)</title><rect x="361.0" y="517" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="364.03" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.03%)</title><rect x="67.4" y="853" width="0.4" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="70.37" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_mb_complex_scan_group (10,101,010 samples, 0.03%)</title><rect x="631.5" y="613" width="0.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="634.48" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.03%)</title><rect x="433.0" y="597" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="435.97" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (60,606,060 samples, 0.20%)</title><rect x="1027.1" y="341" width="2.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1030.13" y="351.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="481.7" y="693" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="484.69" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.03%)</title><rect x="423.4" y="757" width="0.5" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="426.41" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="413.4" y="757" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="416.39" y="767.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="982.5" y="709" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="985.51" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="204.0" y="629" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="206.96" y="639.5" ></text>
+</g>
+<g >
+<title>ip_local_out (101,010,100 samples, 0.33%)</title><rect x="1038.5" y="757" width="4.6" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1041.51" y="767.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (80,808,080 samples, 0.26%)</title><rect x="1385.9" y="709" width="3.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1388.90" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="624.2" y="677" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="627.19" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="821" width="0.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1046.98" y="831.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (60,606,060 samples, 0.20%)</title><rect x="39.1" y="981" width="2.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="42.14" y="991.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (30,303,030 samples, 0.10%)</title><rect x="625.6" y="645" width="1.3" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="628.56" y="655.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="240.4" y="581" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="243.38" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="219.0" y="629" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="221.98" y="639.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="453" width="4.1" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1029.22" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="243.1" y="725" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="246.11" y="735.5" ></text>
+</g>
+<g >
+<title>do_pipe2 (40,404,040 samples, 0.13%)</title><rect x="752.1" y="853" width="1.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="755.13" y="863.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (20,202,020 samples, 0.07%)</title><rect x="420.2" y="501" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="423.22" y="511.5" ></text>
+</g>
+<g >
+<title>pte_mkwrite (20,202,020 samples, 0.07%)</title><rect x="1365.4" y="805" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="1368.41" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.16%)</title><rect x="521.3" y="741" width="2.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="524.30" y="751.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="471.7" y="581" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="474.67" y="591.5" ></text>
+</g>
+<g >
+<title>remove (404,040,400 samples, 1.32%)</title><rect x="196.2" y="837" width="18.2" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="199.22" y="847.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.03%)</title><rect x="678.4" y="597" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="681.37" y="607.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.07%)</title><rect x="588.2" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="591.23" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (90,909,090 samples, 0.30%)</title><rect x="245.8" y="805" width="4.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="248.84" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.16%)</title><rect x="443.0" y="757" width="2.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="445.99" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (30,303,030 samples, 0.10%)</title><rect x="116.5" y="741" width="1.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="119.54" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="467.6" y="725" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="470.57" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.10%)</title><rect x="506.7" y="645" width="1.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="509.73" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="755.8" y="885" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="758.77" y="895.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.07%)</title><rect x="350.6" y="661" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="353.56" y="671.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.03%)</title><rect x="649.7" y="645" width="0.4" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="652.69" y="655.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="473.0" y="629" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="476.04" y="639.5" ></text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.03%)</title><rect x="311.0" y="597" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="313.95" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (40,404,040 samples, 0.13%)</title><rect x="232.2" y="773" width="1.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="235.18" y="783.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="670.6" y="533" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="673.63" y="543.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.03%)</title><rect x="680.2" y="789" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="683.19" y="799.5" ></text>
+</g>
+<g >
+<title>free_unref_page_commit (10,101,010 samples, 0.03%)</title><rect x="1347.2" y="789" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1350.20" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (10,101,010 samples, 0.03%)</title><rect x="236.7" y="709" width="0.5" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="239.74" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="664.7" y="757" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="667.71" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (10,101,010 samples, 0.03%)</title><rect x="21.4" y="869" width="0.4" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="24.38" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.07%)</title><rect x="268.2" y="757" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="271.15" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="112.9" y="533" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="115.90" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_read_block_bitmap (10,101,010 samples, 0.03%)</title><rect x="382.0" y="485" width="0.4" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="384.98" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (10,101,010 samples, 0.03%)</title><rect x="687.9" y="741" width="0.5" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="690.93" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (222,222,220 samples, 0.73%)</title><rect x="163.9" y="613" width="10.0" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="166.89" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (40,404,040 samples, 0.13%)</title><rect x="394.7" y="645" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="397.72" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (494,949,490 samples, 1.62%)</title><rect x="1011.6" y="805" width="22.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1014.65" y="815.5" >t..</text>
+</g>
+<g >
+<title>git_config_snapshot (60,606,060 samples, 0.20%)</title><rect x="401.1" y="821" width="2.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="404.10" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="570.0" y="837" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="573.01" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="484.4" y="757" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="487.42" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="293.6" y="821" width="1.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="296.65" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="502.2" y="693" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="505.17" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (111,111,110 samples, 0.36%)</title><rect x="683.4" y="869" width="5.0" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="686.38" y="879.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.03%)</title><rect x="538.1" y="757" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="541.14" y="767.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="135.7" y="581" width="0.4" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="138.66" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="600.5" y="469" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="603.52" y="479.5" ></text>
+</g>
+<g >
+<title>pthread_mutex_lock (10,101,010 samples, 0.03%)</title><rect x="299.6" y="869" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="302.57" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="470.3" y="741" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="473.30" y="751.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.03%)</title><rect x="80.1" y="885" width="0.5" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="83.12" y="895.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_uncharge (10,101,010 samples, 0.03%)</title><rect x="448.0" y="581" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="450.99" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="305.9" y="789" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="308.94" y="799.5" ></text>
+</g>
+<g >
+<title>set_root (10,101,010 samples, 0.03%)</title><rect x="662.4" y="613" width="0.5" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="665.44" y="623.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (30,303,030 samples, 0.10%)</title><rect x="25.0" y="533" width="1.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="28.02" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="394.3" y="709" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="397.27" y="719.5" ></text>
+</g>
+<g >
+<title>__folio_throttle_swaprate (30,303,030 samples, 0.10%)</title><rect x="1336.7" y="837" width="1.4" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1339.73" y="847.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.03%)</title><rect x="56.4" y="869" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="59.44" y="879.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="224.9" y="837" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="227.90" y="847.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (20,202,020 samples, 0.07%)</title><rect x="444.4" y="581" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="447.35" y="591.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (20,202,020 samples, 0.07%)</title><rect x="1030.3" y="261" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1033.32" y="271.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="363.8" y="533" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="366.76" y="543.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.03%)</title><rect x="521.3" y="485" width="0.5" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="524.30" y="495.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="653.8" y="581" width="0.4" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="656.79" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="226.7" y="709" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="229.72" y="719.5" ></text>
+</g>
+<g >
+<title>__fput (20,202,020 samples, 0.07%)</title><rect x="1034.0" y="869" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1036.96" y="879.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="421" width="3.2" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1038.32" y="431.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (2,989,898,960 samples, 9.77%)</title><rect x="304.1" y="901" width="134.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="307.12" y="911.5" >[libgit2.so.1.7.2]</text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="458.9" y="517" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="461.92" y="527.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="391.5" y="757" width="0.5" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="394.54" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.07%)</title><rect x="651.1" y="677" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="654.06" y="687.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.03%)</title><rect x="1344.0" y="837" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1347.02" y="847.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="596.0" y="453" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="598.97" y="463.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="62.4" y="901" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="65.36" y="911.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="219.0" y="581" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="221.98" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="658.8" y="661" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="661.80" y="671.5" ></text>
+</g>
+<g >
+<title>__submit_bio (10,101,010 samples, 0.03%)</title><rect x="553.2" y="469" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="556.17" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (797,979,790 samples, 2.61%)</title><rect x="304.6" y="853" width="35.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="307.58" y="863.5" >[li..</text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (20,202,020 samples, 0.07%)</title><rect x="248.1" y="549" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="251.12" y="559.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="587.3" y="757" width="0.5" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="590.31" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="805" width="1.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1378.43" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="586.4" y="789" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="589.40" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="73.3" y="757" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="76.29" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="519.9" y="741" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="522.93" y="751.5" ></text>
+</g>
+<g >
+<title>ip_rcv (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="405" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1386.17" y="415.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="80.1" y="981" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="83.12" y="991.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (40,404,040 samples, 0.13%)</title><rect x="587.8" y="693" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="590.77" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="757.6" y="725" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="760.59" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_no_and_offset (10,101,010 samples, 0.03%)</title><rect x="365.1" y="469" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="368.13" y="479.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="681.1" y="709" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="684.11" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="352.4" y="677" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="355.38" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.03%)</title><rect x="295.9" y="805" width="0.5" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="298.93" y="815.5" ></text>
+</g>
+<g >
+<title>security_d_instantiate (10,101,010 samples, 0.03%)</title><rect x="753.0" y="789" width="0.5" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="756.04" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.07%)</title><rect x="381.5" y="565" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="384.52" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="116.1" y="757" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="119.08" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="233.1" y="709" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="236.09" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.03%)</title><rect x="1331.7" y="725" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1334.72" y="735.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.03%)</title><rect x="396.5" y="629" width="0.5" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="399.55" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (181,818,180 samples, 0.59%)</title><rect x="1035.3" y="933" width="8.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1038.32" y="943.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="262.7" y="693" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="265.69" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="636.5" y="725" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="639.49" y="735.5" ></text>
+</g>
+<g >
+<title>apparmor_file_permission (10,101,010 samples, 0.03%)</title><rect x="750.3" y="773" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="753.31" y="783.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="234.0" y="805" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="237.01" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="126.6" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="129.56" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (30,303,030 samples, 0.10%)</title><rect x="219.4" y="629" width="1.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="222.44" y="639.5" ></text>
+</g>
+<g >
+<title>unlink_cb (90,909,090 samples, 0.30%)</title><rect x="103.8" y="757" width="4.1" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="106.79" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.03%)</title><rect x="296.4" y="725" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="299.38" y="735.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="421.1" y="533" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="424.13" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (222,222,220 samples, 0.73%)</title><rect x="393.8" y="853" width="10.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="396.81" y="863.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="371.0" y="709" width="0.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="374.05" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="240.8" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="243.83" y="735.5" ></text>
+</g>
+<g >
+<title>mpage_submit_folio (10,101,010 samples, 0.03%)</title><rect x="596.4" y="501" width="0.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="599.42" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_append (111,111,110 samples, 0.36%)</title><rect x="314.1" y="661" width="5.0" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="317.14" y="671.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="1363.1" y="773" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1366.14" y="783.5" ></text>
+</g>
+<g >
+<title>__inet_lookup_skb (10,101,010 samples, 0.03%)</title><rect x="1383.2" y="325" width="0.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1386.17" y="335.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="454.4" y="741" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="457.37" y="751.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (40,404,040 samples, 0.13%)</title><rect x="171.2" y="517" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="174.17" y="527.5" ></text>
+</g>
+<g >
+<title>malloc (30,303,030 samples, 0.10%)</title><rect x="116.5" y="757" width="1.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="119.54" y="767.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="262.2" y="741" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="265.23" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="481.7" y="805" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="484.69" y="815.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="97.0" y="869" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="99.96" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="587.3" y="693" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="590.31" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="394.3" y="757" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="397.27" y="767.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (30,303,030 samples, 0.10%)</title><rect x="549.1" y="597" width="1.3" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="552.07" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="21.4" y="933" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="24.38" y="943.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="498.5" y="789" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="501.53" y="799.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="232.6" y="693" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="235.64" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="1381.8" y="965" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1384.80" y="975.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="557.3" y="693" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="560.26" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="682.0" y="805" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="685.02" y="815.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (10,101,010 samples, 0.03%)</title><rect x="11.8" y="309" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="14.82" y="319.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.03%)</title><rect x="556.8" y="773" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="559.81" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="226.7" y="661" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="229.72" y="671.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (131,313,130 samples, 0.43%)</title><rect x="544.5" y="661" width="5.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="547.52" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="117.9" y="741" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="120.90" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="491.2" y="677" width="1.0" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="494.25" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="587.3" y="645" width="0.5" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="590.31" y="655.5" ></text>
+</g>
+<g >
+<title>apparmor_d_instantiate (10,101,010 samples, 0.03%)</title><rect x="72.4" y="821" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="75.38" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="565.9" y="629" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="568.92" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.03%)</title><rect x="156.1" y="645" width="0.5" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="159.15" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="498.5" y="741" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="501.53" y="751.5" ></text>
+</g>
+<g >
+<title>dentry_free (10,101,010 samples, 0.03%)</title><rect x="177.1" y="629" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="180.09" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_setattr (10,101,010 samples, 0.03%)</title><rect x="537.2" y="725" width="0.5" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="540.23" y="735.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="602.8" y="725" width="0.4" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="605.79" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (10,101,010 samples, 0.03%)</title><rect x="10.9" y="773" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="13.91" y="783.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.07%)</title><rect x="521.3" y="597" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="524.30" y="607.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (20,202,020 samples, 0.07%)</title><rect x="460.7" y="517" width="1.0" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="463.74" y="527.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="244.5" y="805" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="247.48" y="815.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="675.2" y="741" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="678.19" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="568.6" y="629" width="1.0" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="571.65" y="639.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (20,202,020 samples, 0.07%)</title><rect x="200.3" y="661" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="203.31" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="466.7" y="757" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="469.66" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="407.9" y="693" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="410.93" y="703.5" ></text>
+</g>
+<g >
+<title>write (40,404,040 samples, 0.13%)</title><rect x="293.6" y="837" width="1.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="296.65" y="847.5" ></text>
+</g>
+<g >
+<title>is_dx_dir (10,101,010 samples, 0.03%)</title><rect x="663.8" y="693" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="666.80" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="648.8" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="651.78" y="719.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="653.3" y="581" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="656.33" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="49.2" y="805" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="52.16" y="815.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (343,434,340 samples, 1.12%)</title><rect x="352.4" y="757" width="15.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="355.38" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="205.8" y="581" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="208.78" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="298.2" y="533" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="301.20" y="543.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="92.9" y="821" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="95.86" y="831.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="353.7" y="469" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="356.75" y="479.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="451.2" y="405" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="454.18" y="415.5" ></text>
+</g>
+<g >
+<title>file_close (10,101,010 samples, 0.03%)</title><rect x="21.8" y="949" width="0.5" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="24.84" y="959.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.03%)</title><rect x="495.8" y="629" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="498.80" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (30,303,030 samples, 0.10%)</title><rect x="559.5" y="629" width="1.4" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="562.54" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="620.6" y="677" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="623.55" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="66.0" y="789" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="69.00" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (20,202,020 samples, 0.07%)</title><rect x="234.9" y="773" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="237.92" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="384.3" y="709" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="387.25" y="719.5" ></text>
+</g>
+<g >
+<title>perf_event_fork (10,101,010 samples, 0.03%)</title><rect x="34.6" y="757" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="37.59" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="750.8" y="901" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="753.77" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="298.7" y="789" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="301.66" y="799.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="549" width="3.2" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1038.32" y="559.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.07%)</title><rect x="536.3" y="821" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="539.32" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (80,808,080 samples, 0.26%)</title><rect x="564.1" y="677" width="3.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="567.09" y="687.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="672.9" y="757" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="675.91" y="767.5" ></text>
+</g>
+<g >
+<title>__destroy_inode (10,101,010 samples, 0.03%)</title><rect x="353.3" y="613" width="0.4" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="356.29" y="623.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.07%)</title><rect x="479.0" y="629" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="481.95" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (20,202,020 samples, 0.07%)</title><rect x="11.4" y="821" width="0.9" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="14.37" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="282.7" y="709" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="285.72" y="719.5" ></text>
+</g>
+<g >
+<title>release_sock (20,202,020 samples, 0.07%)</title><rect x="1011.6" y="789" width="1.0" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1014.65" y="799.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (101,010,100 samples, 0.33%)</title><rect x="1038.5" y="773" width="4.6" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1041.51" y="783.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="627.4" y="629" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="630.38" y="639.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="474.4" y="581" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="477.40" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="249.9" y="869" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="252.94" y="879.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="356.5" y="597" width="0.4" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="359.48" y="607.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="426.1" y="565" width="0.5" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="429.14" y="575.5" ></text>
+</g>
+<g >
+<title>iput (323,232,320 samples, 1.06%)</title><rect x="159.8" y="677" width="14.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="162.79" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="22.7" y="629" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="25.75" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="438.0" y="677" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="440.98" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (90,909,090 samples, 0.30%)</title><rect x="557.3" y="789" width="4.1" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="560.26" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="346.0" y="533" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="349.01" y="543.5" ></text>
+</g>
+<g >
+<title>tcp_conn_request (10,101,010 samples, 0.03%)</title><rect x="1041.2" y="357" width="0.5" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1044.24" y="367.5" ></text>
+</g>
+<g >
+<title>memchr (10,101,010 samples, 0.03%)</title><rect x="144.3" y="645" width="0.5" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="147.31" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="572.3" y="693" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="575.29" y="703.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.03%)</title><rect x="351.5" y="709" width="0.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="354.47" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="379.7" y="565" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="382.70" y="575.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="179.4" y="629" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="182.37" y="639.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.07%)</title><rect x="432.5" y="629" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="435.51" y="639.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (20,202,020 samples, 0.07%)</title><rect x="1345.8" y="821" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1348.84" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_invalidate_folio (30,303,030 samples, 0.10%)</title><rect x="189.4" y="613" width="1.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="192.39" y="623.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="342.8" y="645" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="345.82" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_close (80,808,080 samples, 0.26%)</title><rect x="23.2" y="741" width="3.6" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="26.20" y="751.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="590.0" y="693" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="593.05" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_ack (20,202,020 samples, 0.07%)</title><rect x="1015.3" y="709" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1018.29" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (20,202,020 samples, 0.07%)</title><rect x="1034.0" y="741" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1036.96" y="751.5" ></text>
+</g>
+<g >
+<title>cimple-server (808,080,800 samples, 2.64%)</title><rect x="10.0" y="1109" width="36.4" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="13.00" y="1119.5" >cim..</text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="508.1" y="725" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="511.09" y="735.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.10%)</title><rect x="428.9" y="565" width="1.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="431.87" y="575.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="467.6" y="661" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="470.57" y="671.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="357" width="1.8" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1386.17" y="367.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="487.1" y="725" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="490.15" y="735.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.03%)</title><rect x="682.5" y="853" width="0.4" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="685.47" y="863.5" ></text>
+</g>
+<g >
+<title>filename_create (30,303,030 samples, 0.10%)</title><rect x="616.9" y="773" width="1.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="619.91" y="783.5" ></text>
+</g>
+<g >
+<title>ima_file_check (10,101,010 samples, 0.03%)</title><rect x="335.1" y="677" width="0.4" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="338.08" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="511.3" y="565" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="514.28" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="451.6" y="405" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="454.64" y="415.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="261.3" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="264.32" y="799.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (30,303,030 samples, 0.10%)</title><rect x="145.2" y="661" width="1.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="148.22" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.07%)</title><rect x="79.2" y="933" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="82.20" y="943.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="546.8" y="581" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="549.79" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (333,333,330 samples, 1.09%)</title><rect x="373.8" y="805" width="15.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="376.78" y="815.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.03%)</title><rect x="215.3" y="773" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="218.34" y="783.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="539.1" y="741" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="542.05" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.07%)</title><rect x="666.5" y="741" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="669.54" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (3,070,707,040 samples, 10.03%)</title><rect x="98.8" y="933" width="138.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="101.78" y="943.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="539.1" y="693" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="542.05" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="885" width="1.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1378.43" y="895.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="596.4" y="469" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="599.42" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="133.4" y="629" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="136.39" y="639.5" ></text>
+</g>
+<g >
+<title>radix_tree_lookup (10,101,010 samples, 0.03%)</title><rect x="754.9" y="773" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="757.86" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (10,101,010 samples, 0.03%)</title><rect x="1376.3" y="293" width="0.5" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1379.34" y="303.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.07%)</title><rect x="306.4" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="309.40" y="655.5" ></text>
+</g>
+<g >
+<title>opendir (121,212,120 samples, 0.40%)</title><rect x="333.7" y="837" width="5.5" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="336.71" y="847.5" ></text>
+</g>
+<g >
+<title>free_unref_page (10,101,010 samples, 0.03%)</title><rect x="1380.9" y="421" width="0.4" height="15.0" fill="rgb(0,238,205)" rx="2" ry="2" />
+<text x="1383.89" y="431.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="686.1" y="725" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="689.11" y="735.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (70,707,070 samples, 0.23%)</title><rect x="741.7" y="677" width="3.1" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="744.66" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (20,202,020 samples, 0.07%)</title><rect x="607.3" y="613" width="1.0" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="610.35" y="623.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="468.5" y="693" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="471.48" y="703.5" ></text>
+</g>
+<g >
+<title>ksys_write (40,404,040 samples, 0.13%)</title><rect x="293.6" y="757" width="1.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="296.65" y="767.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="410.2" y="485" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="413.20" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="645.1" y="789" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="648.14" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="64.6" y="821" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="67.64" y="831.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (131,313,130 samples, 0.43%)</title><rect x="999.8" y="661" width="5.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1002.81" y="671.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.03%)</title><rect x="643.3" y="629" width="0.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="646.32" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (30,303,030 samples, 0.10%)</title><rect x="1377.7" y="933" width="1.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1380.71" y="943.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="397.5" y="677" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="400.46" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="539.1" y="789" width="1.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="542.05" y="799.5" ></text>
+</g>
+<g >
+<title>git_error_set (20,202,020 samples, 0.07%)</title><rect x="374.2" y="709" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="377.24" y="719.5" ></text>
+</g>
+<g >
+<title>__sock_release (50,505,050 samples, 0.16%)</title><rect x="1379.5" y="837" width="2.3" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1382.53" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="426.1" y="725" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="429.14" y="735.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.07%)</title><rect x="258.1" y="597" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="261.14" y="607.5" ></text>
+</g>
+<g >
+<title>dup_user_cpus_ptr (10,101,010 samples, 0.03%)</title><rect x="33.7" y="741" width="0.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="36.68" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (40,404,040 samples, 0.13%)</title><rect x="473.5" y="661" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="476.49" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="498.5" y="821" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="501.53" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.03%)</title><rect x="356.0" y="597" width="0.5" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="359.02" y="607.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="655.6" y="613" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="658.61" y="623.5" ></text>
+</g>
+<g >
+<title>xas_find (10,101,010 samples, 0.03%)</title><rect x="593.2" y="549" width="0.5" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="596.23" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_io_submit (20,202,020 samples, 0.07%)</title><rect x="434.8" y="533" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="437.79" y="543.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (10,101,010 samples, 0.03%)</title><rect x="543.2" y="533" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="546.15" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.16%)</title><rect x="43.7" y="853" width="2.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="46.69" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="391.5" y="693" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="394.54" y="703.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (80,808,080 samples, 0.26%)</title><rect x="1026.2" y="373" width="3.7" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1029.22" y="383.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="234.5" y="885" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="237.46" y="895.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="469.4" y="709" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="472.39" y="719.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="708.0" y="645" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="710.97" y="655.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (30,303,030 samples, 0.10%)</title><rect x="1375.9" y="389" width="1.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1378.89" y="399.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (70,707,070 samples, 0.23%)</title><rect x="1026.7" y="357" width="3.2" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1029.67" y="367.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="606.0" y="613" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="608.98" y="623.5" ></text>
+</g>
+<g >
+<title>save_fpregs_to_fpstate (10,101,010 samples, 0.03%)</title><rect x="272.3" y="613" width="0.4" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="275.25" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (141,414,140 samples, 0.46%)</title><rect x="48.2" y="917" width="6.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="51.24" y="927.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (20,202,020 samples, 0.07%)</title><rect x="251.8" y="853" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="254.76" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="227.2" y="677" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="230.18" y="687.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.07%)</title><rect x="244.0" y="853" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="247.02" y="863.5" ></text>
+</g>
+<g >
+<title>wp_page_reuse (10,101,010 samples, 0.03%)</title><rect x="649.2" y="581" width="0.5" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="652.23" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.03%)</title><rect x="436.6" y="469" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="439.61" y="479.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="22.7" y="757" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="25.75" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="529.5" y="757" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="532.49" y="767.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="627.4" y="613" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="630.38" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="559.1" y="565" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="562.09" y="575.5" ></text>
+</g>
+<g >
+<title>ip_rcv (40,404,040 samples, 0.13%)</title><rect x="1013.0" y="373" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1016.02" y="383.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.03%)</title><rect x="645.1" y="725" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="648.14" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="428.4" y="757" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="431.42" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="283.2" y="757" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="286.18" y="767.5" ></text>
+</g>
+<g >
+<title>sock_recvmsg (20,202,020 samples, 0.07%)</title><rect x="1374.5" y="757" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1377.52" y="767.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="1334.9" y="853" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1337.91" y="863.5" ></text>
+</g>
+<g >
+<title>unlink_cb (131,313,130 samples, 0.43%)</title><rect x="110.2" y="773" width="5.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="113.16" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.03%)</title><rect x="446.6" y="757" width="0.5" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="449.63" y="767.5" ></text>
+</g>
+<g >
+<title>__fsnotify_parent (10,101,010 samples, 0.03%)</title><rect x="490.3" y="597" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="493.34" y="607.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="697.0" y="645" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="700.04" y="655.5" ></text>
+</g>
+<g >
+<title>git_signature_default (30,303,030 samples, 0.10%)</title><rect x="251.3" y="885" width="1.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="254.31" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (20,202,020 samples, 0.07%)</title><rect x="592.3" y="581" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="595.32" y="591.5" ></text>
+</g>
+<g >
+<title>fstatat64 (70,707,070 samples, 0.23%)</title><rect x="54.6" y="1045" width="3.2" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="57.62" y="1055.5" ></text>
+</g>
+<g >
+<title>tcp_clean_rtx_queue.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="1012.1" y="709" width="0.5" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="1015.10" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="672.5" y="709" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="675.45" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="412.0" y="757" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="415.03" y="767.5" ></text>
+</g>
+<g >
+<title>srso_alias_return_thunk (10,101,010 samples, 0.03%)</title><rect x="627.8" y="629" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="630.84" y="639.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (20,202,020 samples, 0.07%)</title><rect x="347.4" y="517" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="350.37" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.03%)</title><rect x="462.1" y="501" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="465.11" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="140.2" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="143.21" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="304.6" y="837" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="307.58" y="847.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_send (5,848,484,790 samples, 19.10%)</title><rect x="770.3" y="997" width="263.7" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="773.34" y="1007.5" >jsonrpc_request_send</text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="680.6" y="837" width="1.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="683.65" y="847.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="340.1" y="597" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="343.09" y="607.5" ></text>
+</g>
+<g >
+<title>do_writepages (60,606,060 samples, 0.20%)</title><rect x="610.5" y="597" width="2.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="613.53" y="607.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="580.0" y="661" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="583.03" y="671.5" ></text>
+</g>
+<g >
+<title>folio_remove_rmap_ptes (60,606,060 samples, 0.20%)</title><rect x="766.7" y="661" width="2.7" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="769.70" y="671.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (101,010,100 samples, 0.33%)</title><rect x="334.6" y="741" width="4.6" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="337.63" y="751.5" ></text>
+</g>
+<g >
+<title>rmqueue (10,101,010 samples, 0.03%)</title><rect x="1342.2" y="757" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1345.19" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="287.7" y="837" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="290.73" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="686.6" y="725" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="689.57" y="735.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.07%)</title><rect x="479.0" y="661" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="481.95" y="671.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (20,202,020 samples, 0.07%)</title><rect x="553.6" y="533" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="556.62" y="543.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.07%)</title><rect x="108.3" y="709" width="1.0" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="111.34" y="719.5" ></text>
+</g>
+<g >
+<title>do_writepages (50,505,050 samples, 0.16%)</title><rect x="434.8" y="581" width="2.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="437.79" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="585.9" y="693" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="588.95" y="703.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (20,202,020 samples, 0.07%)</title><rect x="985.2" y="821" width="1.0" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="988.24" y="831.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="677.0" y="725" width="0.5" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="680.01" y="735.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (10,101,010 samples, 0.03%)</title><rect x="1034.0" y="645" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1036.96" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (444,444,440 samples, 1.45%)</title><rect x="616.5" y="805" width="20.0" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="619.45" y="815.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="1057.6" y="917" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1060.63" y="927.5" ></text>
+</g>
+<g >
+<title>storvsc_queuecommand (10,101,010 samples, 0.03%)</title><rect x="450.3" y="373" width="0.4" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="453.27" y="383.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (10,101,010 samples, 0.03%)</title><rect x="296.4" y="741" width="0.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="299.38" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.03%)</title><rect x="511.3" y="581" width="0.4" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="514.28" y="591.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (30,303,030 samples, 0.10%)</title><rect x="1388.2" y="469" width="1.3" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1391.18" y="479.5" ></text>
+</g>
+<g >
+<title>generic_update_time (20,202,020 samples, 0.07%)</title><rect x="241.7" y="645" width="1.0" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="244.75" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="411.1" y="805" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="414.12" y="815.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="137.0" y="613" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="140.03" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.16%)</title><rect x="521.3" y="757" width="2.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="524.30" y="767.5" ></text>
+</g>
+<g >
+<title>__do_softirq (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="517" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1386.17" y="527.5" ></text>
+</g>
+<g >
+<title>tcp_stream_alloc_skb (30,303,030 samples, 0.10%)</title><rect x="1031.7" y="773" width="1.3" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1034.68" y="783.5" ></text>
+</g>
+<g >
+<title>xas_start (10,101,010 samples, 0.03%)</title><rect x="683.8" y="693" width="0.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="686.84" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="604.6" y="725" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="607.62" y="735.5" ></text>
+</g>
+<g >
+<title>__napi_poll (20,202,020 samples, 0.07%)</title><rect x="25.5" y="421" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="28.48" y="431.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="331.9" y="773" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="334.89" y="783.5" ></text>
+</g>
+<g >
+<title>dnotify_flush (10,101,010 samples, 0.03%)</title><rect x="192.6" y="757" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="195.57" y="767.5" ></text>
+</g>
+<g >
+<title>propagate_protected_usage (10,101,010 samples, 0.03%)</title><rect x="1022.1" y="437" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1025.12" y="447.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="455.3" y="693" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="458.28" y="703.5" ></text>
+</g>
+<g >
+<title>pipe2 (50,505,050 samples, 0.16%)</title><rect x="751.7" y="933" width="2.3" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="754.68" y="943.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.03%)</title><rect x="600.5" y="613" width="0.5" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="603.52" y="623.5" ></text>
+</g>
+<g >
+<title>__inode_wait_for_writeback (10,101,010 samples, 0.03%)</title><rect x="605.1" y="629" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="608.07" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.33%)</title><rect x="675.6" y="789" width="4.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="678.64" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_setent (10,101,010 samples, 0.03%)</title><rect x="453.0" y="677" width="0.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="456.00" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.03%)</title><rect x="1384.5" y="309" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1387.54" y="319.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (40,404,040 samples, 0.13%)</title><rect x="15.9" y="821" width="1.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="18.92" y="831.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (10,101,010 samples, 0.03%)</title><rect x="267.2" y="821" width="0.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="270.24" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="107.0" y="405" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="109.98" y="415.5" ></text>
+</g>
+<g >
+<title>__inet_stream_connect (141,414,140 samples, 0.46%)</title><rect x="1383.2" y="853" width="6.3" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1386.17" y="863.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.03%)</title><rect x="37.8" y="757" width="0.4" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="40.77" y="767.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.03%)</title><rect x="455.3" y="597" width="0.4" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="458.28" y="607.5" ></text>
+</g>
+<g >
+<title>nf_ct_delete (10,101,010 samples, 0.03%)</title><rect x="1038.5" y="645" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1041.51" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (10,101,010 samples, 0.03%)</title><rect x="501.3" y="613" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="504.26" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="585.0" y="741" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="588.04" y="751.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="1011.2" y="789" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1014.19" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (40,404,040 samples, 0.13%)</title><rect x="232.2" y="757" width="1.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="235.18" y="767.5" ></text>
+</g>
+<g >
+<title>server_main_thread (171,717,170 samples, 0.56%)</title><rect x="10.0" y="1061" width="7.7" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="13.00" y="1071.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (161,616,160 samples, 0.53%)</title><rect x="184.8" y="789" width="7.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="187.83" y="799.5" ></text>
+</g>
+<g >
+<title>_find_next_zero_bit (10,101,010 samples, 0.03%)</title><rect x="566.4" y="661" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="569.37" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="235.8" y="677" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="238.83" y="687.5" ></text>
+</g>
+<g >
+<title>xas_start (10,101,010 samples, 0.03%)</title><rect x="37.8" y="693" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="40.77" y="703.5" ></text>
+</g>
+<g >
+<title>filldir64 (30,303,030 samples, 0.10%)</title><rect x="143.4" y="661" width="1.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="146.40" y="671.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.03%)</title><rect x="398.4" y="709" width="0.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="401.37" y="719.5" ></text>
+</g>
+<g >
+<title>__file_remove_privs (10,101,010 samples, 0.03%)</title><rect x="536.3" y="661" width="0.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="539.32" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.13%)</title><rect x="15.9" y="949" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="18.92" y="959.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (40,404,040 samples, 0.13%)</title><rect x="1380.0" y="757" width="1.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1382.98" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="455.3" y="741" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="458.28" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="1374.1" y="837" width="1.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1377.06" y="847.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (20,202,020 samples, 0.07%)</title><rect x="575.5" y="725" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="578.48" y="735.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_bio_merge (10,101,010 samples, 0.03%)</title><rect x="435.2" y="421" width="0.5" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="438.25" y="431.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="505.8" y="613" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="508.82" y="623.5" ></text>
+</g>
+<g >
+<title>ext4fs_dirhash (10,101,010 samples, 0.03%)</title><rect x="193.5" y="693" width="0.4" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="196.48" y="703.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.03%)</title><rect x="539.5" y="677" width="0.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="542.51" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (90,909,090 samples, 0.30%)</title><rect x="103.8" y="629" width="4.1" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="106.79" y="639.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.07%)</title><rect x="425.2" y="629" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="428.23" y="639.5" ></text>
+</g>
+<g >
+<title>free_unref_page (10,101,010 samples, 0.03%)</title><rect x="1012.1" y="629" width="0.5" height="15.0" fill="rgb(0,238,205)" rx="2" ry="2" />
+<text x="1015.10" y="639.5" ></text>
+</g>
+<g >
+<title>blk_mq_submit_bio (20,202,020 samples, 0.07%)</title><rect x="434.8" y="453" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="437.79" y="463.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="424.8" y="693" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="427.77" y="703.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="658.3" y="757" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="661.34" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="412.5" y="677" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="415.48" y="687.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.03%)</title><rect x="467.1" y="661" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="470.12" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.03%)</title><rect x="507.6" y="549" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="510.64" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (10,101,010 samples, 0.03%)</title><rect x="519.0" y="565" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="522.02" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (10,101,010 samples, 0.03%)</title><rect x="316.9" y="549" width="0.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="319.87" y="559.5" ></text>
+</g>
+<g >
+<title>fsnotify_destroy_marks (10,101,010 samples, 0.03%)</title><rect x="103.8" y="565" width="0.4" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="106.79" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="569.6" y="805" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="572.56" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="390.2" y="661" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="393.17" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="376.1" y="597" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="379.06" y="607.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (70,707,070 samples, 0.23%)</title><rect x="1001.2" y="645" width="3.2" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1004.18" y="655.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="240.4" y="757" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="243.38" y="767.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="285.9" y="709" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="288.91" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="351.5" y="661" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="354.47" y="671.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.03%)</title><rect x="186.2" y="645" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="189.20" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="384.3" y="501" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="387.25" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="543.6" y="757" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="546.61" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="300.0" y="725" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="303.02" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_rename (141,414,140 samples, 0.46%)</title><rect x="550.4" y="693" width="6.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="553.44" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="13.2" y="981" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="16.19" y="991.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="139.3" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="142.30" y="815.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="755.8" y="949" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="758.77" y="959.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.03%)</title><rect x="1373.2" y="789" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1376.15" y="799.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="535.4" y="581" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="538.41" y="591.5" ></text>
+</g>
+<g >
+<title>step_into (20,202,020 samples, 0.07%)</title><rect x="84.7" y="901" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="87.67" y="911.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="225.4" y="709" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="228.35" y="719.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="372.0" y="677" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="374.96" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.03%)</title><rect x="630.6" y="597" width="0.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="633.57" y="607.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="756.2" y="821" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="759.23" y="831.5" ></text>
+</g>
+<g >
+<title>__uselocale (10,101,010 samples, 0.03%)</title><rect x="374.7" y="661" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="377.69" y="671.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (60,606,060 samples, 0.20%)</title><rect x="174.8" y="677" width="2.7" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="177.82" y="687.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.03%)</title><rect x="752.1" y="629" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="755.13" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.03%)</title><rect x="462.6" y="581" width="0.4" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="465.56" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="257.2" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="260.23" y="735.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="620.6" y="645" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="623.55" y="655.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (30,303,030 samples, 0.10%)</title><rect x="1377.7" y="917" width="1.4" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1380.71" y="927.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="456.2" y="677" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="459.19" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="512.6" y="549" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="515.65" y="559.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="529.5" y="741" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="532.49" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (20,202,020 samples, 0.07%)</title><rect x="310.5" y="661" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="313.49" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="675.2" y="805" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="678.19" y="815.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="147.0" y="613" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="150.04" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="137.9" y="789" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="140.94" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_bread (30,303,030 samples, 0.10%)</title><rect x="381.1" y="597" width="1.3" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="384.07" y="607.5" ></text>
+</g>
+<g >
+<title>fsnotify_destroy_marks (10,101,010 samples, 0.03%)</title><rect x="201.7" y="629" width="0.4" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="204.68" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (10,101,010 samples, 0.03%)</title><rect x="115.2" y="629" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="118.17" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (90,909,090 samples, 0.30%)</title><rect x="133.4" y="677" width="4.1" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="136.39" y="687.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.07%)</title><rect x="61.4" y="917" width="1.0" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="64.45" y="927.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="652.0" y="757" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="654.97" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="659.7" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="662.71" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="456.2" y="725" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="459.19" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="127.5" y="773" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="130.47" y="783.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="409.7" y="517" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="412.75" y="527.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="385.2" y="613" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="388.16" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mb_release_context (20,202,020 samples, 0.07%)</title><rect x="249.0" y="533" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="252.03" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="409.3" y="677" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="412.29" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_v6_conn_request (10,101,010 samples, 0.03%)</title><rect x="1385.9" y="389" width="0.5" height="15.0" fill="rgb(0,236,197)" rx="2" ry="2" />
+<text x="1388.90" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (10,101,010 samples, 0.03%)</title><rect x="611.9" y="469" width="0.5" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="614.90" y="479.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="343.3" y="821" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="346.28" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="637.9" y="821" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="640.85" y="831.5" ></text>
+</g>
+<g >
+<title>getdents64 (20,202,020 samples, 0.07%)</title><rect x="369.7" y="853" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="372.68" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="343.3" y="837" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="346.28" y="847.5" ></text>
+</g>
+<g >
+<title>policy_nodemask (10,101,010 samples, 0.03%)</title><rect x="1362.7" y="741" width="0.4" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1365.68" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.20%)</title><rect x="340.5" y="837" width="2.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="343.54" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="238.6" y="805" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="241.56" y="815.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (60,606,060 samples, 0.20%)</title><rect x="1039.9" y="677" width="2.7" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1042.88" y="687.5" ></text>
+</g>
+<g >
+<title>may_open (10,101,010 samples, 0.03%)</title><rect x="495.3" y="613" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="498.34" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="90.1" y="885" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="93.13" y="895.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (20,202,020 samples, 0.07%)</title><rect x="596.0" y="533" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="598.97" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="638.8" y="853" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="641.76" y="863.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="113.8" y="565" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="116.81" y="575.5" ></text>
+</g>
+<g >
+<title>folio_add_new_anon_rmap (20,202,020 samples, 0.07%)</title><rect x="1364.0" y="789" width="1.0" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1367.05" y="799.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.03%)</title><rect x="353.7" y="501" width="0.5" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="356.75" y="511.5" ></text>
+</g>
+<g >
+<title>unlink_cb (80,808,080 samples, 0.26%)</title><rect x="230.4" y="901" width="3.6" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="233.36" y="911.5" ></text>
+</g>
+<g >
+<title>do_softirq (80,808,080 samples, 0.26%)</title><rect x="1385.9" y="629" width="3.6" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1388.90" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="239.0" y="805" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="242.01" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_create_openreq_child (10,101,010 samples, 0.03%)</title><rect x="1383.6" y="277" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1386.63" y="287.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.03%)</title><rect x="650.1" y="629" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="653.15" y="639.5" ></text>
+</g>
+<g >
+<title>sock_close (50,505,050 samples, 0.16%)</title><rect x="1379.5" y="853" width="2.3" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="1382.53" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="680.6" y="869" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="683.65" y="879.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.07%)</title><rect x="655.2" y="757" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="658.15" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="655.6" y="629" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="658.61" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="331.0" y="629" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="333.98" y="639.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="710.2" y="645" width="0.5" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="713.24" y="655.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="482.6" y="789" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="485.60" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (151,515,150 samples, 0.49%)</title><rect x="254.5" y="821" width="6.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="257.49" y="831.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="371.5" y="725" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="374.50" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="46.0" y="949" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="48.97" y="959.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="483.5" y="661" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="486.51" y="671.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="397.0" y="645" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="400.00" y="655.5" ></text>
+</g>
+<g >
+<title>fprintf (60,606,060 samples, 0.20%)</title><rect x="43.2" y="965" width="2.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="46.24" y="975.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.03%)</title><rect x="521.3" y="565" width="0.5" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="524.30" y="575.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="373" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1386.17" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="591.9" y="517" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="594.87" y="527.5" ></text>
+</g>
+<g >
+<title>__napi_poll (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="501" width="1.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1033.32" y="511.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="757.1" y="805" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="760.14" y="815.5" ></text>
+</g>
+<g >
+<title>getdents64 (30,303,030 samples, 0.10%)</title><rect x="667.4" y="805" width="1.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="670.45" y="815.5" ></text>
+</g>
+<g >
+<title>generic_update_time (10,101,010 samples, 0.03%)</title><rect x="80.1" y="869" width="0.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="83.12" y="879.5" ></text>
+</g>
+<g >
+<title>resolve_normal_ct (10,101,010 samples, 0.03%)</title><rect x="1030.3" y="149" width="0.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1033.32" y="159.5" ></text>
+</g>
+<g >
+<title>mb_mark_used (10,101,010 samples, 0.03%)</title><rect x="516.7" y="437" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="519.74" y="447.5" ></text>
+</g>
+<g >
+<title>realloc (20,202,020 samples, 0.07%)</title><rect x="1010.3" y="837" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1013.28" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (40,404,040 samples, 0.13%)</title><rect x="232.2" y="741" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="235.18" y="751.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.03%)</title><rect x="490.3" y="629" width="0.5" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="493.34" y="639.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="244.9" y="741" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="247.93" y="751.5" ></text>
+</g>
+<g >
+<title>gettid (10,101,010 samples, 0.03%)</title><rect x="41.4" y="965" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="44.42" y="975.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="636.9" y="837" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="639.94" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="463.9" y="773" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="466.93" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="253.1" y="837" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="256.13" y="847.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.03%)</title><rect x="116.1" y="709" width="0.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="119.08" y="719.5" ></text>
+</g>
+<g >
+<title>fprintf (20,202,020 samples, 0.07%)</title><rect x="757.1" y="933" width="1.0" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="760.14" y="943.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="658.3" y="805" width="2.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="661.34" y="815.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.07%)</title><rect x="122.5" y="501" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="125.46" y="511.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.10%)</title><rect x="661.5" y="805" width="1.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="664.53" y="815.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="486.2" y="581" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="489.24" y="591.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.03%)</title><rect x="426.1" y="485" width="0.5" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="429.14" y="495.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="253.1" y="805" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="256.13" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_create_access (10,101,010 samples, 0.03%)</title><rect x="626.9" y="677" width="0.5" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="629.93" y="687.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="565" width="3.2" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1038.32" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_bread (111,111,110 samples, 0.36%)</title><rect x="512.6" y="581" width="5.1" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="515.65" y="591.5" ></text>
+</g>
+<g >
+<title>get_random_u64 (10,101,010 samples, 0.03%)</title><rect x="34.1" y="741" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="37.13" y="751.5" ></text>
+</g>
+<g >
+<title>__lruvec_stat_mod_folio (10,101,010 samples, 0.03%)</title><rect x="1364.5" y="773" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1367.50" y="783.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="710.2" y="725" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="713.24" y="735.5" ></text>
+</g>
+<g >
+<title>log_entry_start (30,303,030 samples, 0.10%)</title><rect x="756.7" y="965" width="1.4" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="759.68" y="975.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="672.5" y="853" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="675.45" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="303.2" y="821" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="306.21" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="290.0" y="885" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="293.01" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (101,010,100 samples, 0.33%)</title><rect x="72.8" y="853" width="4.6" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="75.83" y="863.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="51.4" y="805" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="54.43" y="815.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="517.2" y="501" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="520.20" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="221.7" y="693" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="224.71" y="703.5" ></text>
+</g>
+<g >
+<title>zap_pmd_range.isra.0 (101,010,100 samples, 0.33%)</title><rect x="765.3" y="693" width="4.6" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="768.33" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="38.7" y="901" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="41.68" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="158.9" y="629" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="161.88" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="456.2" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="459.19" y="815.5" ></text>
+</g>
+<g >
+<title>dput (50,505,050 samples, 0.16%)</title><rect x="458.0" y="725" width="2.3" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="461.01" y="735.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="100.6" y="517" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="103.60" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="397.9" y="741" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="400.91" y="751.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="653.3" y="549" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="656.33" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.03%)</title><rect x="384.3" y="565" width="0.4" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="387.25" y="575.5" ></text>
+</g>
+<g >
+<title>alloc_file (10,101,010 samples, 0.03%)</title><rect x="38.2" y="789" width="0.5" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="41.23" y="799.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="697.0" y="709" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="700.04" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="265.9" y="837" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="268.88" y="847.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="132.9" y="677" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="135.93" y="687.5" ></text>
+</g>
+<g >
+<title>git_error_set (10,101,010 samples, 0.03%)</title><rect x="260.9" y="805" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="263.87" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="238.1" y="933" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="241.10" y="943.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.03%)</title><rect x="361.0" y="501" width="0.5" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="364.03" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="384.7" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="387.71" y="751.5" ></text>
+</g>
+<g >
+<title>__send (494,949,490 samples, 1.62%)</title><rect x="1011.6" y="917" width="22.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1014.65" y="927.5" >_..</text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="532.7" y="629" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="535.68" y="639.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="468.5" y="709" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="471.48" y="719.5" ></text>
+</g>
+<g >
+<title>fsnotify_move (10,101,010 samples, 0.03%)</title><rect x="463.0" y="709" width="0.5" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="466.02" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="497.6" y="725" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="500.62" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (20,202,020 samples, 0.07%)</title><rect x="228.1" y="661" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="231.09" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (272,727,270 samples, 0.89%)</title><rect x="373.8" y="789" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="376.78" y="799.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="239.0" y="709" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="242.01" y="719.5" ></text>
+</g>
+<g >
+<title>read (626,262,620 samples, 2.05%)</title><rect x="722.5" y="917" width="28.3" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="725.54" y="927.5" >r..</text>
+</g>
+<g >
+<title>make_vfsuid (10,101,010 samples, 0.03%)</title><rect x="216.2" y="677" width="0.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="219.25" y="687.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.07%)</title><rect x="438.9" y="917" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="441.89" y="927.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (80,808,080 samples, 0.26%)</title><rect x="321.0" y="789" width="3.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="323.97" y="799.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.03%)</title><rect x="346.0" y="421" width="0.5" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="349.01" y="431.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="348.7" y="773" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="351.74" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="240.4" y="725" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="243.38" y="735.5" ></text>
+</g>
+<g >
+<title>inet_wait_for_connect (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="837" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1386.17" y="847.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="438.4" y="741" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="441.43" y="751.5" ></text>
+</g>
+<g >
+<title>strftime (10,101,010 samples, 0.03%)</title><rect x="14.1" y="997" width="0.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="17.10" y="1007.5" ></text>
+</g>
+<g >
+<title>__vsnprintf_chk (10,101,010 samples, 0.03%)</title><rect x="498.1" y="837" width="0.4" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="501.08" y="847.5" ></text>
+</g>
+<g >
+<title>from_kuid (10,101,010 samples, 0.03%)</title><rect x="166.6" y="517" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="169.62" y="527.5" ></text>
+</g>
+<g >
+<title>rename (60,606,060 samples, 0.20%)</title><rect x="499.9" y="837" width="2.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="502.90" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="391.1" y="725" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="394.08" y="735.5" ></text>
+</g>
+<g >
+<title>evict (90,909,090 samples, 0.30%)</title><rect x="121.5" y="629" width="4.1" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="124.55" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="350.6" y="741" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="353.56" y="751.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="677" width="3.2" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1038.32" y="687.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="1373.6" y="789" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1376.61" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="494.4" y="837" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="497.43" y="847.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="1011.2" y="773" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1014.19" y="783.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.03%)</title><rect x="1030.3" y="213" width="0.5" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1033.32" y="223.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (30,303,030 samples, 0.10%)</title><rect x="426.1" y="677" width="1.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="429.14" y="687.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="721.6" y="917" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="724.63" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.03%)</title><rect x="278.6" y="645" width="0.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="281.62" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (50,505,050 samples, 0.16%)</title><rect x="521.3" y="725" width="2.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="524.30" y="735.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.07%)</title><rect x="719.8" y="741" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="722.81" y="751.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.03%)</title><rect x="716.6" y="709" width="0.5" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="719.62" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="52.3" y="821" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="55.34" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="440.3" y="821" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="443.25" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="457.1" y="789" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="460.10" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="128.4" y="773" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="131.38" y="783.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.03%)</title><rect x="521.3" y="517" width="0.5" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="524.30" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="455.3" y="757" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="458.28" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.07%)</title><rect x="377.4" y="677" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="380.42" y="687.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.07%)</title><rect x="132.0" y="661" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="135.02" y="671.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="79.2" y="917" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="82.20" y="927.5" ></text>
+</g>
+<g >
+<title>touch_atime (30,303,030 samples, 0.10%)</title><rect x="147.0" y="709" width="1.4" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="150.04" y="719.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="484.9" y="581" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="487.87" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.26%)</title><rect x="404.3" y="757" width="3.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="407.29" y="767.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="314.1" y="565" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="317.14" y="575.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (20,202,020 samples, 0.07%)</title><rect x="1346.7" y="853" width="1.0" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="1349.75" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (10,101,010 samples, 0.03%)</title><rect x="246.3" y="661" width="0.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="249.30" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_rename (101,010,100 samples, 0.33%)</title><rect x="448.9" y="693" width="4.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="451.90" y="703.5" ></text>
+</g>
+<g >
+<title>do_wait (20,202,020 samples, 0.07%)</title><rect x="754.0" y="805" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="756.95" y="815.5" ></text>
+</g>
+<g >
+<title>free_swap_cache (10,101,010 samples, 0.03%)</title><rect x="96.1" y="677" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="99.05" y="687.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="1332.6" y="917" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1335.63" y="927.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="94.7" y="773" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="97.68" y="783.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="637.9" y="709" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="640.85" y="719.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="144.8" y="661" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="147.77" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="660.2" y="725" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="663.16" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="243.1" y="757" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="246.11" y="767.5" ></text>
+</g>
+<g >
+<title>filename_create (30,303,030 samples, 0.10%)</title><rect x="683.8" y="821" width="1.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="686.84" y="831.5" ></text>
+</g>
+<g >
+<title>ip_rcv (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="437" width="1.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1033.32" y="447.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.07%)</title><rect x="372.4" y="677" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="375.42" y="687.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="342.8" y="725" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="345.82" y="735.5" ></text>
+</g>
+<g >
+<title>inet_csk_clone_lock (10,101,010 samples, 0.03%)</title><rect x="1035.8" y="261" width="0.4" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="1038.78" y="271.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="381.5" y="533" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="384.52" y="543.5" ></text>
+</g>
+<g >
+<title>open64 (40,404,040 samples, 0.13%)</title><rect x="587.8" y="773" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="590.77" y="783.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="386.5" y="645" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="389.53" y="655.5" ></text>
+</g>
+<g >
+<title>getname_flags (30,303,030 samples, 0.10%)</title><rect x="340.5" y="741" width="1.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="343.54" y="751.5" ></text>
+</g>
+<g >
+<title>git_odb_read_header (30,303,030 samples, 0.10%)</title><rect x="249.9" y="885" width="1.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="252.94" y="895.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.03%)</title><rect x="41.0" y="773" width="0.4" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="43.96" y="783.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (20,202,020 samples, 0.07%)</title><rect x="347.4" y="597" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="350.37" y="607.5" ></text>
+</g>
+<g >
+<title>unmap_single_vma (101,010,100 samples, 0.33%)</title><rect x="765.3" y="725" width="4.6" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="768.33" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="438.4" y="773" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="441.43" y="783.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (30,303,030 samples, 0.10%)</title><rect x="297.3" y="661" width="1.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="300.29" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="418.4" y="629" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="421.40" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstat (10,101,010 samples, 0.03%)</title><rect x="140.7" y="741" width="0.4" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="143.67" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="215.3" y="821" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="218.34" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (20,202,020 samples, 0.07%)</title><rect x="198.5" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="201.49" y="703.5" ></text>
+</g>
+<g >
+<title>sk_prot_alloc (10,101,010 samples, 0.03%)</title><rect x="1035.8" y="229" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1038.78" y="239.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.03%)</title><rect x="121.5" y="565" width="0.5" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="124.55" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_append (50,505,050 samples, 0.16%)</title><rect x="52.3" y="885" width="2.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="55.34" y="895.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_grab_journal_head (10,101,010 samples, 0.03%)</title><rect x="381.1" y="517" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="384.07" y="527.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (20,202,020 samples, 0.07%)</title><rect x="331.0" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="333.98" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="661.5" y="789" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="664.53" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="315.5" y="597" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="318.50" y="607.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="363.3" y="549" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="366.31" y="559.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (373,737,370 samples, 1.22%)</title><rect x="1350.4" y="869" width="16.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1353.39" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="160.7" y="613" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="163.70" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="640.6" y="757" width="1.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="643.58" y="767.5" ></text>
+</g>
+<g >
+<title>git_refdb_open (50,505,050 samples, 0.16%)</title><rect x="408.8" y="789" width="2.3" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="411.84" y="799.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="366.0" y="453" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="369.04" y="463.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="391.5" y="661" width="0.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="394.54" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="473.5" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="476.49" y="735.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="302.3" y="693" width="0.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="305.30" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="556.8" y="629" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="559.81" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (40,404,040 samples, 0.13%)</title><rect x="559.1" y="645" width="1.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="562.09" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_validate_incoming (10,101,010 samples, 0.03%)</title><rect x="1384.5" y="293" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1387.54" y="303.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="253.1" y="789" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="256.13" y="799.5" ></text>
+</g>
+<g >
+<title>__vfs_getxattr (10,101,010 samples, 0.03%)</title><rect x="536.3" y="613" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="539.32" y="623.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="156.1" y="629" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="159.15" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="672.9" y="853" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="675.91" y="863.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="225.4" y="741" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="228.35" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (20,202,020 samples, 0.07%)</title><rect x="113.4" y="581" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="116.35" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.03%)</title><rect x="627.4" y="421" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="630.38" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (80,808,080 samples, 0.26%)</title><rect x="170.3" y="533" width="3.6" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="173.26" y="543.5" ></text>
+</g>
+<g >
+<title>unlink (20,202,020 samples, 0.07%)</title><rect x="398.8" y="805" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="401.82" y="815.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="101.5" y="725" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="104.51" y="735.5" ></text>
+</g>
+<g >
+<title>destroy_inode (10,101,010 samples, 0.03%)</title><rect x="571.8" y="725" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="574.83" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (50,505,050 samples, 0.16%)</title><rect x="521.3" y="677" width="2.3" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="524.30" y="687.5" ></text>
+</g>
+<g >
+<title>path_openat (30,303,030 samples, 0.10%)</title><rect x="420.2" y="549" width="1.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="423.22" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.03%)</title><rect x="500.4" y="645" width="0.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="503.35" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="431.1" y="741" width="1.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="434.15" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="354.2" y="565" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="357.20" y="575.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="487.1" y="693" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="490.15" y="703.5" ></text>
+</g>
+<g >
+<title>blk_cgroup_congested (10,101,010 samples, 0.03%)</title><rect x="997.5" y="709" width="0.5" height="15.0" fill="rgb(0,235,192)" rx="2" ry="2" />
+<text x="1000.54" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="238.1" y="693" width="0.5" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="241.10" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.03%)</title><rect x="592.8" y="517" width="0.4" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="595.78" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="447.1" y="597" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="450.08" y="607.5" ></text>
+</g>
+<g >
+<title>__file_remove_privs (10,101,010 samples, 0.03%)</title><rect x="385.6" y="613" width="0.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="388.62" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (252,525,250 samples, 0.82%)</title><rect x="254.5" y="837" width="11.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="257.49" y="847.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_from_slab_obj (10,101,010 samples, 0.03%)</title><rect x="176.2" y="581" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="179.18" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="642.4" y="741" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="645.41" y="751.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.07%)</title><rect x="258.1" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="261.14" y="623.5" ></text>
+</g>
+<g >
+<title>__tcp_ack_snd_check (10,101,010 samples, 0.03%)</title><rect x="1376.3" y="309" width="0.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1379.34" y="319.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="629" width="1.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1033.32" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (20,202,020 samples, 0.07%)</title><rect x="365.6" y="469" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="368.59" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (404,040,400 samples, 1.32%)</title><rect x="597.8" y="837" width="18.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="600.79" y="847.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (10,101,010 samples, 0.03%)</title><rect x="523.6" y="773" width="0.4" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="526.57" y="783.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (30,303,030 samples, 0.10%)</title><rect x="25.0" y="453" width="1.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="28.02" y="463.5" ></text>
+</g>
+<g >
+<title>cgroup_get_e_css (10,101,010 samples, 0.03%)</title><rect x="687.0" y="613" width="0.5" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="690.02" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.07%)</title><rect x="161.6" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="164.61" y="623.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="655.2" y="613" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="658.15" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="446.6" y="725" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="449.63" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="397.0" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="400.00" y="783.5" ></text>
+</g>
+<g >
+<title>delete_from_page_cache_batch (20,202,020 samples, 0.07%)</title><rect x="188.5" y="629" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="191.48" y="639.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="80.1" y="917" width="0.5" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="83.12" y="927.5" ></text>
+</g>
+<g >
+<title>git_error_set (10,101,010 samples, 0.03%)</title><rect x="256.8" y="725" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="259.77" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="481.2" y="613" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="484.23" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (272,727,270 samples, 0.89%)</title><rect x="758.1" y="917" width="12.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="761.05" y="927.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (10,101,010 samples, 0.03%)</title><rect x="529.9" y="869" width="0.5" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="532.95" y="879.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (232,323,230 samples, 0.76%)</title><rect x="1044.9" y="965" width="10.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1047.89" y="975.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="527.7" y="517" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="530.67" y="527.5" ></text>
+</g>
+<g >
+<title>free_unref_page_commit (30,303,030 samples, 0.10%)</title><rect x="1388.2" y="485" width="1.3" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1391.18" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (191,919,190 samples, 0.63%)</title><rect x="216.2" y="773" width="8.7" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="219.25" y="783.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="524.5" y="677" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="527.48" y="687.5" ></text>
+</g>
+<g >
+<title>page_counter_uncharge (40,404,040 samples, 0.13%)</title><rect x="728.5" y="725" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="731.46" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (30,303,030 samples, 0.10%)</title><rect x="381.1" y="581" width="1.3" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="384.07" y="591.5" ></text>
+</g>
+<g >
+<title>evict (10,101,010 samples, 0.03%)</title><rect x="246.3" y="693" width="0.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="249.30" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="167.1" y="485" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="170.08" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="667.4" y="789" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="670.45" y="799.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.03%)</title><rect x="682.0" y="933" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="685.02" y="943.5" ></text>
+</g>
+<g >
+<title>mpage_submit_folio (20,202,020 samples, 0.07%)</title><rect x="452.1" y="533" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="455.09" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="504.9" y="645" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="507.91" y="655.5" ></text>
+</g>
+<g >
+<title>hook_file_open (10,101,010 samples, 0.03%)</title><rect x="336.0" y="629" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="338.99" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="641.9" y="693" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="644.95" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (30,303,030 samples, 0.10%)</title><rect x="697.0" y="741" width="1.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="700.04" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="523.6" y="661" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="526.57" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (30,303,030 samples, 0.10%)</title><rect x="294.1" y="677" width="1.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="297.10" y="687.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="672.9" y="693" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="675.91" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="484.0" y="837" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="486.96" y="847.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="489.4" y="613" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="492.43" y="623.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="650.6" y="677" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="653.60" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_check_req (10,101,010 samples, 0.03%)</title><rect x="1383.6" y="325" width="0.5" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1386.63" y="335.5" ></text>
+</g>
+<g >
+<title>ip_output (70,707,070 samples, 0.23%)</title><rect x="1039.9" y="741" width="3.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1042.88" y="751.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="741" width="1.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1033.32" y="751.5" ></text>
+</g>
+<g >
+<title>__d_lookup (10,101,010 samples, 0.03%)</title><rect x="593.7" y="645" width="0.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="596.69" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="374.2" y="757" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="377.24" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="38.7" y="965" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="41.68" y="975.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (10,101,010 samples, 0.03%)</title><rect x="1027.1" y="261" width="0.5" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1030.13" y="271.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (30,303,030 samples, 0.10%)</title><rect x="271.3" y="693" width="1.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="274.34" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="274.1" y="853" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="277.07" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.03%)</title><rect x="423.4" y="645" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="426.41" y="655.5" ></text>
+</g>
+<g >
+<title>git_repository_config_snapshot (131,313,130 samples, 0.43%)</title><rect x="650.1" y="853" width="6.0" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="653.15" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (262,626,260 samples, 0.86%)</title><rect x="758.5" y="853" width="11.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="761.51" y="863.5" ></text>
+</g>
+<g >
+<title>do_softirq (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="533" width="3.2" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1038.32" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="682.0" y="821" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="685.02" y="831.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="497.6" y="709" width="0.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="500.62" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="296.8" y="853" width="2.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="299.84" y="863.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.13%)</title><rect x="386.5" y="789" width="1.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="389.53" y="799.5" ></text>
+</g>
+<g >
+<title>__d_add (10,101,010 samples, 0.03%)</title><rect x="82.8" y="869" width="0.5" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="85.85" y="879.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="654.2" y="613" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="657.24" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.03%)</title><rect x="607.8" y="549" width="0.5" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="610.80" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="672.9" y="773" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="675.91" y="783.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.07%)</title><rect x="464.4" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="467.38" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="486.2" y="565" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="489.24" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="372.0" y="741" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="374.96" y="751.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (10,101,010 samples, 0.03%)</title><rect x="425.7" y="613" width="0.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="428.68" y="623.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="581" width="1.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1033.32" y="591.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.03%)</title><rect x="225.4" y="693" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="228.35" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="599.2" y="757" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="602.15" y="767.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="97.9" y="853" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="100.87" y="863.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="1044.4" y="821" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1047.43" y="831.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="586.4" y="645" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="589.40" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.26%)</title><rect x="423.9" y="773" width="3.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="426.86" y="783.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="236.3" y="661" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="239.28" y="671.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="658.8" y="597" width="0.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="661.80" y="607.5" ></text>
+</g>
+<g >
+<title>events_to_string (10,101,010 samples, 0.03%)</title><rect x="27.3" y="981" width="0.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="30.30" y="991.5" ></text>
+</g>
+<g >
+<title>free_unref_page_prepare (30,303,030 samples, 0.10%)</title><rect x="730.7" y="741" width="1.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="733.73" y="751.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (70,707,070 samples, 0.23%)</title><rect x="1039.9" y="725" width="3.2" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1042.88" y="735.5" ></text>
+</g>
+<g >
+<title>apparmor_current_getlsmblob_subj (10,101,010 samples, 0.03%)</title><rect x="335.1" y="661" width="0.4" height="15.0" fill="rgb(0,223,140)" rx="2" ry="2" />
+<text x="338.08" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (50,505,050 samples, 0.16%)</title><rect x="105.6" y="565" width="2.3" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="108.61" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="636.5" y="805" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="639.49" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (60,606,060 samples, 0.20%)</title><rect x="499.9" y="773" width="2.7" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="502.90" y="783.5" ></text>
+</g>
+<g >
+<title>do_open (20,202,020 samples, 0.07%)</title><rect x="420.2" y="533" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="423.22" y="543.5" ></text>
+</g>
+<g >
+<title>__fstat64 (10,101,010 samples, 0.03%)</title><rect x="662.9" y="789" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="665.89" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (141,414,140 samples, 0.46%)</title><rect x="28.7" y="885" width="6.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="31.67" y="895.5" ></text>
+</g>
+<g >
+<title>up_write (10,101,010 samples, 0.03%)</title><rect x="177.5" y="709" width="0.5" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="180.55" y="719.5" ></text>
+</g>
+<g >
+<title>chmod_common (10,101,010 samples, 0.03%)</title><rect x="537.2" y="757" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="540.23" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="127.5" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="130.47" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.07%)</title><rect x="456.2" y="709" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="459.19" y="719.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.03%)</title><rect x="423.4" y="725" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="426.41" y="735.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="96.1" y="805" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="99.05" y="815.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="529.5" y="613" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="532.49" y="623.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="722.1" y="901" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="725.08" y="911.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="437.5" y="709" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="440.52" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="492.2" y="805" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="495.16" y="815.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (20,202,020 samples, 0.07%)</title><rect x="325.1" y="709" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="328.06" y="719.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (70,707,070 samples, 0.23%)</title><rect x="187.6" y="661" width="3.2" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="190.57" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="357.4" y="485" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="360.39" y="495.5" ></text>
+</g>
+<g >
+<title>skb_release_data (10,101,010 samples, 0.03%)</title><rect x="1012.1" y="677" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1015.10" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="301.8" y="837" width="1.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="304.84" y="847.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="627.4" y="485" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="630.38" y="495.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (20,202,020 samples, 0.07%)</title><rect x="251.8" y="869" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="254.76" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (10,101,010 samples, 0.03%)</title><rect x="501.3" y="597" width="0.4" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="504.26" y="607.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="111.1" y="597" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="114.08" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (30,303,030 samples, 0.10%)</title><rect x="389.7" y="693" width="1.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="392.72" y="703.5" ></text>
+</g>
+<g >
+<title>do_readlinkat (30,303,030 samples, 0.10%)</title><rect x="264.5" y="725" width="1.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="267.51" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="529.5" y="645" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="532.49" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (40,404,040 samples, 0.13%)</title><rect x="526.8" y="805" width="1.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="529.76" y="815.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (222,222,220 samples, 0.73%)</title><rect x="453.9" y="885" width="10.0" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="456.91" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (121,212,120 samples, 0.40%)</title><rect x="458.0" y="757" width="5.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="461.01" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="1377.3" y="949" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1380.25" y="959.5" ></text>
+</g>
+<g >
+<title>ip_rcv (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="421" width="4.1" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1029.22" y="431.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="497.6" y="629" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="500.62" y="639.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_core.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="1375.4" y="421" width="0.5" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1378.43" y="431.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (131,313,130 samples, 0.43%)</title><rect x="999.8" y="693" width="5.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1002.81" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.03%)</title><rect x="543.2" y="597" width="0.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="546.15" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.03%)</title><rect x="627.4" y="437" width="0.4" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="630.38" y="447.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="297.7" y="549" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="300.75" y="559.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="479.0" y="581" width="0.4" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="481.95" y="591.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (20,202,020 samples, 0.07%)</title><rect x="449.8" y="565" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="452.82" y="575.5" ></text>
+</g>
+<g >
+<title>alloc_vmap_area (20,202,020 samples, 0.07%)</title><rect x="32.8" y="693" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="35.76" y="703.5" ></text>
+</g>
+<g >
+<title>ci_run_script (1,494,949,480 samples, 4.88%)</title><rect x="688.4" y="965" width="67.4" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="691.39" y="975.5" >ci_run_..</text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (20,202,020 samples, 0.07%)</title><rect x="53.7" y="805" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="56.71" y="815.5" ></text>
+</g>
+<g >
+<title>do_readlinkat (20,202,020 samples, 0.07%)</title><rect x="483.1" y="725" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="486.05" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (171,717,170 samples, 0.56%)</title><rect x="353.7" y="629" width="7.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="356.75" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="679.7" y="773" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="682.74" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="654.7" y="661" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="657.70" y="671.5" ></text>
+</g>
+<g >
+<title>tlb_batch_pages_flush (121,212,120 samples, 0.40%)</title><rect x="759.9" y="725" width="5.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="762.87" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="490.8" y="709" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="493.79" y="719.5" ></text>
+</g>
+<g >
+<title>__kfree_skb (10,101,010 samples, 0.03%)</title><rect x="10.9" y="725" width="0.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="13.91" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_synsent_state_process (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="757" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1386.17" y="767.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (20,202,020 samples, 0.07%)</title><rect x="602.3" y="773" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="605.34" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (90,909,090 samples, 0.30%)</title><rect x="1012.6" y="725" width="4.1" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1015.56" y="735.5" ></text>
+</g>
+<g >
+<title>mod_timer (10,101,010 samples, 0.03%)</title><rect x="25.5" y="197" width="0.4" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="28.48" y="207.5" ></text>
+</g>
+<g >
+<title>sk_page_frag_refill (10,101,010 samples, 0.03%)</title><rect x="11.4" y="805" width="0.4" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="14.37" y="815.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="284.1" y="661" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="287.09" y="671.5" ></text>
+</g>
+<g >
+<title>generic_update_time (30,303,030 samples, 0.10%)</title><rect x="147.0" y="693" width="1.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="150.04" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="445.7" y="725" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="448.72" y="735.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="400.6" y="805" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="403.64" y="815.5" ></text>
+</g>
+<g >
+<title>touch_atime (20,202,020 samples, 0.07%)</title><rect x="297.7" y="629" width="1.0" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="300.75" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (171,717,170 samples, 0.56%)</title><rect x="100.1" y="773" width="7.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="103.15" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.03%)</title><rect x="426.1" y="581" width="0.5" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="429.14" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_write (30,303,030 samples, 0.10%)</title><rect x="426.1" y="645" width="1.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="429.14" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_create (50,505,050 samples, 0.16%)</title><rect x="271.3" y="709" width="2.3" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="274.34" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_synsent_state_process (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="757" width="3.2" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1038.32" y="767.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="179.4" y="645" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="182.37" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_try_rmem_schedule (10,101,010 samples, 0.03%)</title><rect x="1029.4" y="293" width="0.5" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="1032.41" y="303.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.07%)</title><rect x="642.9" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="645.86" y="687.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (10,101,010 samples, 0.03%)</title><rect x="573.2" y="725" width="0.5" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="576.20" y="735.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="270.9" y="661" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="273.88" y="671.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.03%)</title><rect x="669.3" y="613" width="0.4" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="672.27" y="623.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.03%)</title><rect x="190.8" y="565" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="193.75" y="575.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="504.9" y="709" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="507.91" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="147.5" y="629" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="150.50" y="639.5" ></text>
+</g>
+<g >
+<title>git_refspec_src_matches (10,101,010 samples, 0.03%)</title><rect x="530.4" y="869" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="533.40" y="879.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="479.9" y="581" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="482.86" y="591.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="660.6" y="629" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="663.62" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="649.7" y="757" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="652.69" y="767.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="481.7" y="789" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="484.69" y="799.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="384.7" y="661" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="387.71" y="671.5" ></text>
+</g>
+<g >
+<title>open64 (40,404,040 samples, 0.13%)</title><rect x="420.2" y="661" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="423.22" y="671.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="95.6" y="837" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="98.60" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="204.4" y="645" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="207.41" y="655.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (30,303,030 samples, 0.10%)</title><rect x="1380.0" y="581" width="1.3" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1382.98" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (20,202,020 samples, 0.07%)</title><rect x="684.3" y="773" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="687.29" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="412.5" y="693" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="415.48" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="105.6" y="501" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="108.61" y="511.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.03%)</title><rect x="645.1" y="741" width="0.5" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="648.14" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="554.1" y="501" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="557.08" y="511.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="543.2" y="677" width="0.4" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="546.15" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.03%)</title><rect x="331.4" y="645" width="0.5" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="334.44" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (20,202,020 samples, 0.07%)</title><rect x="135.2" y="597" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="138.21" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="601.4" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="604.43" y="767.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.03%)</title><rect x="524.5" y="709" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="527.48" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="10.9" y="917" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="13.91" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.03%)</title><rect x="548.6" y="533" width="0.5" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="551.61" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_file_getattr (10,101,010 samples, 0.03%)</title><rect x="402.9" y="565" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="405.92" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="301.8" y="773" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="304.84" y="783.5" ></text>
+</g>
+<g >
+<title>unlink_cb (171,717,170 samples, 0.56%)</title><rect x="130.2" y="805" width="7.7" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="133.20" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="493.1" y="821" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="496.07" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="147.5" y="565" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="150.50" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (161,616,160 samples, 0.53%)</title><rect x="324.6" y="789" width="7.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="327.61" y="799.5" ></text>
+</g>
+<g >
+<title>net_recv (30,303,030 samples, 0.10%)</title><rect x="1374.1" y="901" width="1.3" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1377.06" y="911.5" ></text>
+</g>
+<g >
+<title>vfs_open (20,202,020 samples, 0.07%)</title><rect x="420.2" y="517" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="423.22" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="391.1" y="773" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="394.08" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="428.9" y="613" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="431.87" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="267.7" y="805" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="270.70" y="815.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.03%)</title><rect x="78.3" y="901" width="0.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="81.29" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="534.5" y="805" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="537.50" y="815.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="542.7" y="757" width="0.5" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="545.70" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="663.8" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="666.80" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="104.2" y="549" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="107.25" y="559.5" ></text>
+</g>
+<g >
+<title>[unknown] (878,787,870 samples, 2.87%)</title><rect x="46.4" y="1093" width="39.6" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="49.42" y="1103.5" >[un..</text>
+</g>
+<g >
+<title>do_anonymous_page (10,101,010 samples, 0.03%)</title><rect x="1010.7" y="693" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1013.74" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="109.3" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="112.25" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (393,939,390 samples, 1.29%)</title><rect x="598.2" y="821" width="17.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="601.24" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.03%)</title><rect x="657.9" y="741" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="660.89" y="751.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="101" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1030.58" y="111.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="700.2" y="661" width="0.5" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="703.23" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.03%)</title><rect x="269.1" y="725" width="0.4" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="272.06" y="735.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="405.7" y="645" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="408.65" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="309.6" y="613" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="312.58" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="650.6" y="757" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="653.60" y="767.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="385.2" y="629" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="388.16" y="639.5" ></text>
+</g>
+<g >
+<title>path_openat (454,545,450 samples, 1.48%)</title><rect x="58.3" y="933" width="20.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="61.26" y="943.5" ></text>
+</g>
+<g >
+<title>realpath (10,101,010 samples, 0.03%)</title><rect x="412.9" y="789" width="0.5" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="415.94" y="799.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.07%)</title><rect x="228.1" y="549" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="231.09" y="559.5" ></text>
+</g>
+<g >
+<title>get_unused_fd_flags (10,101,010 samples, 0.03%)</title><rect x="338.7" y="725" width="0.5" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="341.72" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (80,808,080 samples, 0.26%)</title><rect x="357.4" y="565" width="3.6" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="360.39" y="575.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.03%)</title><rect x="1010.7" y="709" width="0.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1013.74" y="719.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.10%)</title><rect x="420.2" y="581" width="1.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="423.22" y="591.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="208.5" y="549" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="211.51" y="559.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (131,313,130 samples, 0.43%)</title><rect x="999.8" y="677" width="5.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1002.81" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (383,838,380 samples, 1.25%)</title><rect x="373.8" y="837" width="17.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="376.78" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="379.2" y="613" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="382.24" y="623.5" ></text>
+</g>
+<g >
+<title>new_inode (20,202,020 samples, 0.07%)</title><rect x="621.5" y="725" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="624.46" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="524.9" y="757" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="527.94" y="767.5" ></text>
+</g>
+<g >
+<title>__sk_mem_reduce_allocated (20,202,020 samples, 0.07%)</title><rect x="1015.3" y="661" width="0.9" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1018.29" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.07%)</title><rect x="642.9" y="661" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="645.86" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="375.1" y="677" width="1.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="378.15" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="301.8" y="789" width="1.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="304.84" y="799.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="608.7" y="485" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="611.71" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (242,424,240 samples, 0.79%)</title><rect x="309.1" y="693" width="11.0" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="312.13" y="703.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (80,808,080 samples, 0.26%)</title><rect x="1385.9" y="773" width="3.6" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1388.90" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="369.7" y="805" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="372.68" y="815.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="698.0" y="645" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="700.95" y="655.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.03%)</title><rect x="190.3" y="549" width="0.5" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="193.30" y="559.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="21.4" y="789" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="24.38" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.07%)</title><rect x="537.7" y="789" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="540.69" y="799.5" ></text>
+</g>
+<g >
+<title>client_create (151,515,150 samples, 0.49%)</title><rect x="28.7" y="949" width="6.8" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="31.67" y="959.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="700.2" y="709" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="703.23" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.03%)</title><rect x="66.9" y="837" width="0.5" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="69.91" y="847.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_from_slab_obj (10,101,010 samples, 0.03%)</title><rect x="387.9" y="565" width="0.5" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="390.90" y="575.5" ></text>
+</g>
+<g >
+<title>bio_put (10,101,010 samples, 0.03%)</title><rect x="700.2" y="549" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="703.23" y="559.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,777,777,750 samples, 9.07%)</title><rect x="99.7" y="885" width="125.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="102.69" y="895.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="685.7" y="677" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="688.66" y="687.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="97.9" y="821" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="100.87" y="831.5" ></text>
+</g>
+<g >
+<title>down_read_trylock (10,101,010 samples, 0.03%)</title><rect x="744.8" y="693" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="747.85" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (141,414,140 samples, 0.46%)</title><rect x="447.1" y="805" width="6.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="450.08" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (161,616,160 samples, 0.53%)</title><rect x="119.3" y="725" width="7.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="122.27" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (484,848,480 samples, 1.58%)</title><rect x="58.3" y="997" width="21.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="61.26" y="1007.5" >x..</text>
+</g>
+<g >
+<title>x64_sys_call (90,909,090 samples, 0.30%)</title><rect x="103.8" y="677" width="4.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="106.79" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.03%)</title><rect x="10.9" y="789" width="0.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="13.91" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (90,909,090 samples, 0.30%)</title><rect x="356.9" y="581" width="4.1" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="359.94" y="591.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.03%)</title><rect x="405.7" y="565" width="0.4" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="408.65" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="292.3" y="741" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="295.28" y="751.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="1331.7" y="789" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1334.72" y="799.5" ></text>
+</g>
+<g >
+<title>inet_accept (20,202,020 samples, 0.07%)</title><rect x="36.4" y="821" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="39.41" y="831.5" ></text>
+</g>
+<g >
+<title>git_odb_read_header (70,707,070 samples, 0.23%)</title><rect x="290.0" y="853" width="3.2" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="293.01" y="863.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.07%)</title><rect x="108.3" y="693" width="1.0" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="111.34" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="356.9" y="549" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="359.94" y="559.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="419.8" y="645" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="422.77" y="655.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="282.7" y="693" width="0.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="285.72" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="565.9" y="645" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="568.92" y="655.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="585.5" y="661" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="588.49" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="591.4" y="533" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="594.41" y="543.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (30,303,030 samples, 0.10%)</title><rect x="1380.0" y="597" width="1.3" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1382.98" y="607.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.03%)</title><rect x="244.5" y="773" width="0.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="247.48" y="783.5" ></text>
+</g>
+<g >
+<title>git_error_set (10,101,010 samples, 0.03%)</title><rect x="404.7" y="725" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="407.74" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="1370.4" y="949" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1373.42" y="959.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (70,707,070 samples, 0.23%)</title><rect x="270.4" y="741" width="3.2" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="273.43" y="751.5" ></text>
+</g>
+<g >
+<title>tasklet_action (10,101,010 samples, 0.03%)</title><rect x="1332.2" y="869" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1335.18" y="879.5" ></text>
+</g>
+<g >
+<title>__futex_wait (40,404,040 samples, 0.13%)</title><rect x="15.9" y="885" width="1.8" height="15.0" fill="rgb(0,192,11)" rx="2" ry="2" />
+<text x="18.92" y="895.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (10,101,010 samples, 0.03%)</title><rect x="103.8" y="597" width="0.4" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="106.79" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_bread (20,202,020 samples, 0.07%)</title><rect x="687.0" y="757" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="690.02" y="767.5" ></text>
+</g>
+<g >
+<title>blk_mq_get_tag (10,101,010 samples, 0.03%)</title><rect x="434.8" y="421" width="0.4" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="437.79" y="431.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="741" width="0.4" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1046.98" y="751.5" ></text>
+</g>
+<g >
+<title>__srcu_read_lock (10,101,010 samples, 0.03%)</title><rect x="201.7" y="597" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="204.68" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="652.4" y="709" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="655.42" y="719.5" ></text>
+</g>
+<g >
+<title>write (40,404,040 samples, 0.13%)</title><rect x="346.5" y="773" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="349.46" y="783.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="127.5" y="709" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="130.47" y="719.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="379.2" y="597" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="382.24" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_append (111,111,110 samples, 0.36%)</title><rect x="512.6" y="597" width="5.1" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="515.65" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="668.4" y="565" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="671.36" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (90,909,090 samples, 0.30%)</title><rect x="557.3" y="805" width="4.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="560.26" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="570.9" y="661" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="573.92" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="183.5" y="805" width="1.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="186.47" y="815.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.07%)</title><rect x="322.8" y="645" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="325.79" y="655.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="699.8" y="725" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="702.77" y="735.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (10,101,010 samples, 0.03%)</title><rect x="593.7" y="693" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="596.69" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="547.2" y="549" width="0.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="550.25" y="559.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.03%)</title><rect x="560.0" y="549" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="563.00" y="559.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="504.9" y="581" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="507.91" y="591.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="600.5" y="453" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="603.52" y="463.5" ></text>
+</g>
+<g >
+<title>mas_store_prealloc (10,101,010 samples, 0.03%)</title><rect x="759.4" y="725" width="0.5" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="762.42" y="735.5" ></text>
+</g>
+<g >
+<title>sd_init_command (10,101,010 samples, 0.03%)</title><rect x="552.7" y="341" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="555.71" y="351.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="475.8" y="805" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="478.77" y="815.5" ></text>
+</g>
+<g >
+<title>set_root (10,101,010 samples, 0.03%)</title><rect x="679.7" y="581" width="0.5" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="682.74" y="591.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="430.2" y="661" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="433.24" y="671.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="260.4" y="661" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="263.41" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="12.3" y="981" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="15.28" y="991.5" ></text>
+</g>
+<g >
+<title>iterate_dir (30,303,030 samples, 0.10%)</title><rect x="224.9" y="789" width="1.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="227.90" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="391.1" y="709" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="394.08" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="267.7" y="789" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="270.70" y="799.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="525.4" y="709" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="528.39" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.23%)</title><rect x="54.6" y="1029" width="3.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="57.62" y="1039.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="438.4" y="677" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="441.43" y="687.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.07%)</title><rect x="483.1" y="709" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="486.05" y="719.5" ></text>
+</g>
+<g >
+<title>client_create_thread (151,515,150 samples, 0.49%)</title><rect x="28.7" y="933" width="6.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="31.67" y="943.5" ></text>
+</g>
+<g >
+<title>ksys_write (30,303,030 samples, 0.10%)</title><rect x="519.9" y="677" width="1.4" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="522.93" y="687.5" ></text>
+</g>
+<g >
+<title>pcpu_alloc (10,101,010 samples, 0.03%)</title><rect x="717.5" y="725" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="720.53" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_read_block_bitmap_nowait (10,101,010 samples, 0.03%)</title><rect x="210.8" y="517" width="0.4" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="213.79" y="527.5" ></text>
+</g>
+<g >
+<title>fstatat64 (131,313,130 samples, 0.43%)</title><rect x="579.1" y="869" width="5.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="582.12" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (40,404,040 samples, 0.13%)</title><rect x="567.7" y="661" width="1.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="570.74" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (212,121,210 samples, 0.69%)</title><rect x="453.9" y="837" width="9.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="456.91" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.07%)</title><rect x="310.5" y="629" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="313.49" y="639.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="62.8" y="709" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="65.81" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="351.5" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="354.47" y="783.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="626.0" y="613" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="629.01" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (414,141,410 samples, 1.35%)</title><rect x="502.6" y="773" width="18.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="505.63" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="234.5" y="869" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="237.46" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="523.6" y="693" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="526.57" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_bread (20,202,020 samples, 0.07%)</title><rect x="622.8" y="709" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="625.83" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="422.5" y="581" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="425.50" y="591.5" ></text>
+</g>
+<g >
+<title>path_parentat (20,202,020 samples, 0.07%)</title><rect x="196.7" y="709" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="199.67" y="719.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (50,505,050 samples, 0.16%)</title><rect x="434.8" y="613" width="2.3" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="437.79" y="623.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.03%)</title><rect x="474.9" y="629" width="0.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="477.86" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.03%)</title><rect x="462.6" y="565" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="465.56" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="330.1" y="677" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="333.07" y="687.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (90,909,090 samples, 0.30%)</title><rect x="1385.4" y="805" width="4.1" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1388.45" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="668.4" y="645" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="671.36" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="469.8" y="853" width="1.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="472.85" y="863.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (272,727,270 samples, 0.89%)</title><rect x="308.2" y="725" width="12.3" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="311.22" y="735.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="76.0" y="789" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="79.02" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.16%)</title><rect x="656.1" y="853" width="2.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="659.06" y="863.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.07%)</title><rect x="241.7" y="805" width="1.0" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="244.75" y="815.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="709" width="4.1" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1029.22" y="719.5" ></text>
+</g>
+<g >
+<title>new_inode_pseudo (10,101,010 samples, 0.03%)</title><rect x="1034.9" y="853" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1037.87" y="863.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.03%)</title><rect x="530.9" y="709" width="0.4" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="533.86" y="719.5" ></text>
+</g>
+<g >
+<title>do_open (30,303,030 samples, 0.10%)</title><rect x="335.1" y="693" width="1.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="338.08" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="1381.8" y="933" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1384.80" y="943.5" ></text>
+</g>
+<g >
+<title>__x64_sys_socket (20,202,020 samples, 0.07%)</title><rect x="1381.8" y="917" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1384.80" y="927.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="42.3" y="933" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="45.33" y="943.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="92.0" y="901" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="94.95" y="911.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="394.3" y="629" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="397.27" y="639.5" ></text>
+</g>
+<g >
+<title>security_capable (10,101,010 samples, 0.03%)</title><rect x="637.9" y="645" width="0.4" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="640.85" y="655.5" ></text>
+</g>
+<g >
+<title>do_softirq (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="549" width="4.1" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1029.22" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="66.0" y="757" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="69.00" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (50,505,050 samples, 0.16%)</title><rect x="39.1" y="933" width="2.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="42.14" y="943.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="247.2" y="757" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="250.21" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="470.3" y="773" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="473.30" y="783.5" ></text>
+</g>
+<g >
+<title>__default_morecore (20,202,020 samples, 0.07%)</title><rect x="1367.2" y="885" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1370.24" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.07%)</title><rect x="106.5" y="437" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="109.52" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="374.2" y="677" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="377.24" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.26%)</title><rect x="321.0" y="805" width="3.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="323.97" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="572.3" y="677" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="575.29" y="687.5" ></text>
+</g>
+<g >
+<title>dentry_free (10,101,010 samples, 0.03%)</title><rect x="21.8" y="789" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="24.84" y="799.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_create_internal (10,101,010 samples, 0.03%)</title><rect x="1348.6" y="965" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1351.57" y="975.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (30,303,030 samples, 0.10%)</title><rect x="227.6" y="677" width="1.4" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="230.63" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="741" width="4.1" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1029.22" y="751.5" ></text>
+</g>
+<g >
+<title>rb_next_postorder (10,101,010 samples, 0.03%)</title><rect x="192.1" y="725" width="0.5" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="195.12" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="901" width="1.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1378.43" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="542.7" y="741" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="545.70" y="751.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.03%)</title><rect x="578.7" y="789" width="0.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="581.66" y="799.5" ></text>
+</g>
+<g >
+<title>git_index_add (70,707,070 samples, 0.23%)</title><rect x="290.0" y="901" width="3.2" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="293.01" y="911.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (90,909,090 samples, 0.30%)</title><rect x="557.3" y="757" width="4.1" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="560.26" y="767.5" ></text>
+</g>
+<g >
+<title>__sock_create (10,101,010 samples, 0.03%)</title><rect x="1034.9" y="885" width="0.4" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1037.87" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="21.8" y="869" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="24.84" y="879.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.03%)</title><rect x="370.1" y="613" width="0.5" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="373.14" y="623.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.03%)</title><rect x="500.8" y="725" width="0.5" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="503.81" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="529.5" y="709" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="532.49" y="719.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="150.7" y="645" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="153.69" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.07%)</title><rect x="285.9" y="757" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="288.91" y="767.5" ></text>
+</g>
+<g >
+<title>worker_handle_cmd_start_run (10,101,010 samples, 0.03%)</title><rect x="1371.3" y="933" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1374.33" y="943.5" ></text>
+</g>
+<g >
+<title>__destroy_inode (20,202,020 samples, 0.07%)</title><rect x="201.2" y="661" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="204.22" y="671.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (20,202,020 samples, 0.07%)</title><rect x="1013.9" y="229" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1016.93" y="239.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (60,606,060 samples, 0.20%)</title><rect x="1012.6" y="597" width="2.7" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1015.56" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="293.2" y="869" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="296.19" y="879.5" ></text>
+</g>
+<g >
+<title>__netif_rx (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="69" width="0.4" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1030.58" y="79.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="654.2" y="629" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="657.24" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.03%)</title><rect x="606.9" y="613" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="609.89" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="367.4" y="661" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="370.41" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="423.4" y="629" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="426.41" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (10,101,010 samples, 0.03%)</title><rect x="11.8" y="357" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="14.82" y="367.5" ></text>
+</g>
+<g >
+<title>delayed_put_pid (10,101,010 samples, 0.03%)</title><rect x="983.9" y="741" width="0.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="986.88" y="751.5" ></text>
+</g>
+<g >
+<title>__inet_stream_connect (181,818,180 samples, 0.59%)</title><rect x="1035.3" y="853" width="8.2" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1038.32" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.03%)</title><rect x="572.7" y="709" width="0.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="575.74" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="397.5" y="629" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="400.46" y="639.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.03%)</title><rect x="1011.2" y="853" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1014.19" y="863.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.03%)</title><rect x="244.9" y="853" width="0.5" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="247.93" y="863.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (10,101,010 samples, 0.03%)</title><rect x="364.2" y="549" width="0.5" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="367.22" y="559.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="559.1" y="549" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="562.09" y="559.5" ></text>
+</g>
+<g >
+<title>futex_wait_queue (40,404,040 samples, 0.13%)</title><rect x="15.9" y="869" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="18.92" y="879.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="411.1" y="741" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="414.12" y="751.5" ></text>
+</g>
+<g >
+<title>cap_inode_need_killpriv (10,101,010 samples, 0.03%)</title><rect x="576.4" y="661" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="579.39" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="487.6" y="725" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="490.60" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="652.4" y="693" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="655.42" y="703.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="268.2" y="709" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="271.15" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.13%)</title><rect x="394.7" y="725" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="397.72" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="543.6" y="789" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="546.61" y="799.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="391.1" y="661" width="0.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="394.08" y="671.5" ></text>
+</g>
+<g >
+<title>brk (10,101,010 samples, 0.03%)</title><rect x="1057.2" y="901" width="0.4" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="1060.18" y="911.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="286.8" y="901" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="289.82" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="259.5" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="262.50" y="783.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (333,333,330 samples, 1.09%)</title><rect x="62.8" y="901" width="15.0" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="65.81" y="911.5" ></text>
+</g>
+<g >
+<title>remove (50,505,050 samples, 0.16%)</title><rect x="234.9" y="901" width="2.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="237.92" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_read_inode_bitmap (20,202,020 samples, 0.07%)</title><rect x="67.8" y="853" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="70.82" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="668.8" y="805" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="671.81" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="490.8" y="677" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="493.79" y="687.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="178.9" y="629" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="181.91" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="476.7" y="725" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="479.68" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="1010.3" y="821" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1013.28" y="831.5" ></text>
+</g>
+<g >
+<title>put_cred_rcu (10,101,010 samples, 0.03%)</title><rect x="190.8" y="533" width="0.4" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="193.75" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (40,404,040 samples, 0.13%)</title><rect x="631.0" y="629" width="1.8" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="634.02" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="230.4" y="677" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="233.36" y="687.5" ></text>
+</g>
+<g >
+<title>net_send (50,505,050 samples, 0.16%)</title><rect x="10.0" y="981" width="2.3" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="13.00" y="991.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="316.4" y="453" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="319.41" y="463.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.03%)</title><rect x="1044.4" y="901" width="0.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1047.43" y="911.5" ></text>
+</g>
+<g >
+<title>destroy_inode (10,101,010 samples, 0.03%)</title><rect x="605.5" y="629" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="608.53" y="639.5" ></text>
+</g>
+<g >
+<title>remove (80,808,080 samples, 0.26%)</title><rect x="230.4" y="885" width="3.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="233.36" y="895.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="382.4" y="709" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="385.43" y="719.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (10,101,010 samples, 0.03%)</title><rect x="337.8" y="693" width="0.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="340.81" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="205.8" y="549" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="208.78" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="551.8" y="565" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="554.80" y="575.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.03%)</title><rect x="1044.4" y="885" width="0.5" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="1047.43" y="895.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="664.7" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="667.71" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.30%)</title><rect x="103.8" y="709" width="4.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="106.79" y="719.5" ></text>
+</g>
+<g >
+<title>up_read (10,101,010 samples, 0.03%)</title><rect x="746.2" y="725" width="0.5" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="749.21" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (60,606,060 samples, 0.20%)</title><rect x="321.4" y="725" width="2.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="324.42" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.07%)</title><rect x="601.4" y="677" width="0.9" height="15.0" fill="rgb(0,235,191)" 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="653.3" y="629" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="656.33" y="639.5" ></text>
+</g>
+<g >
+<title>__libc_start_main (28,929,292,640 samples, 94.49%)</title><rect x="86.0" y="1077" width="1304.0" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="89.03" y="1087.5" >__libc_start_main</text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="663.8" y="741" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="666.80" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.03%)</title><rect x="607.8" y="565" width="0.5" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="610.80" y="575.5" ></text>
+</g>
+<g >
+<title>destroy_inode (10,101,010 samples, 0.03%)</title><rect x="353.3" y="629" width="0.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="356.29" y="639.5" ></text>
+</g>
+<g >
+<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="291.8" y="693" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="294.83" y="703.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="667.9" y="677" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="670.90" y="687.5" ></text>
+</g>
+<g >
+<title>fprintf (50,505,050 samples, 0.16%)</title><rect x="39.1" y="965" width="2.3" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="42.14" y="975.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.07%)</title><rect x="461.7" y="533" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="464.65" y="543.5" ></text>
+</g>
+<g >
+<title>process_backlog (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="469" width="1.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1378.43" y="479.5" ></text>
+</g>
+<g >
+<title>__folio_put (10,101,010 samples, 0.03%)</title><rect x="1380.9" y="453" width="0.4" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1383.89" y="463.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="668.8" y="757" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="671.81" y="767.5" ></text>
+</g>
+<g >
+<title>__d_instantiate (10,101,010 samples, 0.03%)</title><rect x="622.4" y="725" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="625.37" y="735.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="984.8" y="757" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="987.79" y="767.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (272,727,270 samples, 0.89%)</title><rect x="1333.5" y="933" width="12.3" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1336.54" y="943.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.03%)</title><rect x="315.0" y="501" width="0.5" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="318.05" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="498.5" y="773" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="501.53" y="783.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="755.8" y="837" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="758.77" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_check (10,101,010 samples, 0.03%)</title><rect x="207.6" y="613" width="0.5" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="210.60" y="623.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="96.1" y="773" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="99.05" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.03%)</title><rect x="295.0" y="613" width="0.5" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="298.01" y="623.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="789" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1046.98" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (60,606,060 samples, 0.20%)</title><rect x="221.3" y="725" width="2.7" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="224.26" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (40,404,040 samples, 0.13%)</title><rect x="559.1" y="661" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="562.09" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="249.9" y="805" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="252.94" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (40,404,040 samples, 0.13%)</title><rect x="230.4" y="741" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="233.36" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="307.8" y="757" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="310.76" y="767.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (60,606,060 samples, 0.20%)</title><rect x="364.7" y="549" width="2.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="367.68" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="437.1" y="597" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="440.07" y="607.5" ></text>
+</g>
+<g >
+<title>block_write_end (10,101,010 samples, 0.03%)</title><rect x="279.1" y="661" width="0.4" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="282.08" y="671.5" ></text>
+</g>
+<g >
+<title>__poll (70,707,070 samples, 0.23%)</title><rect x="18.2" y="981" width="3.2" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="21.20" y="991.5" ></text>
+</g>
+<g >
+<title>__init_rwsem (10,101,010 samples, 0.03%)</title><rect x="692.9" y="757" width="0.5" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="695.94" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="644.7" y="821" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="647.68" y="831.5" ></text>
+</g>
+<g >
+<title>folio_wait_bit (10,101,010 samples, 0.03%)</title><rect x="608.7" y="549" width="0.5" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="611.71" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (10,101,010 samples, 0.03%)</title><rect x="246.3" y="677" width="0.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="249.30" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="789" width="3.2" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1038.32" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="385.6" y="757" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="388.62" y="767.5" ></text>
+</g>
+<g >
+<title>unlink_cb (202,020,200 samples, 0.66%)</title><rect x="215.8" y="869" width="9.1" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="218.79" y="879.5" ></text>
+</g>
+<g >
+<title>iterate_dir (141,414,140 samples, 0.46%)</title><rect x="142.0" y="725" width="6.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="145.04" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="298.7" y="757" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="301.66" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="406.6" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="409.56" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="356.9" y="565" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="359.94" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (20,202,020 samples, 0.07%)</title><rect x="100.1" y="565" width="1.0" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="103.15" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_statx (40,404,040 samples, 0.13%)</title><rect x="394.7" y="661" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="397.72" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="578.7" y="821" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="581.66" y="831.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="619.2" y="709" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="622.19" y="719.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (20,202,020 samples, 0.07%)</title><rect x="460.7" y="469" width="1.0" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="463.74" y="479.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="630.6" y="565" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="633.57" y="575.5" ></text>
+</g>
+<g >
+<title>ip_route_output_key_hash_rcu (10,101,010 samples, 0.03%)</title><rect x="1385.0" y="805" width="0.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1387.99" y="815.5" ></text>
+</g>
+<g >
+<title>dup_mm.constprop.0 (606,060,600 samples, 1.98%)</title><rect x="690.7" y="789" width="27.3" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="693.67" y="799.5" >d..</text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (20,202,020 samples, 0.07%)</title><rect x="460.7" y="421" width="1.0" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="463.74" y="431.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="408.8" y="821" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="411.84" y="831.5" ></text>
+</g>
+<g >
+<title>path_parentat (30,303,030 samples, 0.10%)</title><rect x="130.7" y="661" width="1.3" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="133.65" y="671.5" ></text>
+</g>
+<g >
+<title>dput (131,313,130 samples, 0.43%)</title><rect x="544.5" y="693" width="5.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="547.52" y="703.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (90,909,090 samples, 0.30%)</title><rect x="652.0" y="789" width="4.1" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="654.97" y="799.5" ></text>
+</g>
+<g >
+<title>net_send_part (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="933" width="1.9" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1378.43" y="943.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="405.7" y="677" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="408.65" y="687.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="505.8" y="581" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="508.82" y="591.5" ></text>
+</g>
+<g >
+<title>rmdir (656,565,650 samples, 2.14%)</title><rect x="148.4" y="789" width="29.6" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="151.41" y="799.5" >rm..</text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="253.1" y="741" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="256.13" y="751.5" ></text>
+</g>
+<g >
+<title>__pte_offset_map_lock (10,101,010 samples, 0.03%)</title><rect x="1335.8" y="853" width="0.5" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1338.82" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="652.0" y="773" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="654.97" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="346.0" y="501" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="349.01" y="511.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (10,101,010 samples, 0.03%)</title><rect x="552.7" y="469" width="0.5" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="555.71" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.30%)</title><rect x="378.3" y="741" width="4.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="381.33" y="751.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="621.0" y="645" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="624.01" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (626,262,620 samples, 2.05%)</title><rect x="149.8" y="725" width="28.2" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="152.78" y="735.5" >_..</text>
+</g>
+<g >
+<title>git_reference_symbolic_create (222,222,220 samples, 0.73%)</title><rect x="393.8" y="885" width="10.0" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="396.81" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.33%)</title><rect x="239.5" y="853" width="4.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="242.47" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="408.8" y="805" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="411.84" y="815.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.03%)</title><rect x="1332.6" y="837" width="0.5" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="1335.63" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="545.4" y="597" width="0.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="548.43" y="607.5" ></text>
+</g>
+<g >
+<title>blk_mq_start_request (10,101,010 samples, 0.03%)</title><rect x="364.2" y="373" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="367.22" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (20,202,020 samples, 0.07%)</title><rect x="522.2" y="533" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="525.21" y="543.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (10,101,010 samples, 0.03%)</title><rect x="500.4" y="709" width="0.4" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="503.35" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="371.5" y="757" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="374.50" y="767.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (20,202,020 samples, 0.07%)</title><rect x="998.4" y="725" width="1.0" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1001.45" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="481.7" y="757" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="484.69" y="767.5" ></text>
+</g>
+<g >
+<title>git_refdb_backend_fs (30,303,030 samples, 0.10%)</title><rect x="669.7" y="853" width="1.4" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="672.72" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="316.9" y="533" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="319.87" y="543.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.10%)</title><rect x="439.8" y="917" width="1.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="442.80" y="927.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="642.4" y="773" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="645.41" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="476.2" y="693" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="479.22" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="504.0" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="507.00" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (20,202,020 samples, 0.07%)</title><rect x="513.6" y="469" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="516.56" y="479.5" ></text>
+</g>
+<g >
+<title>evict (30,303,030 samples, 0.10%)</title><rect x="447.1" y="661" width="1.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="450.08" y="671.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (20,202,020 samples, 0.07%)</title><rect x="449.8" y="437" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="452.82" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="63.7" y="773" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="66.72" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="260.0" y="693" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="262.96" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="497.6" y="741" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="500.62" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="438.0" y="629" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="440.98" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_match (10,101,010 samples, 0.03%)</title><rect x="341.9" y="613" width="0.5" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="344.91" y="623.5" ></text>
+</g>
+<g >
+<title>filemap_flush (40,404,040 samples, 0.13%)</title><rect x="248.1" y="693" width="1.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="251.12" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (151,515,150 samples, 0.49%)</title><rect x="141.6" y="773" width="6.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="144.58" y="783.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="414.3" y="549" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="417.30" y="559.5" ></text>
+</g>
+<g >
+<title>ksys_write (40,404,040 samples, 0.13%)</title><rect x="346.5" y="693" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="349.46" y="703.5" ></text>
+</g>
+<g >
+<title>pthread_rwlock_rdlock (10,101,010 samples, 0.03%)</title><rect x="245.4" y="853" width="0.4" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="248.39" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="480.3" y="741" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="483.32" y="751.5" ></text>
+</g>
+<g >
+<title>rw_verify_area (10,101,010 samples, 0.03%)</title><rect x="250.9" y="677" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="253.85" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="375.1" y="661" width="1.0" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="378.15" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="640.6" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="643.58" y="735.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="285.9" y="693" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="288.91" y="703.5" ></text>
+</g>
+<g >
+<title>ip_skb_dst_mtu (10,101,010 samples, 0.03%)</title><rect x="1042.6" y="709" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1045.61" y="719.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="479.4" y="597" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="482.41" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="412.5" y="741" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="415.48" y="751.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="662.0" y="613" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="664.98" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="301.8" y="869" width="1.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="304.84" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.03%)</title><rect x="543.2" y="629" width="0.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="546.15" y="639.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (60,606,060 samples, 0.20%)</title><rect x="484.4" y="837" width="2.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="487.42" y="847.5" ></text>
+</g>
+<g >
+<title>__folio_put (30,303,030 samples, 0.10%)</title><rect x="1388.2" y="533" width="1.3" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1391.18" y="543.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="752.1" y="789" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="755.13" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_rename (50,505,050 samples, 0.16%)</title><rect x="247.7" y="757" width="2.2" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="250.66" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.03%)</title><rect x="326.4" y="693" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="329.43" y="703.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="649.2" y="661" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="652.23" y="671.5" ></text>
+</g>
+<g >
+<title>__fput_sync (111,111,110 samples, 0.36%)</title><rect x="22.3" y="837" width="5.0" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="25.29" y="847.5" ></text>
+</g>
+<g >
+<title>__block_commit_write (10,101,010 samples, 0.03%)</title><rect x="279.1" y="645" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="282.08" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="664.7" y="725" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="667.71" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="483.1" y="757" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="486.05" y="767.5" ></text>
+</g>
+<g >
+<title>SHA256_Init (10,101,010 samples, 0.03%)</title><rect x="344.2" y="805" width="0.4" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="347.19" y="815.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (30,303,030 samples, 0.10%)</title><rect x="93.8" y="789" width="1.3" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="96.77" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="102.0" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="104.97" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (20,202,020 samples, 0.07%)</title><rect x="513.6" y="485" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="516.56" y="495.5" ></text>
+</g>
+<g >
+<title>unlink (20,202,020 samples, 0.07%)</title><rect x="126.6" y="757" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="129.56" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="570.9" y="709" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="573.92" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="376.1" y="693" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="379.06" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="1378.6" y="853" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1381.62" y="863.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="251.3" y="869" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="254.31" y="879.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="708.0" y="677" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="710.97" y="687.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="656.1" y="757" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="659.06" y="767.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="372.0" y="661" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="374.96" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="186.2" y="661" width="0.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="189.20" y="671.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.03%)</title><rect x="298.7" y="725" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="301.66" y="735.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="222.6" y="645" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="225.62" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="350.6" y="725" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="353.56" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (10,101,010 samples, 0.03%)</title><rect x="532.7" y="693" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="535.68" y="703.5" ></text>
+</g>
+<g >
+<title>dput (20,202,020 samples, 0.07%)</title><rect x="500.4" y="741" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="503.35" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="451.6" y="437" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="454.64" y="447.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="470.8" y="725" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="473.76" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="661.5" y="773" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="664.53" y="783.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="549" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1386.17" y="559.5" ></text>
+</g>
+<g >
+<title>cfree (20,202,020 samples, 0.07%)</title><rect x="90.6" y="885" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="93.59" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (111,111,110 samples, 0.36%)</title><rect x="487.1" y="805" width="5.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="490.15" y="815.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="353.7" y="565" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="356.75" y="575.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.03%)</title><rect x="575.9" y="693" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="578.93" y="703.5" ></text>
+</g>
+<g >
+<title>ci_run_git_repo (14,909,090,760 samples, 48.70%)</title><rect x="86.0" y="997" width="672.1" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="89.03" y="1007.5" >ci_run_git_repo</text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="682.5" y="789" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="685.47" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="428.4" y="661" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="431.42" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="642.9" y="805" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="645.86" y="815.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.03%)</title><rect x="57.4" y="965" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="60.35" y="975.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.33%)</title><rect x="471.7" y="853" width="4.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="474.67" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="288.2" y="821" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="291.19" y="831.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="649.2" y="677" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="652.23" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (161,616,160 samples, 0.53%)</title><rect x="184.8" y="757" width="7.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="187.83" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.03%)</title><rect x="604.6" y="741" width="0.5" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="607.62" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="566.8" y="613" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="569.83" y="623.5" ></text>
+</g>
+<g >
+<title>__fsnotify_parent (10,101,010 samples, 0.03%)</title><rect x="420.2" y="485" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="423.22" y="495.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (30,303,030 samples, 0.10%)</title><rect x="83.3" y="869" width="1.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="86.30" y="879.5" ></text>
+</g>
+<g >
+<title>filename_lookup (90,909,090 samples, 0.30%)</title><rect x="81.5" y="949" width="4.1" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="84.48" y="959.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="523.6" y="725" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="526.57" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_rename (70,707,070 samples, 0.23%)</title><rect x="594.6" y="661" width="3.2" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="597.60" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (282,828,280 samples, 0.92%)</title><rect x="441.2" y="885" width="12.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="444.16" y="895.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.03%)</title><rect x="398.4" y="725" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="401.37" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="227.6" y="661" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="230.63" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="116.5" y="645" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="119.54" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (171,717,170 samples, 0.56%)</title><rect x="130.2" y="741" width="7.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="133.20" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="536.3" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="539.32" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (242,424,240 samples, 0.79%)</title><rect x="605.1" y="773" width="10.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="608.07" y="783.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.03%)</title><rect x="532.7" y="661" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="535.68" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="239.5" y="837" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="242.47" y="847.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (30,303,030 samples, 0.10%)</title><rect x="725.3" y="789" width="1.3" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="728.27" y="799.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (242,424,240 samples, 0.79%)</title><rect x="605.1" y="725" width="10.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="608.07" y="735.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (30,303,030 samples, 0.10%)</title><rect x="1361.3" y="725" width="1.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1364.32" y="735.5" ></text>
+</g>
+<g >
+<title>lockref_get_not_zero (10,101,010 samples, 0.03%)</title><rect x="282.7" y="549" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="285.72" y="559.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.03%)</title><rect x="24.6" y="581" width="0.4" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="27.57" y="591.5" ></text>
+</g>
+<g >
+<title>__sys_accept4 (60,606,060 samples, 0.20%)</title><rect x="36.0" y="853" width="2.7" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="38.95" y="863.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (30,303,030 samples, 0.10%)</title><rect x="40.0" y="901" width="1.4" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="43.05" y="911.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (10,101,010 samples, 0.03%)</title><rect x="627.4" y="405" width="0.4" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="630.38" y="415.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="490.8" y="661" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="493.79" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="600.5" y="661" width="0.5" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="603.52" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="256.3" y="741" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="259.31" y="751.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (30,303,030 samples, 0.10%)</title><rect x="478.5" y="741" width="1.4" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="481.50" y="751.5" ></text>
+</g>
+<g >
+<title>rcu_core (20,202,020 samples, 0.07%)</title><rect x="983.9" y="773" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="986.88" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (393,939,390 samples, 1.29%)</title><rect x="618.3" y="773" width="17.7" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="621.27" y="783.5" ></text>
+</g>
+<g >
+<title>security_inode_free (10,101,010 samples, 0.03%)</title><rect x="353.3" y="597" width="0.4" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="356.29" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="591.9" y="501" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="594.87" y="511.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (30,303,030 samples, 0.10%)</title><rect x="447.1" y="709" width="1.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="450.08" y="719.5" ></text>
+</g>
+<g >
+<title>brk (20,202,020 samples, 0.07%)</title><rect x="1367.2" y="853" width="0.9" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="1370.24" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (80,808,080 samples, 0.26%)</title><rect x="208.1" y="613" width="3.6" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="211.05" y="623.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (10,101,010 samples, 0.03%)</title><rect x="69.6" y="773" width="0.5" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="72.64" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="396.5" y="677" width="0.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="399.55" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="555.9" y="597" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="558.90" y="607.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="346.0" y="693" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="349.01" y="703.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="131.6" y="597" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="134.56" y="607.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="587.3" y="677" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="590.31" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (353,535,350 samples, 1.15%)</title><rect x="540.9" y="837" width="15.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="543.87" y="847.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="642.4" y="677" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="645.41" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="757.6" y="805" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="760.59" y="815.5" ></text>
+</g>
+<g >
+<title>ip_output (10,101,010 samples, 0.03%)</title><rect x="1030.8" y="213" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1033.77" y="223.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="232.2" y="645" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="235.18" y="655.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="506.7" y="565" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="509.73" y="575.5" ></text>
+</g>
+<g >
+<title>git_repository_open_ext (343,434,340 samples, 1.12%)</title><rect x="642.9" y="885" width="15.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="645.86" y="895.5" ></text>
+</g>
+<g >
+<title>folio_add_lru (10,101,010 samples, 0.03%)</title><rect x="1363.6" y="773" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1366.59" y="783.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.03%)</title><rect x="238.1" y="661" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="241.10" y="671.5" ></text>
+</g>
+<g >
+<title>iput (30,303,030 samples, 0.10%)</title><rect x="447.1" y="677" width="1.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="450.08" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="458.9" y="565" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="461.92" y="575.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.03%)</title><rect x="387.0" y="629" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="389.98" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (70,707,070 samples, 0.23%)</title><rect x="379.2" y="645" width="3.2" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="382.24" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="642.9" y="725" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="645.86" y="735.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (10,101,010 samples, 0.03%)</title><rect x="1008.5" y="677" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1011.46" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="477.6" y="661" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="480.59" y="671.5" ></text>
+</g>
+<g >
+<title>libjson_send (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="981" width="1.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1378.43" y="991.5" ></text>
+</g>
+<g >
+<title>__sock_create (20,202,020 samples, 0.07%)</title><rect x="1381.8" y="885" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1384.80" y="895.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (10,101,010 samples, 0.03%)</title><rect x="25.5" y="261" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="28.48" y="271.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.03%)</title><rect x="379.2" y="581" width="0.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="382.24" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="423.0" y="741" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="425.95" y="751.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.03%)</title><rect x="295.9" y="869" width="0.5" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="298.93" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_faccessat2 (10,101,010 samples, 0.03%)</title><rect x="645.1" y="757" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="648.14" y="767.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="505.8" y="597" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="508.82" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="757.1" y="837" width="1.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="760.14" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_mb_complex_scan_group (20,202,020 samples, 0.07%)</title><rect x="516.3" y="485" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="519.29" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.10%)</title><rect x="506.7" y="629" width="1.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="509.73" y="639.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="163.0" y="533" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="165.98" y="543.5" ></text>
+</g>
+<g >
+<title>dput (30,303,030 samples, 0.10%)</title><rect x="432.5" y="693" width="1.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="435.51" y="703.5" ></text>
+</g>
+<g >
+<title>make_vfsuid (10,101,010 samples, 0.03%)</title><rect x="81.9" y="885" width="0.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="84.94" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (30,303,030 samples, 0.10%)</title><rect x="1374.1" y="821" width="1.3" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1377.06" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.13%)</title><rect x="754.0" y="869" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="756.95" y="879.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.03%)</title><rect x="698.0" y="565" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="700.95" y="575.5" ></text>
+</g>
+<g >
+<title>iterate_dir (20,202,020 samples, 0.07%)</title><rect x="102.9" y="661" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="105.88" y="671.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="699.8" y="709" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="702.77" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.07%)</title><rect x="81.5" y="917" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="84.48" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="513.1" y="421" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="516.10" y="431.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="429.3" y="453" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="432.33" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="545.9" y="517" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="548.88" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (28,929,292,640 samples, 94.49%)</title><rect x="86.0" y="1061" width="1304.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="89.03" y="1071.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>__pv_queued_spin_lock_slowpath (10,101,010 samples, 0.03%)</title><rect x="1013.5" y="277" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1016.47" y="287.5" ></text>
+</g>
+<g >
+<title>inet_csk_accept (20,202,020 samples, 0.07%)</title><rect x="36.4" y="805" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="39.41" y="815.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="405.7" y="597" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="408.65" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (111,111,110 samples, 0.36%)</title><rect x="168.9" y="549" width="5.0" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="171.90" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (10,101,010 samples, 0.03%)</title><rect x="476.2" y="661" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="479.22" y="671.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="81.9" y="901" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="84.94" y="911.5" ></text>
+</g>
+<g >
+<title>git_checkout_tree (1,060,606,050 samples, 3.46%)</title><rect x="253.6" y="949" width="47.8" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="256.58" y="959.5" >git_..</text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="455.3" y="709" width="0.4" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="458.28" y="719.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="21.8" y="933" width="0.5" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="24.84" y="943.5" ></text>
+</g>
+<g >
+<title>perf_event_mmap (10,101,010 samples, 0.03%)</title><rect x="1057.2" y="789" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1060.18" y="799.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="599.6" y="693" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="602.61" y="703.5" ></text>
+</g>
+<g >
+<title>strerror_l (10,101,010 samples, 0.03%)</title><rect x="374.7" y="677" width="0.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="377.69" y="687.5" ></text>
+</g>
+<g >
+<title>write (30,303,030 samples, 0.10%)</title><rect x="519.9" y="757" width="1.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="522.93" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="112.9" y="581" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="115.90" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="402.0" y="661" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="405.01" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (30,303,030 samples, 0.10%)</title><rect x="519.9" y="629" width="1.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="522.93" y="639.5" ></text>
+</g>
+<g >
+<title>new_inode (40,404,040 samples, 0.13%)</title><rect x="69.2" y="853" width="1.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="72.19" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="1044.4" y="805" width="0.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1047.43" y="815.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.03%)</title><rect x="265.9" y="693" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="268.88" y="703.5" ></text>
+</g>
+<g >
+<title>unlink (70,707,070 samples, 0.23%)</title><rect x="178.0" y="789" width="3.2" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="181.00" y="799.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="80.1" y="853" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="83.12" y="863.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="56.9" y="853" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="59.90" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="300.5" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="303.48" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="251.8" y="805" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="254.76" y="815.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (60,606,060 samples, 0.20%)</title><rect x="340.5" y="805" width="2.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="343.54" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="1367.2" y="901" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1370.24" y="911.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (111,111,110 samples, 0.36%)</title><rect x="403.8" y="869" width="5.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="406.83" y="879.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (60,606,060 samples, 0.20%)</title><rect x="1012.6" y="677" width="2.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1015.56" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="432.1" y="741" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="435.06" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="243.1" y="661" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="246.11" y="671.5" ></text>
+</g>
+<g >
+<title>should_failslab.constprop.0 (20,202,020 samples, 0.07%)</title><rect x="698.4" y="741" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="701.41" y="751.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="687.0" y="677" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="690.02" y="687.5" ></text>
+</g>
+<g >
+<title>__lruvec_stat_mod_folio (50,505,050 samples, 0.16%)</title><rect x="767.2" y="645" width="2.2" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="770.16" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="229.0" y="837" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="232.00" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (50,505,050 samples, 0.16%)</title><rect x="581.9" y="677" width="2.2" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="584.85" y="687.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="258.1" y="549" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="261.14" y="559.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="537.7" y="805" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="540.69" y="815.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (60,606,060 samples, 0.20%)</title><rect x="18.7" y="901" width="2.7" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="21.65" y="911.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="700.2" y="757" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="703.23" y="767.5" ></text>
+</g>
+<g >
+<title>crc_pcl (20,202,020 samples, 0.07%)</title><rect x="198.5" y="645" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="201.49" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="396.5" y="741" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="399.55" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (404,040,400 samples, 1.32%)</title><rect x="597.8" y="853" width="18.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="600.79" y="863.5" ></text>
+</g>
+<g >
+<title>git_signature_now (20,202,020 samples, 0.07%)</title><rect x="252.7" y="885" width="0.9" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="255.67" y="895.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="510.8" y="581" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="513.82" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="458.5" y="549" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="461.47" y="559.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.03%)</title><rect x="108.8" y="629" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="111.80" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="1348.6" y="885" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1351.57" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="132.0" y="597" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="135.02" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (40,404,040 samples, 0.13%)</title><rect x="248.1" y="613" width="1.8" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="251.12" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="685.7" y="725" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="688.66" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="410.2" y="533" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="413.20" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (2,313,131,290 samples, 7.56%)</title><rect x="533.1" y="885" width="104.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="536.13" y="895.5" >[libgit2.so...</text>
+</g>
+<g >
+<title>__ext4_new_inode (90,909,090 samples, 0.30%)</title><rect x="309.1" y="677" width="4.1" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="312.13" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.03%)</title><rect x="361.9" y="677" width="0.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="364.94" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (70,707,070 samples, 0.23%)</title><rect x="434.3" y="677" width="3.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="437.34" y="687.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="664.3" y="613" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="667.26" y="623.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="443.0" y="565" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="445.99" y="575.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (50,505,050 samples, 0.16%)</title><rect x="983.0" y="853" width="2.2" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="985.97" y="863.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="542.7" y="709" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="545.70" y="719.5" ></text>
+</g>
+<g >
+<title>free_pages_and_swap_cache (121,212,120 samples, 0.40%)</title><rect x="759.9" y="709" width="5.4" height="15.0" fill="rgb(0,207,75)" rx="2" ry="2" />
+<text x="762.87" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.10%)</title><rect x="550.9" y="645" width="1.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="553.89" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (131,313,130 samples, 0.43%)</title><rect x="650.1" y="821" width="6.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="653.15" y="831.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.03%)</title><rect x="370.1" y="709" width="0.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="373.14" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="680.6" y="853" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="683.65" y="863.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.03%)</title><rect x="388.8" y="725" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="391.81" y="735.5" ></text>
+</g>
+<g >
+<title>folio_clear_dirty_for_io (10,101,010 samples, 0.03%)</title><rect x="452.5" y="517" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="455.55" y="527.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.03%)</title><rect x="368.3" y="709" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="371.32" y="719.5" ></text>
+</g>
+<g >
+<title>inode_permission (20,202,020 samples, 0.07%)</title><rect x="588.2" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="591.23" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.03%)</title><rect x="1379.5" y="757" width="0.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1382.53" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="655.2" y="709" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="658.15" y="719.5" ></text>
+</g>
+<g >
+<title>ptep_set_access_flags (10,101,010 samples, 0.03%)</title><rect x="94.7" y="709" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="97.68" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.07%)</title><rect x="321.4" y="709" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="324.42" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="604.2" y="773" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="607.16" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_data_ready (20,202,020 samples, 0.07%)</title><rect x="1013.9" y="245" width="0.9" height="15.0" fill="rgb(0,217,113)" rx="2" ry="2" />
+<text x="1016.93" y="255.5" ></text>
+</g>
+<g >
+<title>apparmor_file_permission (10,101,010 samples, 0.03%)</title><rect x="194.8" y="725" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="197.85" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (30,303,030 samples, 0.10%)</title><rect x="519.9" y="693" width="1.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="522.93" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (50,505,050 samples, 0.16%)</title><rect x="55.5" y="997" width="2.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="58.53" y="1007.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (40,404,040 samples, 0.13%)</title><rect x="526.8" y="789" width="1.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="529.76" y="799.5" ></text>
+</g>
+<g >
+<title>apparmor_current_getlsmblob_subj (10,101,010 samples, 0.03%)</title><rect x="666.5" y="629" width="0.5" height="15.0" fill="rgb(0,223,140)" rx="2" ry="2" />
+<text x="669.54" y="639.5" ></text>
+</g>
+<g >
+<title>iput (40,404,040 samples, 0.13%)</title><rect x="227.2" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="230.18" y="751.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="522.2" y="501" width="0.5" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="525.21" y="511.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.03%)</title><rect x="669.3" y="645" width="0.4" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="672.27" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="80.1" y="1029" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="83.12" y="1039.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="666.5" y="757" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="669.54" y="767.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.03%)</title><rect x="283.2" y="709" width="0.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="286.18" y="719.5" ></text>
+</g>
+<g >
+<title>__run_timers (10,101,010 samples, 0.03%)</title><rect x="601.0" y="597" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="603.97" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="372.0" y="709" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="374.96" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="357.4" y="469" width="0.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="360.39" y="479.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="346.0" y="469" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="349.01" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="127.5" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="130.47" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="672.5" y="741" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="675.45" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="271.8" y="629" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="274.79" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (10,101,010 samples, 0.03%)</title><rect x="522.7" y="501" width="0.4" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="525.66" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="397.0" y="693" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="400.00" y="703.5" ></text>
+</g>
+<g >
+<title>worker_do_run (28,484,848,200 samples, 93.04%)</title><rect x="86.0" y="1013" width="1284.0" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="89.03" y="1023.5" >worker_do_run</text>
+</g>
+<g >
+<title>list_lru_del (10,101,010 samples, 0.03%)</title><rect x="126.1" y="549" width="0.5" height="15.0" fill="rgb(0,216,113)" rx="2" ry="2" />
+<text x="129.10" y="559.5" ></text>
+</g>
+<g >
+<title>folio_mark_accessed (10,101,010 samples, 0.03%)</title><rect x="624.2" y="613" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="627.19" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (30,303,030 samples, 0.10%)</title><rect x="294.1" y="725" width="1.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="297.10" y="735.5" ></text>
+</g>
+<g >
+<title>malloc (20,202,020 samples, 0.07%)</title><rect x="1367.2" y="917" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1370.24" y="927.5" ></text>
+</g>
+<g >
+<title>blk_mq_free_request (10,101,010 samples, 0.03%)</title><rect x="546.8" y="293" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="549.79" y="303.5" ></text>
+</g>
+<g >
+<title>scsi_target_queue_ready (10,101,010 samples, 0.03%)</title><rect x="610.5" y="373" width="0.5" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="613.53" y="383.5" ></text>
+</g>
+<g >
+<title>down_write (10,101,010 samples, 0.03%)</title><rect x="47.8" y="917" width="0.4" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="50.79" y="927.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="346.0" y="485" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="349.01" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (40,404,040 samples, 0.13%)</title><rect x="15.9" y="933" width="1.8" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="18.92" y="943.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.03%)</title><rect x="682.0" y="869" width="0.5" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="685.02" y="879.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited (10,101,010 samples, 0.03%)</title><rect x="346.5" y="613" width="0.4" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="349.46" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="440.3" y="869" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="443.25" y="879.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (20,202,020 samples, 0.07%)</title><rect x="302.8" y="933" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="305.75" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.03%)</title><rect x="548.6" y="517" width="0.5" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="551.61" y="527.5" ></text>
+</g>
+<g >
+<title>list_lru_del_obj (10,101,010 samples, 0.03%)</title><rect x="176.2" y="597" width="0.4" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="179.18" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="165.3" y="581" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="168.26" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.07%)</title><rect x="241.7" y="741" width="1.0" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="244.75" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.03%)</title><rect x="611.9" y="485" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="614.90" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (20,202,020 samples, 0.07%)</title><rect x="522.2" y="549" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="525.21" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="267.2" y="805" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="270.24" y="815.5" ></text>
+</g>
+<g >
+<title>fsnotify_destroy_marks (10,101,010 samples, 0.03%)</title><rect x="114.7" y="581" width="0.5" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="117.72" y="591.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="474.4" y="565" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="477.40" y="575.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="398.4" y="661" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="401.37" y="671.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="504.9" y="629" width="0.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="507.91" y="639.5" ></text>
+</g>
+<g >
+<title>release_sock (10,101,010 samples, 0.03%)</title><rect x="36.4" y="789" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="39.41" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="332.8" y="821" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="335.80" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="527.7" y="661" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="530.67" y="671.5" ></text>
+</g>
+<g >
+<title>filemap_flush (10,101,010 samples, 0.03%)</title><rect x="501.3" y="677" width="0.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="504.26" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="467.1" y="821" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="470.12" y="831.5" ></text>
+</g>
+<g >
+<title>ima_file_check (10,101,010 samples, 0.03%)</title><rect x="666.5" y="661" width="0.5" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="669.54" y="671.5" ></text>
+</g>
+<g >
+<title>libgit_clone (8,404,040,320 samples, 27.45%)</title><rect x="304.1" y="949" width="378.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="307.12" y="959.5" >libgit_clone</text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.10%)</title><rect x="128.8" y="709" width="1.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="131.83" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="333.7" y="789" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="336.71" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="392.4" y="693" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="395.45" y="703.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="708.0" y="613" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="710.97" y="623.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.03%)</title><rect x="370.1" y="581" width="0.5" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="373.14" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (30,303,030 samples, 0.10%)</title><rect x="395.2" y="581" width="1.3" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="398.18" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="669.7" y="709" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="672.72" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (171,717,170 samples, 0.56%)</title><rect x="561.8" y="837" width="7.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="564.82" y="847.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (10,101,010 samples, 0.03%)</title><rect x="438.0" y="805" width="0.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="440.98" y="815.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="257.2" y="661" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="260.23" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (111,111,110 samples, 0.36%)</title><rect x="512.6" y="565" width="5.1" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="515.65" y="575.5" ></text>
+</g>
+<g >
+<title>do_rmdir (616,161,610 samples, 2.01%)</title><rect x="149.8" y="709" width="27.7" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="152.78" y="719.5" >d..</text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="745.8" y="725" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="748.76" y="735.5" ></text>
+</g>
+<g >
+<title>__lruvec_stat_mod_folio (10,101,010 samples, 0.03%)</title><rect x="1051.3" y="837" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1054.26" y="847.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="159.3" y="613" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="162.34" y="623.5" ></text>
+</g>
+<g >
+<title>iput (30,303,030 samples, 0.10%)</title><rect x="571.8" y="757" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="574.83" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_match (20,202,020 samples, 0.07%)</title><rect x="583.2" y="629" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="586.22" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.16%)</title><rect x="43.7" y="869" width="2.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="46.69" y="879.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="243.1" y="709" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="246.11" y="719.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="438.9" y="757" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="441.89" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (60,606,060 samples, 0.20%)</title><rect x="685.7" y="805" width="2.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="688.66" y="815.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="650.1" y="581" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="653.15" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="604.6" y="709" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="607.62" y="719.5" ></text>
+</g>
+<g >
+<title>net_send_buf (494,949,490 samples, 1.62%)</title><rect x="1011.6" y="965" width="22.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1014.65" y="975.5" >n..</text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="505.8" y="645" width="0.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="508.82" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_rename (131,313,130 samples, 0.43%)</title><rect x="361.9" y="709" width="6.0" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="364.94" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="425.2" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="428.23" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="459.8" y="485" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="462.83" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="287.3" y="869" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="290.27" y="879.5" ></text>
+</g>
+<g >
+<title>shrink_dentry_list (20,202,020 samples, 0.07%)</title><rect x="213.1" y="693" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="216.06" y="703.5" ></text>
+</g>
+<g >
+<title>free_unref_page (40,404,040 samples, 0.13%)</title><rect x="730.3" y="757" width="1.8" height="15.0" fill="rgb(0,238,205)" rx="2" ry="2" />
+<text x="733.28" y="767.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="323.2" y="629" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="326.24" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="611.0" y="469" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="613.99" y="479.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.07%)</title><rect x="377.4" y="661" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="380.42" y="671.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.03%)</title><rect x="752.1" y="805" width="0.5" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="755.13" y="815.5" ></text>
+</g>
+<g >
+<title>__schedule (60,606,060 samples, 0.20%)</title><rect x="746.7" y="773" width="2.7" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="749.67" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="476.2" y="837" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="479.22" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (575,757,570 samples, 1.88%)</title><rect x="724.8" y="853" width="26.0" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="727.81" y="863.5" >_..</text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="466.2" y="757" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="469.21" y="767.5" ></text>
+</g>
+<g >
+<title>_raw_spin_trylock (10,101,010 samples, 0.03%)</title><rect x="1346.7" y="773" width="0.5" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1349.75" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="586.4" y="693" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="589.40" y="703.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="725" width="1.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1386.17" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="484.9" y="645" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="487.87" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="591.4" y="549" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="594.41" y="559.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="262.7" y="709" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="265.69" y="719.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.03%)</title><rect x="468.0" y="805" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="471.03" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="251.8" y="789" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="254.76" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_bio_write_folio (20,202,020 samples, 0.07%)</title><rect x="612.4" y="501" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="615.36" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.03%)</title><rect x="511.7" y="597" width="0.5" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="514.74" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (50,505,050 samples, 0.16%)</title><rect x="443.0" y="725" width="2.3" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="445.99" y="735.5" ></text>
+</g>
+<g >
+<title>path_openat (30,303,030 samples, 0.10%)</title><rect x="677.9" y="629" width="1.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="680.92" y="639.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.03%)</title><rect x="321.9" y="629" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="324.88" y="639.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (101,010,100 samples, 0.33%)</title><rect x="1018.9" y="725" width="4.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1021.93" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (40,404,040 samples, 0.13%)</title><rect x="460.7" y="581" width="1.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="463.74" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="13.6" y="869" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="16.64" y="879.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="372.0" y="629" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="374.96" y="639.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (10,101,010 samples, 0.03%)</title><rect x="220.8" y="741" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="223.80" y="751.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="319.6" y="645" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="322.60" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.07%)</title><rect x="618.3" y="725" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="621.27" y="735.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_ipv4 (10,101,010 samples, 0.03%)</title><rect x="24.6" y="565" width="0.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="27.57" y="575.5" ></text>
+</g>
+<g >
+<title>filename_lookup (40,404,040 samples, 0.13%)</title><rect x="55.5" y="917" width="1.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="58.53" y="927.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="428.9" y="597" width="1.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="431.87" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="442.1" y="757" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="445.08" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.07%)</title><rect x="168.0" y="533" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="170.99" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="639.2" y="805" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="642.22" y="815.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (30,303,030 samples, 0.10%)</title><rect x="1052.6" y="789" width="1.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1055.63" y="799.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.03%)</title><rect x="350.6" y="645" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="353.56" y="655.5" ></text>
+</g>
+<g >
+<title>__do_softirq (80,808,080 samples, 0.26%)</title><rect x="1385.9" y="613" width="3.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1388.90" y="623.5" ></text>
+</g>
+<g >
+<title>lru_add_drain_cpu (20,202,020 samples, 0.07%)</title><rect x="554.5" y="501" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="557.53" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (70,707,070 samples, 0.23%)</title><rect x="449.8" y="597" width="3.2" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="452.82" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (505,050,500 samples, 1.65%)</title><rect x="502.6" y="805" width="22.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="505.63" y="815.5" >[..</text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.10%)</title><rect x="128.8" y="693" width="1.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="131.83" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="641.0" y="709" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="644.04" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_da_update_reserve_space (20,202,020 samples, 0.07%)</title><rect x="450.7" y="517" width="0.9" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="453.73" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (50,505,050 samples, 0.16%)</title><rect x="509.9" y="613" width="2.3" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="512.91" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="438.0" y="565" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="440.98" y="575.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.03%)</title><rect x="37.8" y="709" width="0.4" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="40.77" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="481.7" y="821" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="484.69" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="217.6" y="629" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="220.61" y="639.5" ></text>
+</g>
+<g >
+<title>__check_heap_object (10,101,010 samples, 0.03%)</title><rect x="539.1" y="661" width="0.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="542.05" y="671.5" ></text>
+</g>
+<g >
+<title>put_pid.part.0 (10,101,010 samples, 0.03%)</title><rect x="983.9" y="725" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="986.88" y="735.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="63.7" y="741" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="66.72" y="751.5" ></text>
+</g>
+<g >
+<title>page_counter_uncharge (10,101,010 samples, 0.03%)</title><rect x="1022.1" y="469" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1025.12" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (1,464,646,450 samples, 4.78%)</title><rect x="304.6" y="885" width="66.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="307.58" y="895.5" >[libgit..</text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.10%)</title><rect x="669.7" y="725" width="1.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="672.72" y="735.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="38.7" y="837" width="0.4" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="41.68" y="847.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.03%)</title><rect x="443.0" y="597" width="0.4" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="445.99" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="543.6" y="773" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="546.61" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="618.7" y="661" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="621.73" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_set_state (10,101,010 samples, 0.03%)</title><rect x="23.7" y="645" width="0.4" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="26.66" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="271.8" y="597" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="274.79" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="557.3" y="677" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="560.26" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.10%)</title><rect x="680.6" y="805" width="1.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="683.65" y="815.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.03%)</title><rect x="536.8" y="677" width="0.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="539.78" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_match (10,101,010 samples, 0.03%)</title><rect x="614.6" y="613" width="0.5" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="617.63" y="623.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (131,313,130 samples, 0.43%)</title><rect x="563.6" y="709" width="6.0" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="566.64" y="719.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="387.9" y="597" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="390.90" y="607.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="645.6" y="773" width="1.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="648.59" y="783.5" ></text>
+</g>
+<g >
+<title>from_kgid (10,101,010 samples, 0.03%)</title><rect x="154.8" y="597" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="157.78" y="607.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="422.5" y="597" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="425.50" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="154.3" y="661" width="0.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="157.33" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="534.0" y="805" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="537.04" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="654.2" y="661" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="657.24" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="645.1" y="773" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="648.14" y="783.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="672.9" y="741" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="675.91" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="171.2" y="469" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="174.17" y="479.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="237.6" y="885" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="240.65" y="895.5" ></text>
+</g>
+<g >
+<title>cmd_dispatcher_handle_event (90,909,090 samples, 0.30%)</title><rect x="1371.3" y="981" width="4.1" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1374.33" y="991.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.03%)</title><rect x="367.4" y="629" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="370.41" y="639.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (30,303,030 samples, 0.10%)</title><rect x="147.0" y="677" width="1.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="150.04" y="687.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="637.9" y="741" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="640.85" y="751.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="430.7" y="533" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="433.69" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="423.0" y="725" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="425.95" y="735.5" ></text>
+</g>
+<g >
+<title>ip_local_out (20,202,020 samples, 0.07%)</title><rect x="1030.3" y="229" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1033.32" y="239.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg (10,101,010 samples, 0.03%)</title><rect x="1375.0" y="725" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1377.98" y="735.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="751.2" y="869" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="754.22" y="879.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="664.7" y="741" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="667.71" y="751.5" ></text>
+</g>
+<g >
+<title>libjson_from_string (30,303,030 samples, 0.10%)</title><rect x="1372.7" y="917" width="1.4" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1375.70" y="927.5" ></text>
+</g>
+<g >
+<title>walk_component (30,303,030 samples, 0.10%)</title><rect x="522.2" y="613" width="1.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="525.21" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (151,515,150 samples, 0.49%)</title><rect x="47.8" y="965" width="6.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="50.79" y="975.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="368.3" y="741" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="371.32" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.03%)</title><rect x="382.0" y="549" width="0.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="384.98" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="218.5" y="661" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="221.53" y="671.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (20,202,020 samples, 0.07%)</title><rect x="108.3" y="661" width="1.0" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="111.34" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="268.2" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="271.15" y="799.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_free_hook (10,101,010 samples, 0.03%)</title><rect x="280.0" y="741" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="282.99" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (242,424,240 samples, 0.79%)</title><rect x="605.1" y="789" width="10.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="608.07" y="799.5" ></text>
+</g>
+<g >
+<title>readdir64 (30,303,030 samples, 0.10%)</title><rect x="339.2" y="837" width="1.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="342.18" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (10,101,010 samples, 0.03%)</title><rect x="462.1" y="517" width="0.5" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="465.11" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (90,909,090 samples, 0.30%)</title><rect x="142.5" y="709" width="4.1" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="145.49" y="719.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="137.5" y="661" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="140.48" y="671.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (20,202,020 samples, 0.07%)</title><rect x="580.9" y="677" width="1.0" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="583.94" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (151,515,150 samples, 0.49%)</title><rect x="416.1" y="741" width="6.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="419.12" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.03%)</title><rect x="330.5" y="661" width="0.5" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="333.53" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="652.0" y="741" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="654.97" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_read_inode_bitmap (10,101,010 samples, 0.03%)</title><rect x="203.0" y="645" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="206.05" y="655.5" ></text>
+</g>
+<g >
+<title>free_page_and_swap_cache (10,101,010 samples, 0.03%)</title><rect x="1346.7" y="821" width="0.5" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1349.75" y="831.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="624.2" y="645" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="627.19" y="655.5" ></text>
+</g>
+<g >
+<title>filemap_flush (60,606,060 samples, 0.20%)</title><rect x="610.5" y="645" width="2.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="613.53" y="655.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.07%)</title><rect x="578.2" y="869" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="581.21" y="879.5" ></text>
+</g>
+<g >
+<title>inflate (40,404,040 samples, 0.13%)</title><rect x="290.5" y="757" width="1.8" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="293.46" y="767.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="630.6" y="581" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="633.57" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="250.9" y="773" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="253.85" y="783.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="445.7" y="645" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="448.72" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="303.2" y="789" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="306.21" y="799.5" ></text>
+</g>
+<g >
+<title>realpath (50,505,050 samples, 0.16%)</title><rect x="263.6" y="821" width="2.3" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="266.60" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="536.3" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="539.32" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="411.6" y="805" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="414.57" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="73.3" y="805" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="76.29" y="815.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.07%)</title><rect x="483.1" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="486.05" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="566.8" y="597" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="569.83" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.07%)</title><rect x="166.2" y="549" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="169.17" y="559.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="596.0" y="437" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="598.97" y="447.5" ></text>
+</g>
+<g >
+<title>sd_setup_read_write_cmnd (10,101,010 samples, 0.03%)</title><rect x="552.7" y="325" width="0.5" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="555.71" y="335.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.07%)</title><rect x="464.4" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="467.38" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.07%)</title><rect x="350.6" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="353.56" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (30,303,030 samples, 0.10%)</title><rect x="591.9" y="597" width="1.3" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="594.87" y="607.5" ></text>
+</g>
+<g >
+<title>evict (323,232,320 samples, 1.06%)</title><rect x="159.8" y="661" width="14.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="162.79" y="671.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.03%)</title><rect x="116.1" y="693" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="119.08" y="703.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="602.8" y="741" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="605.79" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_check_dir_entry (20,202,020 samples, 0.07%)</title><rect x="74.7" y="805" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="77.65" y="815.5" ></text>
+</g>
+<g >
+<title>dput (20,202,020 samples, 0.07%)</title><rect x="84.7" y="885" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="87.67" y="895.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (40,404,040 samples, 0.13%)</title><rect x="248.1" y="677" width="1.8" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="251.12" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="392.4" y="709" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="395.45" y="719.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.03%)</title><rect x="303.2" y="837" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="306.21" y="847.5" ></text>
+</g>
+<g >
+<title>git_error_set (10,101,010 samples, 0.03%)</title><rect x="534.0" y="773" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="537.04" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (90,909,090 samples, 0.30%)</title><rect x="133.4" y="661" width="4.1" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="136.39" y="671.5" ></text>
+</g>
+<g >
+<title>ip_local_out (30,303,030 samples, 0.10%)</title><rect x="1380.0" y="677" width="1.3" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1382.98" y="687.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.03%)</title><rect x="260.4" y="709" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="263.41" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (30,303,030 samples, 0.10%)</title><rect x="671.1" y="677" width="1.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="674.09" y="687.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (333,333,330 samples, 1.09%)</title><rect x="994.3" y="773" width="15.1" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="997.35" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.03%)</title><rect x="575.0" y="709" width="0.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="578.02" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (20,202,020 samples, 0.07%)</title><rect x="100.1" y="581" width="1.0" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="103.15" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="372.4" y="693" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="375.42" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="526.3" y="805" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="529.30" y="815.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.03%)</title><rect x="244.9" y="677" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="247.93" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="685.7" y="741" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="688.66" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="237.2" y="933" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="240.19" y="943.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="585.9" y="645" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="588.95" y="655.5" ></text>
+</g>
+<g >
+<title>new_inode (10,101,010 samples, 0.03%)</title><rect x="557.7" y="709" width="0.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="560.72" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_brk (20,202,020 samples, 0.07%)</title><rect x="1367.2" y="789" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1370.24" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (20,202,020 samples, 0.07%)</title><rect x="192.1" y="789" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="195.12" y="799.5" ></text>
+</g>
+<g >
+<title>git_odb_backend_pack (50,505,050 samples, 0.16%)</title><rect x="467.6" y="853" width="2.2" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="470.57" y="863.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="370.1" y="597" width="0.5" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="373.14" y="607.5" ></text>
+</g>
+<g >
+<title>process_backlog (10,101,010 samples, 0.03%)</title><rect x="11.8" y="501" width="0.5" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="14.82" y="511.5" ></text>
+</g>
+<g >
+<title>d_lru_add (10,101,010 samples, 0.03%)</title><rect x="683.4" y="805" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="686.38" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="643.8" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="646.77" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.03%)</title><rect x="279.1" y="677" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="282.08" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.07%)</title><rect x="155.2" y="645" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="158.24" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="494.9" y="709" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="497.89" y="719.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="92.0" y="837" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="94.95" y="847.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="222.6" y="661" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="225.62" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="679.3" y="725" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="682.28" y="735.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="13.6" y="837" width="0.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="16.64" y="847.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="438.0" y="597" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="440.98" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_file_open (10,101,010 samples, 0.03%)</title><rect x="405.7" y="549" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="408.65" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (30,303,030 samples, 0.10%)</title><rect x="53.3" y="837" width="1.3" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="56.25" y="847.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.03%)</title><rect x="154.8" y="581" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="157.78" y="591.5" ></text>
+</g>
+<g >
+<title>__rq_qos_issue (10,101,010 samples, 0.03%)</title><rect x="364.2" y="357" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="367.22" y="367.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="413.4" y="677" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="416.39" y="687.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.03%)</title><rect x="468.0" y="725" width="0.5" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="471.03" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (20,202,020 samples, 0.07%)</title><rect x="312.3" y="629" width="0.9" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="315.32" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="469.8" y="837" width="1.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="472.85" y="847.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.03%)</title><rect x="1044.4" y="949" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1047.43" y="959.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (20,202,020 samples, 0.07%)</title><rect x="580.9" y="629" width="1.0" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="583.94" y="639.5" ></text>
+</g>
+<g >
+<title>mm_init (10,101,010 samples, 0.03%)</title><rect x="717.5" y="773" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="720.53" y="783.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="260.4" y="693" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="263.41" y="703.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (10,101,010 samples, 0.03%)</title><rect x="312.8" y="581" width="0.4" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="315.77" y="591.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="290.0" y="709" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="293.01" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_statx (50,505,050 samples, 0.16%)</title><rect x="521.3" y="661" width="2.3" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="524.30" y="671.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="423.9" y="581" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="426.86" y="591.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="47.3" y="1029" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="50.33" y="1039.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="417.0" y="661" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="420.03" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="636.9" y="821" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="639.94" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (646,464,640 samples, 2.11%)</title><rect x="148.9" y="773" width="29.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="151.87" y="783.5" >en..</text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="282.7" y="773" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="285.72" y="783.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="504.0" y="629" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="507.00" y="639.5" ></text>
+</g>
+<g >
+<title>unlink_cb (20,202,020 samples, 0.07%)</title><rect x="100.1" y="741" width="1.0" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="103.15" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (10,101,010 samples, 0.03%)</title><rect x="127.0" y="661" width="0.5" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="130.01" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="529.9" y="837" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="532.95" y="847.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (10,101,010 samples, 0.03%)</title><rect x="1042.2" y="661" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1045.15" y="671.5" ></text>
+</g>
+<g >
+<title>__fsnotify_inode_delete (10,101,010 samples, 0.03%)</title><rect x="151.6" y="661" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="154.60" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="533.1" y="853" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="536.13" y="863.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.07%)</title><rect x="341.9" y="693" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="344.91" y="703.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="596.0" y="421" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="598.97" y="431.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="627.4" y="581" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="630.38" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="585.0" y="821" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="588.04" y="831.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="653.8" y="597" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="656.79" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.13%)</title><rect x="171.2" y="485" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="174.17" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="510.8" y="549" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="513.82" y="559.5" ></text>
+</g>
+<g >
+<title>vma_alloc_folio (70,707,070 samples, 0.23%)</title><rect x="1339.9" y="821" width="3.2" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1342.92" y="831.5" ></text>
+</g>
+<g >
+<title>dget_parent (10,101,010 samples, 0.03%)</title><rect x="282.7" y="565" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="285.72" y="575.5" ></text>
+</g>
+<g >
+<title>wake_up_process (10,101,010 samples, 0.03%)</title><rect x="601.0" y="549" width="0.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="603.97" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="296.4" y="709" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="299.38" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.07%)</title><rect x="241.7" y="613" width="1.0" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="244.75" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="672.9" y="821" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="675.91" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.07%)</title><rect x="209.0" y="533" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="211.96" y="543.5" ></text>
+</g>
+<g >
+<title>ipv4_conntrack_local (30,303,030 samples, 0.10%)</title><rect x="1038.5" y="709" width="1.4" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1041.51" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="253.1" y="725" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="256.13" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="445.3" y="805" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="448.26" y="815.5" ></text>
+</g>
+<g >
+<title>security_d_instantiate (10,101,010 samples, 0.03%)</title><rect x="72.4" y="837" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="75.38" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (353,535,350 samples, 1.15%)</title><rect x="100.1" y="789" width="16.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="103.15" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (646,464,640 samples, 2.11%)</title><rect x="148.9" y="757" width="29.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="151.87" y="767.5" >do..</text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (30,303,030 samples, 0.10%)</title><rect x="317.3" y="565" width="1.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="320.32" y="575.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.03%)</title><rect x="181.2" y="709" width="0.4" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="184.19" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_bread (161,616,160 samples, 0.53%)</title><rect x="626.9" y="709" width="7.3" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="629.93" y="719.5" ></text>
+</g>
+<g >
+<title>mktime (10,101,010 samples, 0.03%)</title><rect x="438.4" y="805" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="441.43" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="362.9" y="645" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="365.85" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.03%)</title><rect x="269.1" y="709" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="272.06" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (10,101,010 samples, 0.03%)</title><rect x="161.2" y="613" width="0.4" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="164.16" y="623.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.03%)</title><rect x="97.9" y="789" width="0.4" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="100.87" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (424,242,420 samples, 1.39%)</title><rect x="254.5" y="885" width="19.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="257.49" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="437.1" y="565" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="440.07" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="427.5" y="725" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="430.51" y="735.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.03%)</title><rect x="683.8" y="773" width="0.5" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="686.84" y="783.5" ></text>
+</g>
+<g >
+<title>napi_consume_skb (40,404,040 samples, 0.13%)</title><rect x="1387.7" y="565" width="1.8" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1390.72" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="661.5" y="741" width="1.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="664.53" y="751.5" ></text>
+</g>
+<g >
+<title>perf_iterate_sb.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="1367.7" y="709" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1370.69" y="719.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="382.4" y="597" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="385.43" y="607.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="545.9" y="501" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="548.88" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (90,909,090 samples, 0.30%)</title><rect x="275.4" y="725" width="4.1" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="278.44" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="364.7" y="501" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="367.68" y="511.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.03%)</title><rect x="285.9" y="645" width="0.5" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="288.91" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="379.7" y="613" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="382.70" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (40,404,040 samples, 0.13%)</title><rect x="420.2" y="597" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="423.22" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (30,303,030 samples, 0.10%)</title><rect x="122.0" y="549" width="1.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="125.00" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="495.8" y="709" width="1.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="498.80" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.03%)</title><rect x="278.6" y="661" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="281.62" y="671.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="263.1" y="629" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="266.14" y="639.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (30,303,030 samples, 0.10%)</title><rect x="623.7" y="725" width="1.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="626.74" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="658.3" y="725" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="661.34" y="735.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.03%)</title><rect x="641.9" y="757" width="0.5" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="644.95" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (20,202,020 samples, 0.07%)</title><rect x="161.6" y="549" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="164.61" y="559.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="504.9" y="661" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="507.91" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="668.4" y="597" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="671.36" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="116.5" y="677" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="119.54" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="666.5" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="669.54" y="799.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (80,808,080 samples, 0.26%)</title><rect x="1385.9" y="725" width="3.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1388.90" y="735.5" ></text>
+</g>
+<g >
+<title>napi_consume_skb (10,101,010 samples, 0.03%)</title><rect x="1380.9" y="485" width="0.4" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1383.89" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="546.8" y="549" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="549.79" y="559.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (10,101,010 samples, 0.03%)</title><rect x="1364.5" y="741" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1367.50" y="751.5" ></text>
+</g>
+<g >
+<title>__es_remove_extent (10,101,010 samples, 0.03%)</title><rect x="236.7" y="677" width="0.5" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="239.74" y="687.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="286.4" y="677" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="289.36" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="539.1" y="773" width="1.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="542.05" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="480.3" y="709" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="483.32" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (20,202,020 samples, 0.07%)</title><rect x="567.7" y="645" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="570.74" y="655.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.03%)</title><rect x="999.4" y="725" width="0.4" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1002.36" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_rename (131,313,130 samples, 0.43%)</title><rect x="610.1" y="709" width="5.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="613.08" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="414.3" y="629" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="417.30" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="107.0" y="373" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="109.98" y="383.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="626.5" y="613" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="629.47" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="301.8" y="821" width="1.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="304.84" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="424.3" y="661" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="427.32" y="671.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="757" width="1.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1378.43" y="767.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="752.1" y="549" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="755.13" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="260.0" y="725" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="262.96" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="466.2" y="709" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="469.21" y="719.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="519.5" y="613" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="522.48" y="623.5" ></text>
+</g>
+<g >
+<title>may_linkat (10,101,010 samples, 0.03%)</title><rect x="388.8" y="709" width="0.5" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="391.81" y="719.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.03%)</title><rect x="490.3" y="709" width="0.5" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="493.34" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="579.6" y="757" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="582.57" y="767.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.03%)</title><rect x="624.2" y="533" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="627.19" y="543.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.07%)</title><rect x="603.2" y="805" width="1.0" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="606.25" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="331.0" y="597" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="333.98" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.10%)</title><rect x="370.6" y="821" width="1.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="373.59" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="414.3" y="597" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="417.30" y="607.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (353,535,350 samples, 1.15%)</title><rect x="540.9" y="853" width="15.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="543.87" y="863.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="22.7" y="565" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="25.75" y="575.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.03%)</title><rect x="662.4" y="645" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="665.44" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.20%)</title><rect x="36.0" y="901" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="38.95" y="911.5" ></text>
+</g>
+<g >
+<title>_dl_allocate_tls_init (10,101,010 samples, 0.03%)</title><rect x="35.0" y="901" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="38.04" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="645.6" y="837" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="648.59" y="847.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.03%)</title><rect x="519.5" y="645" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="522.48" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_ack (10,101,010 samples, 0.03%)</title><rect x="1379.5" y="725" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1382.53" y="735.5" ></text>
+</g>
+<g >
+<title>net_rx_action (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="485" width="3.2" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1038.32" y="495.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="185.7" y="645" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="188.74" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.03%)</title><rect x="383.3" y="565" width="0.5" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="386.34" y="575.5" ></text>
+</g>
+<g >
+<title>start_this_handle (20,202,020 samples, 0.07%)</title><rect x="565.0" y="629" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="568.00" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_link (40,404,040 samples, 0.13%)</title><rect x="330.1" y="709" width="1.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="333.07" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.07%)</title><rect x="436.2" y="501" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="439.16" y="511.5" ></text>
+</g>
+<g >
+<title>do_writepages (10,101,010 samples, 0.03%)</title><rect x="501.3" y="629" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="504.26" y="639.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.03%)</title><rect x="602.8" y="709" width="0.4" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="605.79" y="719.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="557.3" y="645" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="560.26" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="371.5" y="773" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="374.50" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.10%)</title><rect x="257.7" y="629" width="1.3" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="260.68" y="639.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="261.8" y="709" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="264.78" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.03%)</title><rect x="66.9" y="853" width="0.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="69.91" y="863.5" ></text>
+</g>
+<g >
+<title>readdir64 (10,101,010 samples, 0.03%)</title><rect x="234.5" y="917" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="237.46" y="927.5" ></text>
+</g>
+<g >
+<title>loopback_xmit (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="85" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1030.58" y="95.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (606,060,600 samples, 1.98%)</title><rect x="502.6" y="837" width="27.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="505.63" y="847.5" >[..</text>
+</g>
+<g >
+<title>security_path_unlink (10,101,010 samples, 0.03%)</title><rect x="115.6" y="661" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="118.63" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="599.6" y="741" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="602.61" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="295.5" y="869" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="298.47" y="879.5" ></text>
+</g>
+<g >
+<title>_copy_from_iter (10,101,010 samples, 0.03%)</title><rect x="1018.0" y="773" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1021.02" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="451.6" y="469" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="454.64" y="479.5" ></text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.07%)</title><rect x="132.0" y="677" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="135.02" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="123.8" y="549" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="126.82" y="559.5" ></text>
+</g>
+<g >
+<title>libjson_free (272,727,270 samples, 0.89%)</title><rect x="758.1" y="981" width="12.2" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="761.05" y="991.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="422.5" y="693" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="425.50" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="230.8" y="709" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="233.82" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_desc (10,101,010 samples, 0.03%)</title><rect x="298.2" y="517" width="0.5" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="301.20" y="527.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (50,505,050 samples, 0.16%)</title><rect x="983.0" y="837" width="2.2" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="985.97" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="392.4" y="645" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="395.45" y="655.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (40,404,040 samples, 0.13%)</title><rect x="82.8" y="901" width="1.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="85.85" y="911.5" ></text>
+</g>
+<g >
+<title>json_object_put (272,727,270 samples, 0.89%)</title><rect x="758.1" y="965" width="12.2" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="761.05" y="975.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.03%)</title><rect x="686.6" y="677" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="689.57" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="262.7" y="757" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="265.69" y="767.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="653.8" y="645" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="656.79" y="655.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="53.3" y="805" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="56.25" y="815.5" ></text>
+</g>
+<g >
+<title>fscrypt_match_name (10,101,010 samples, 0.03%)</title><rect x="614.6" y="597" width="0.5" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="617.63" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="529.9" y="789" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="532.95" y="799.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="209.0" y="549" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="211.96" y="559.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="917" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1046.98" y="927.5" ></text>
+</g>
+<g >
+<title>__do_softirq (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="533" width="4.1" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1029.22" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="542.2" y="741" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="545.24" y="751.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="752.1" y="709" width="0.5" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="755.13" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="382.4" y="629" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="385.43" y="639.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="570.0" y="741" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="573.01" y="751.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="128.4" y="725" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="131.38" y="735.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="499.9" y="677" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="502.90" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="529.9" y="757" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="532.95" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_link (50,505,050 samples, 0.16%)</title><rect x="329.6" y="725" width="2.3" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="332.62" y="735.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.3.0] (5,313,131,260 samples, 17.35%)</title><rect x="771.7" y="885" width="239.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="774.71" y="895.5" >[libjson-c.so.5.3.0]</text>
+</g>
+<g >
+<title>fscrypt_file_open (10,101,010 samples, 0.03%)</title><rect x="405.7" y="533" width="0.4" height="15.0" fill="rgb(0,198,33)" rx="2" ry="2" />
+<text x="408.65" y="543.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="655.2" y="645" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="658.15" y="655.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.03%)</title><rect x="101.1" y="677" width="0.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="104.06" y="687.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="627.4" y="597" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="630.38" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.03%)</title><rect x="341.9" y="661" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="344.91" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.03%)</title><rect x="697.0" y="613" width="0.5" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="700.04" y="623.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="473.5" y="629" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="476.49" y="639.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct (10,101,010 samples, 0.03%)</title><rect x="553.2" y="501" width="0.4" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="556.17" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="659.3" y="661" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="662.25" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="71.0" y="805" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="74.01" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="623.7" y="709" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="626.74" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="402.5" y="645" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="405.46" y="655.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (20,202,020 samples, 0.07%)</title><rect x="314.6" y="613" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="317.59" y="623.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (10,101,010 samples, 0.03%)</title><rect x="552.7" y="453" width="0.5" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="555.71" y="463.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="752.1" y="677" width="0.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="755.13" y="687.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="636.9" y="741" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="639.94" y="751.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.03%)</title><rect x="637.4" y="885" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="640.40" y="895.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="376.1" y="645" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="379.06" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="599.2" y="805" width="4.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="602.15" y="815.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="244.9" y="725" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="247.93" y="735.5" ></text>
+</g>
+<g >
+<title>folio_add_lru_vma (10,101,010 samples, 0.03%)</title><rect x="1365.0" y="805" width="0.4" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1367.96" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="266.3" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="269.33" y="783.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (20,202,020 samples, 0.07%)</title><rect x="1346.7" y="917" width="1.0" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1349.75" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (30,303,030 samples, 0.10%)</title><rect x="450.7" y="533" width="1.4" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="453.73" y="543.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (70,707,070 samples, 0.23%)</title><rect x="714.3" y="741" width="3.2" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="717.34" y="751.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="345.6" y="725" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="348.55" y="735.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (30,303,030 samples, 0.10%)</title><rect x="25.0" y="581" width="1.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="28.02" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (606,060,600 samples, 1.98%)</title><rect x="100.1" y="805" width="27.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="103.15" y="815.5" >[..</text>
+</g>
+<g >
+<title>truncate_inode_pages_range (10,101,010 samples, 0.03%)</title><rect x="448.0" y="613" width="0.4" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="450.99" y="623.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="114.3" y="549" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="117.26" y="559.5" ></text>
+</g>
+<g >
+<title>ip_local_out (10,101,010 samples, 0.03%)</title><rect x="11.8" y="245" width="0.5" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="14.82" y="255.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="136.6" y="597" width="0.4" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="139.57" y="607.5" ></text>
+</g>
+<g >
+<title>mas_wr_store_entry.isra.0 (10,101,010 samples, 0.03%)</title><rect x="759.4" y="709" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="762.42" y="719.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.03%)</title><rect x="112.4" y="565" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="115.44" y="575.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (343,434,340 samples, 1.12%)</title><rect x="62.4" y="917" width="15.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="65.36" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="668.4" y="629" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="671.36" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (20,202,020 samples, 0.07%)</title><rect x="567.7" y="613" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="570.74" y="623.5" ></text>
+</g>
+<g >
+<title>opendir (30,303,030 samples, 0.10%)</title><rect x="478.5" y="757" width="1.4" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="481.50" y="767.5" ></text>
+</g>
+<g >
+<title>from_kuid (10,101,010 samples, 0.03%)</title><rect x="615.5" y="597" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="618.54" y="607.5" ></text>
+</g>
+<g >
+<title>__folio_start_writeback (10,101,010 samples, 0.03%)</title><rect x="366.5" y="485" width="0.5" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="369.50" y="495.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="575.0" y="597" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="578.02" y="607.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="224.9" y="693" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="227.90" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.10%)</title><rect x="63.7" y="853" width="1.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="66.72" y="863.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="649.2" y="629" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="652.23" y="639.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="368.3" y="773" width="0.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="371.32" y="783.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="680.2" y="613" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="683.19" y="623.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (20,202,020 samples, 0.07%)</title><rect x="428.9" y="517" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="431.87" y="527.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (20,202,020 samples, 0.07%)</title><rect x="757.1" y="885" width="1.0" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="760.14" y="895.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="385.6" y="693" width="0.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="388.62" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="634.2" y="661" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="637.21" y="671.5" ></text>
+</g>
+<g >
+<title>should_failslab.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="585.5" y="581" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="588.49" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_empty_dir (20,202,020 samples, 0.07%)</title><rect x="156.6" y="661" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="159.61" y="671.5" ></text>
+</g>
+<g >
+<title>log_entry_start (50,505,050 samples, 0.16%)</title><rect x="12.3" y="1029" width="2.3" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="15.28" y="1039.5" ></text>
+</g>
+<g >
+<title>__napi_poll (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="485" width="1.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1378.43" y="495.5" ></text>
+</g>
+<g >
+<title>unlink (171,717,170 samples, 0.56%)</title><rect x="130.2" y="773" width="7.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="133.20" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="548.2" y="517" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="551.16" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="755.8" y="933" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="758.77" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="451.6" y="453" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="454.64" y="463.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.03%)</title><rect x="134.8" y="549" width="0.4" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="137.75" y="559.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="272.3" y="645" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="275.25" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (50,505,050 samples, 0.16%)</title><rect x="434.8" y="549" width="2.3" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="437.79" y="559.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="134.8" y="565" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="137.75" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.13%)</title><rect x="346.5" y="725" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="349.46" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="256.8" y="661" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="259.77" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="388.8" y="757" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="391.81" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.07%)</title><rect x="100.1" y="757" width="1.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="103.15" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.07%)</title><rect x="53.7" y="821" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="56.71" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="384.7" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="387.71" y="687.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="110.6" y="597" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="113.62" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="660.6" y="725" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="663.62" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="427.5" y="645" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="430.51" y="655.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.07%)</title><rect x="662.0" y="661" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="664.98" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="428.4" y="741" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="431.42" y="751.5" ></text>
+</g>
+<g >
+<title>d_lookup (10,101,010 samples, 0.03%)</title><rect x="593.7" y="661" width="0.4" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="596.69" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="468.5" y="725" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="471.48" y="735.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.03%)</title><rect x="364.2" y="453" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="367.22" y="463.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="96.1" y="837" width="0.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="99.05" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="427.5" y="741" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="430.51" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_generic_delete_entry (10,101,010 samples, 0.03%)</title><rect x="501.7" y="677" width="0.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="504.72" y="687.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (50,505,050 samples, 0.16%)</title><rect x="24.1" y="693" width="2.3" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="27.11" y="703.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="600.1" y="741" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="603.06" y="751.5" ></text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.03%)</title><rect x="242.2" y="549" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="245.20" y="559.5" ></text>
+</g>
+<g >
+<title>perf_event_mmap_event (10,101,010 samples, 0.03%)</title><rect x="1367.7" y="725" width="0.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="1370.69" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="152.5" y="661" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="155.51" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (272,727,270 samples, 0.89%)</title><rect x="441.2" y="869" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="444.16" y="879.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="757" width="1.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1033.32" y="767.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="542.7" y="677" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="545.70" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_release_dir (10,101,010 samples, 0.03%)</title><rect x="101.1" y="645" width="0.4" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="104.06" y="655.5" ></text>
+</g>
+<g >
+<title>from_kuid (10,101,010 samples, 0.03%)</title><rect x="380.6" y="533" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="383.61" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="643.8" y="757" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="646.77" y="767.5" ></text>
+</g>
+<g >
+<title>__fsnotify_inode_delete (10,101,010 samples, 0.03%)</title><rect x="114.7" y="597" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="117.72" y="607.5" ></text>
+</g>
+<g >
+<title>__napi_poll (40,404,040 samples, 0.13%)</title><rect x="1013.0" y="437" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1016.02" y="447.5" ></text>
+</g>
+<g >
+<title>__sbrk (272,727,270 samples, 0.89%)</title><rect x="758.1" y="885" width="12.2" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="761.05" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (40,404,040 samples, 0.13%)</title><rect x="106.1" y="485" width="1.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="109.07" y="495.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="316.4" y="565" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="319.41" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (20,202,020 samples, 0.07%)</title><rect x="395.6" y="565" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="398.64" y="575.5" ></text>
+</g>
+<g >
+<title>worker_main (28,929,292,640 samples, 94.49%)</title><rect x="86.0" y="1029" width="1304.0" height="15.0" fill="rgb(0,212,96)" rx="2" ry="2" />
+<text x="89.03" y="1039.5" >worker_main</text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.03%)</title><rect x="423.4" y="661" width="0.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="426.41" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="109.3" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="112.25" y="751.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="496.3" y="597" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="499.26" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.03%)</title><rect x="103.3" y="645" width="0.5" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="106.34" y="655.5" ></text>
+</g>
+<g >
+<title>git_refdb_backend_fs (30,303,030 samples, 0.10%)</title><rect x="480.3" y="805" width="1.4" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="483.32" y="815.5" ></text>
+</g>
+<g >
+<title>evict (90,909,090 samples, 0.30%)</title><rect x="605.1" y="645" width="4.1" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="608.07" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="505.8" y="709" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="508.82" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (70,707,070 samples, 0.23%)</title><rect x="552.3" y="645" width="3.1" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="555.26" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="257.2" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="260.23" y="719.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="649.7" y="725" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="652.69" y="735.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.3.0] (4,757,575,710 samples, 15.54%)</title><rect x="771.7" y="869" width="214.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="774.71" y="879.5" >[libjson-c.so.5.3.0]</text>
+</g>
+<g >
+<title>rw_verify_area (10,101,010 samples, 0.03%)</title><rect x="303.2" y="725" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="306.21" y="735.5" ></text>
+</g>
+<g >
+<title>__do_wait (20,202,020 samples, 0.07%)</title><rect x="754.0" y="789" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="756.95" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="600.5" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="603.52" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="479.9" y="709" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="482.86" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (111,111,110 samples, 0.36%)</title><rect x="683.4" y="853" width="5.0" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="686.38" y="863.5" ></text>
+</g>
+<g >
+<title>is_vmalloc_addr (10,101,010 samples, 0.03%)</title><rect x="268.6" y="645" width="0.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="271.61" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="181.6" y="709" width="0.5" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="184.65" y="719.5" ></text>
+</g>
+<g >
+<title>__es_remove_extent (10,101,010 samples, 0.03%)</title><rect x="596.0" y="485" width="0.4" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="598.97" y="495.5" ></text>
+</g>
+<g >
+<title>do_rmdir (393,939,390 samples, 1.29%)</title><rect x="196.2" y="741" width="17.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="199.22" y="751.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (30,303,030 samples, 0.10%)</title><rect x="25.0" y="501" width="1.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="28.02" y="511.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (10,101,010 samples, 0.03%)</title><rect x="552.7" y="501" width="0.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="555.71" y="511.5" ></text>
+</g>
+<g >
+<title>json_tokener_parse_ex (30,303,030 samples, 0.10%)</title><rect x="1372.7" y="885" width="1.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1375.70" y="895.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_state (10,101,010 samples, 0.03%)</title><rect x="1364.5" y="757" width="0.5" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1367.50" y="767.5" ></text>
+</g>
+<g >
+<title>zap_pte_range (101,010,100 samples, 0.33%)</title><rect x="765.3" y="677" width="4.6" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="768.33" y="687.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="710.2" y="677" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="713.24" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="140.7" y="757" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="143.67" y="767.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_try_merge (10,101,010 samples, 0.03%)</title><rect x="553.2" y="389" width="0.4" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="556.17" y="399.5" ></text>
+</g>
+<g >
+<title>rcu_core (20,202,020 samples, 0.07%)</title><rect x="1346.7" y="869" width="1.0" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1349.75" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_validate_inode_bitmap (10,101,010 samples, 0.03%)</title><rect x="203.5" y="645" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="206.50" y="655.5" ></text>
+</g>
+<g >
+<title>_compound_head (10,101,010 samples, 0.03%)</title><rect x="649.7" y="629" width="0.4" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="652.69" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (696,969,690 samples, 2.28%)</title><rect x="688.4" y="901" width="31.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="691.39" y="911.5" >en..</text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="627.4" y="661" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="630.38" y="671.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="407.5" y="613" width="0.4" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="410.47" y="623.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="482.6" y="773" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="485.60" y="783.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="273.6" y="885" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="276.62" y="895.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="527.7" y="613" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="530.67" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="489.9" y="629" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="492.88" y="639.5" ></text>
+</g>
+<g >
+<title>getdents64 (10,101,010 samples, 0.03%)</title><rect x="476.2" y="725" width="0.5" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="479.22" y="735.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.3.0] (5,323,232,270 samples, 17.39%)</title><rect x="771.7" y="917" width="239.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="774.71" y="927.5" >[libjson-c.so.5.3.0]</text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="274.1" y="789" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="277.07" y="799.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="453" width="1.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1033.32" y="463.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="119.3" y="645" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="122.27" y="655.5" ></text>
+</g>
+<g >
+<title>filemap_release_folio (10,101,010 samples, 0.03%)</title><rect x="361.0" y="533" width="0.5" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="364.03" y="543.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (151,515,150 samples, 0.49%)</title><rect x="416.1" y="757" width="6.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="419.12" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_getattr (10,101,010 samples, 0.03%)</title><rect x="140.7" y="677" width="0.4" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="143.67" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.03%)</title><rect x="233.1" y="725" width="0.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="236.09" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.10%)</title><rect x="680.6" y="901" width="1.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="683.65" y="911.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="649.2" y="645" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="652.23" y="655.5" ></text>
+</g>
+<g >
+<title>lock_vma_under_rcu (10,101,010 samples, 0.03%)</title><rect x="542.2" y="629" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="545.24" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="570.9" y="677" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="573.92" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.03%)</title><rect x="982.5" y="741" width="0.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="985.51" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_readlink (30,303,030 samples, 0.10%)</title><rect x="264.5" y="741" width="1.4" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="267.51" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (20,202,020 samples, 0.07%)</title><rect x="613.3" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="616.27" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="660.6" y="645" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="663.62" y="655.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="609.2" y="629" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="612.17" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="394.3" y="645" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="397.27" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_send_fin (40,404,040 samples, 0.13%)</title><rect x="1380.0" y="773" width="1.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1382.98" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.03%)</title><rect x="346.0" y="709" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="349.01" y="719.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (10,101,010 samples, 0.03%)</title><rect x="1031.7" y="757" width="0.4" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1034.68" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (50,505,050 samples, 0.16%)</title><rect x="581.9" y="661" width="2.2" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="584.85" y="671.5" ></text>
+</g>
+<g >
+<title>kfree_skbmem (10,101,010 samples, 0.03%)</title><rect x="10.9" y="709" width="0.5" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="13.91" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="226.7" y="693" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="229.72" y="703.5" ></text>
+</g>
+<g >
+<title>__next_zones_zonelist (10,101,010 samples, 0.03%)</title><rect x="455.3" y="549" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="458.28" y="559.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (10,101,010 samples, 0.03%)</title><rect x="443.9" y="613" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="446.90" y="623.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.07%)</title><rect x="472.1" y="645" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="475.12" y="655.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.03%)</title><rect x="303.2" y="853" width="0.5" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="306.21" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="230.4" y="725" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="233.36" y="735.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.03%)</title><rect x="1041.7" y="485" width="0.5" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1044.70" y="495.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.03%)</title><rect x="542.2" y="725" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="545.24" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="556.8" y="805" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="559.81" y="815.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (60,606,060 samples, 0.20%)</title><rect x="499.9" y="757" width="2.7" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="502.90" y="767.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="469.4" y="629" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="472.39" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="115.2" y="581" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="118.17" y="591.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="1044.4" y="789" width="0.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1047.43" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="295.9" y="837" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="298.93" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="494.9" y="725" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="497.89" y="735.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="708.0" y="661" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="710.97" y="671.5" ></text>
+</g>
+<g >
+<title>file_close (111,111,110 samples, 0.36%)</title><rect x="22.3" y="933" width="5.0" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="25.29" y="943.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.03%)</title><rect x="558.2" y="709" width="0.4" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="561.18" y="719.5" ></text>
+</g>
+<g >
+<title>memcpy@plt (10,101,010 samples, 0.03%)</title><rect x="586.9" y="757" width="0.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="589.86" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (20,202,020 samples, 0.07%)</title><rect x="351.5" y="741" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="354.47" y="751.5" ></text>
+</g>
+<g >
+<title>__rmqueue_pcplist (10,101,010 samples, 0.03%)</title><rect x="1342.2" y="741" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1345.19" y="751.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (40,404,040 samples, 0.13%)</title><rect x="1377.3" y="981" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1380.25" y="991.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="479.9" y="661" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="482.86" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (343,434,340 samples, 1.12%)</title><rect x="305.5" y="821" width="15.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="308.49" y="831.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="546.8" y="421" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="549.79" y="431.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.03%)</title><rect x="512.2" y="597" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="515.19" y="607.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="166.2" y="469" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="169.17" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="375.1" y="693" width="1.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="378.15" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.03%)</title><rect x="577.3" y="661" width="0.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="580.30" y="671.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="752.1" y="757" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="755.13" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="468.9" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="471.94" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (131,313,130 samples, 0.43%)</title><rect x="361.9" y="693" width="6.0" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="364.94" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="423.9" y="725" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="426.86" y="735.5" ></text>
+</g>
+<g >
+<title>__dquot_free_space (10,101,010 samples, 0.03%)</title><rect x="170.7" y="517" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="173.72" y="527.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.03%)</title><rect x="470.8" y="773" width="0.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="473.76" y="783.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.03%)</title><rect x="483.1" y="629" width="0.4" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="486.05" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (131,313,130 samples, 0.43%)</title><rect x="110.2" y="709" width="5.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="113.16" y="719.5" ></text>
+</g>
+<g >
+<title>lock_vma_under_rcu (20,202,020 samples, 0.07%)</title><rect x="1366.3" y="853" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1369.32" y="863.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="623.3" y="661" width="0.4" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="626.28" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.03%)</title><rect x="330.5" y="613" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="333.53" y="623.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.03%)</title><rect x="679.7" y="613" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="682.74" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_server_accept (222,222,220 samples, 0.73%)</title><rect x="28.7" y="965" width="10.0" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="31.67" y="975.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="698.0" y="693" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="700.95" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (252,525,250 samples, 0.82%)</title><rect x="586.4" y="821" width="11.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="589.40" y="831.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="384.3" y="677" width="0.4" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="387.25" y="687.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.03%)</title><rect x="576.8" y="597" width="0.5" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="579.84" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (30,303,030 samples, 0.10%)</title><rect x="102.4" y="677" width="1.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="105.42" y="687.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="656.1" y="725" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="659.06" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_write (90,909,090 samples, 0.30%)</title><rect x="275.4" y="741" width="4.1" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="278.44" y="751.5" ></text>
+</g>
+<g >
+<title>write (50,505,050 samples, 0.16%)</title><rect x="43.7" y="885" width="2.3" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="46.69" y="895.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="499.9" y="709" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="502.90" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (161,616,160 samples, 0.53%)</title><rect x="184.8" y="773" width="7.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="187.83" y="783.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_destroy (272,727,270 samples, 0.89%)</title><rect x="758.1" y="997" width="12.2" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="761.05" y="1007.5" ></text>
+</g>
+<g >
+<title>truncate_inode_partial_folio (10,101,010 samples, 0.03%)</title><rect x="550.0" y="565" width="0.4" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="552.98" y="575.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (20,202,020 samples, 0.07%)</title><rect x="449.8" y="549" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="452.82" y="559.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="982.5" y="789" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="985.51" y="799.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="274.5" y="757" width="0.5" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="277.53" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="505.8" y="693" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="508.82" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="123.4" y="581" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="126.37" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="272.7" y="613" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="275.71" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="63.3" y="853" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="66.27" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="640.1" y="773" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="643.13" y="783.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.03%)</title><rect x="108.8" y="645" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="111.80" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="434.3" y="629" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="437.34" y="639.5" ></text>
+</g>
+<g >
+<title>release_sock (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="821" width="3.2" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1038.32" y="831.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="274.1" y="725" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="277.07" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.26%)</title><rect x="675.6" y="757" width="3.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="678.64" y="767.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="491.7" y="597" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="494.70" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="455.7" y="757" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="458.73" y="767.5" ></text>
+</g>
+<g >
+<title>git_index_write (80,808,080 samples, 0.26%)</title><rect x="293.2" y="917" width="3.6" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="296.19" y="927.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="406.6" y="693" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="409.56" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.03%)</title><rect x="224.9" y="741" width="0.5" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="227.90" y="751.5" ></text>
+</g>
+<g >
+<title>truncate_inode_partial_folio (10,101,010 samples, 0.03%)</title><rect x="608.7" y="581" width="0.5" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="611.71" y="591.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="661.5" y="661" width="0.5" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="664.53" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.13%)</title><rect x="484.9" y="725" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="487.87" y="735.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="655.2" y="597" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="658.15" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="290.0" y="837" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="293.01" y="847.5" ></text>
+</g>
+<g >
+<title>fdopendir (40,404,040 samples, 0.13%)</title><rect x="139.3" y="821" width="1.8" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="142.30" y="831.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.03%)</title><rect x="340.1" y="549" width="0.4" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="343.09" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="166.2" y="485" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="169.17" y="495.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (20,202,020 samples, 0.07%)</title><rect x="1345.8" y="901" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1348.84" y="911.5" ></text>
+</g>
+<g >
+<title>open64 (30,303,030 samples, 0.10%)</title><rect x="472.1" y="741" width="1.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="475.12" y="751.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="11.8" y="549" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="14.82" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.03%)</title><rect x="752.1" y="581" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="755.13" y="591.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>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="649.7" y="661" width="0.4" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="652.69" y="671.5" ></text>
+</g>
+<g >
+<title>ip_local_out (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="677" width="1.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1378.43" y="687.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (30,303,030 samples, 0.10%)</title><rect x="1375.9" y="405" width="1.4" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1378.89" y="415.5" ></text>
+</g>
+<g >
+<title>mas_dup_alloc.isra.0 (10,101,010 samples, 0.03%)</title><rect x="693.4" y="725" width="0.5" height="15.0" fill="rgb(0,205,63)" rx="2" ry="2" />
+<text x="696.40" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.03%)</title><rect x="462.6" y="661" width="0.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="465.56" y="671.5" ></text>
+</g>
+<g >
+<title>iterate_dir (10,101,010 samples, 0.03%)</title><rect x="476.2" y="645" width="0.5" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="479.22" y="655.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.03%)</title><rect x="664.3" y="693" width="0.4" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="667.26" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="468.0" y="773" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="471.03" y="783.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="624.2" y="597" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="627.19" y="607.5" ></text>
+</g>
+<g >
+<title>skb_page_frag_refill (111,111,110 samples, 0.36%)</title><rect x="1018.5" y="757" width="5.0" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="1021.48" y="767.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="291.8" y="677" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="294.83" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fname_from_fscrypt_name (10,101,010 samples, 0.03%)</title><rect x="235.4" y="757" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="238.37" y="767.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.10%)</title><rect x="518.6" y="661" width="1.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="521.56" y="671.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (111,111,110 samples, 0.36%)</title><rect x="432.5" y="709" width="5.0" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="435.51" y="719.5" ></text>
+</g>
+<g >
+<title>git_repository_index (30,303,030 samples, 0.10%)</title><rect x="300.0" y="933" width="1.4" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="303.02" y="943.5" ></text>
+</g>
+<g >
+<title>read (20,202,020 samples, 0.07%)</title><rect x="375.1" y="709" width="1.0" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="378.15" y="719.5" ></text>
+</g>
+<g >
+<title>__libc_start_main (636,363,630 samples, 2.08%)</title><rect x="17.7" y="1077" width="28.7" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="20.74" y="1087.5" >__..</text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="469.8" y="821" width="1.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="472.85" y="831.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (30,303,030 samples, 0.10%)</title><rect x="1052.6" y="805" width="1.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1055.63" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mb_check_limits (10,101,010 samples, 0.03%)</title><rect x="631.5" y="597" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="634.48" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="1374.1" y="869" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1377.06" y="879.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="1331.7" y="869" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1334.72" y="879.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (141,414,140 samples, 0.46%)</title><rect x="447.1" y="741" width="6.4" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="450.08" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_collect_stats (10,101,010 samples, 0.03%)</title><rect x="249.5" y="517" width="0.4" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="252.49" y="527.5" ></text>
+</g>
+<g >
+<title>readdir64 (10,101,010 samples, 0.03%)</title><rect x="476.2" y="741" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="479.22" y="751.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="621.9" y="661" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="624.92" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="489.9" y="565" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="492.88" y="575.5" ></text>
+</g>
+<g >
+<title>mb_mark_used (10,101,010 samples, 0.03%)</title><rect x="631.5" y="565" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="634.48" y="575.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (50,505,050 samples, 0.16%)</title><rect x="530.9" y="789" width="2.2" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="533.86" y="799.5" ></text>
+</g>
+<g >
+<title>walk_component (60,606,060 samples, 0.20%)</title><rect x="82.8" y="917" width="2.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="85.85" y="927.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="274.1" y="837" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="277.07" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="518.6" y="725" width="1.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="521.56" y="735.5" ></text>
+</g>
+<g >
+<title>__strftime_l (10,101,010 samples, 0.03%)</title><rect x="302.8" y="917" width="0.4" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="305.75" y="927.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (20,202,020 samples, 0.07%)</title><rect x="1345.8" y="949" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1348.84" y="959.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="150.7" y="677" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="153.69" y="687.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.03%)</title><rect x="229.9" y="773" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="232.91" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_da_release_space (10,101,010 samples, 0.03%)</title><rect x="165.7" y="597" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="168.71" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_write (40,404,040 samples, 0.13%)</title><rect x="346.5" y="677" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="349.46" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="430.7" y="565" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="433.69" y="575.5" ></text>
+</g>
+<g >
+<title>rmqueue (10,101,010 samples, 0.03%)</title><rect x="576.8" y="581" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="579.84" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.03%)</title><rect x="193.9" y="661" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="196.94" y="671.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.07%)</title><rect x="477.6" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="480.59" y="607.5" ></text>
+</g>
+<g >
+<title>perf_iterate_ctx (10,101,010 samples, 0.03%)</title><rect x="1367.7" y="693" width="0.4" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1370.69" y="703.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="196.7" y="677" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="199.67" y="687.5" ></text>
+</g>
+<g >
+<title>evict (60,606,060 samples, 0.20%)</title><rect x="105.2" y="597" width="2.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="108.16" y="607.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="499.9" y="725" width="0.5" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="502.90" y="735.5" ></text>
+</g>
+<g >
+<title>tlb_remove_table_rcu (10,101,010 samples, 0.03%)</title><rect x="1022.1" y="549" width="0.5" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1025.12" y="559.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="190.8" y="613" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="193.75" y="623.5" ></text>
+</g>
+<g >
+<title>memcpy@plt (10,101,010 samples, 0.03%)</title><rect x="415.2" y="741" width="0.5" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="418.21" y="751.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="649.7" y="677" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="652.69" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="51.4" y="837" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="54.43" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.03%)</title><rect x="103.3" y="613" width="0.5" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="106.34" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="397.9" y="773" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="400.91" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="102.4" y="693" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="105.42" y="703.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (60,606,060 samples, 0.20%)</title><rect x="287.3" y="901" width="2.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="290.27" y="911.5" ></text>
+</g>
+<g >
+<title>strerror_l (10,101,010 samples, 0.03%)</title><rect x="307.8" y="773" width="0.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="310.76" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="244.5" y="789" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="247.48" y="799.5" ></text>
+</g>
+<g >
+<title>net_rx_action (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="485" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1386.17" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="238.1" y="709" width="0.5" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="241.10" y="719.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (20,202,020 samples, 0.07%)</title><rect x="1345.8" y="933" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1348.84" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.07%)</title><rect x="461.7" y="549" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="464.65" y="559.5" ></text>
+</g>
+<g >
+<title>sysvec_reschedule_ipi (10,101,010 samples, 0.03%)</title><rect x="1333.1" y="917" width="0.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="1336.09" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_fc_track_inode (10,101,010 samples, 0.03%)</title><rect x="509.0" y="597" width="0.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="512.00" y="607.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="253.1" y="661" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="256.13" y="671.5" ></text>
+</g>
+<g >
+<title>link (20,202,020 samples, 0.07%)</title><rect x="446.2" y="821" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="449.17" y="831.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (30,303,030 samples, 0.10%)</title><rect x="576.8" y="709" width="1.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="579.84" y="719.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (60,606,060 samples, 0.20%)</title><rect x="484.4" y="821" width="2.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="487.42" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="372.4" y="741" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="375.42" y="751.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.07%)</title><rect x="655.2" y="677" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="658.15" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="659.7" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="662.71" y="751.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="430.7" y="485" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="433.69" y="495.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="495.3" y="597" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="498.34" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.03%)</title><rect x="316.9" y="565" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="319.87" y="575.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (30,303,030 samples, 0.10%)</title><rect x="25.0" y="565" width="1.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="28.02" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_link (40,404,040 samples, 0.13%)</title><rect x="330.1" y="693" width="1.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="333.07" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (50,505,050 samples, 0.16%)</title><rect x="443.0" y="741" width="2.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="445.99" y="751.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="698.0" y="581" width="0.4" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="700.95" y="591.5" ></text>
+</g>
+<g >
+<title>getenv (10,101,010 samples, 0.03%)</title><rect x="540.4" y="853" width="0.5" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="543.42" y="863.5" ></text>
+</g>
+<g >
+<title>tcp_validate_incoming (10,101,010 samples, 0.03%)</title><rect x="1038.1" y="293" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1041.06" y="303.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="580.0" y="693" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="583.03" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="642.9" y="757" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="645.86" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.03%)</title><rect x="476.2" y="629" width="0.5" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="479.22" y="639.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="529.5" y="581" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="532.49" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="102.0" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="104.97" y="719.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.03%)</title><rect x="388.8" y="805" width="0.5" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="391.81" y="815.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="985.7" y="789" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="988.70" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="586.4" y="773" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="589.40" y="783.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="478.0" y="581" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="481.04" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_journal_check_start (10,101,010 samples, 0.03%)</title><rect x="459.8" y="469" width="0.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="462.83" y="479.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (171,717,170 samples, 0.56%)</title><rect x="130.2" y="725" width="7.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="133.20" y="735.5" ></text>
+</g>
+<g >
+<title>__fstat64 (20,202,020 samples, 0.07%)</title><rect x="140.2" y="805" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="143.21" y="815.5" ></text>
+</g>
+<g >
+<title>open64 (90,909,090 samples, 0.30%)</title><rect x="269.5" y="869" width="4.1" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="272.52" y="879.5" ></text>
+</g>
+<g >
+<title>do_brk_flags (20,202,020 samples, 0.07%)</title><rect x="1367.2" y="757" width="0.9" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="1370.24" y="767.5" ></text>
+</g>
+<g >
+<title>new_inode_pseudo (10,101,010 samples, 0.03%)</title><rect x="1382.3" y="853" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1385.26" y="863.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="290.0" y="725" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="293.01" y="735.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.03%)</title><rect x="1334.9" y="773" width="0.5" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="1337.91" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.03%)</title><rect x="210.3" y="533" width="0.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="213.33" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="652.9" y="661" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="655.88" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="493.1" y="837" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="496.07" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="53.3" y="821" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="56.25" y="831.5" ></text>
+</g>
+<g >
+<title>folio_add_lru_vma (60,606,060 samples, 0.20%)</title><rect x="1005.7" y="725" width="2.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1008.73" y="735.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (30,303,030 samples, 0.10%)</title><rect x="392.0" y="821" width="1.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="394.99" y="831.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="467.6" y="677" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="470.57" y="687.5" ></text>
+</g>
+<g >
+<title>git_revparse_single (30,303,030 samples, 0.10%)</title><rect x="301.4" y="949" width="1.4" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="304.39" y="959.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="601.0" y="533" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="603.97" y="543.5" ></text>
+</g>
+<g >
+<title>rmdir (50,505,050 samples, 0.16%)</title><rect x="234.9" y="885" width="2.3" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="237.92" y="895.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="478.5" y="693" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="481.50" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_push (10,101,010 samples, 0.03%)</title><rect x="11.8" y="805" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="14.82" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="490.3" y="645" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="493.34" y="655.5" ></text>
+</g>
+<g >
+<title>security_file_permission (10,101,010 samples, 0.03%)</title><rect x="194.8" y="741" width="0.5" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" />
+<text x="197.85" y="751.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (121,212,120 samples, 0.40%)</title><rect x="458.0" y="741" width="5.5" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="461.01" y="751.5" ></text>
+</g>
+<g >
+<title>git_signature_default (30,303,030 samples, 0.10%)</title><rect x="392.0" y="837" width="1.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="394.99" y="847.5" ></text>
+</g>
+<g >
+<title>cimple-worker (29,808,080,510 samples, 97.36%)</title><rect x="46.4" y="1109" width="1343.6" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="49.42" y="1119.5" >cimple-worker</text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="404.7" y="677" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="407.74" y="687.5" ></text>
+</g>
+<g >
+<title>git_reference_dwim (30,303,030 samples, 0.10%)</title><rect x="301.4" y="901" width="1.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="304.39" y="911.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="321.9" y="661" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="324.88" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="343.3" y="805" width="0.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="346.28" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_v4_syn_recv_sock (20,202,020 samples, 0.07%)</title><rect x="1035.3" y="293" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1038.32" y="303.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="1334.9" y="869" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1337.91" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (181,818,180 samples, 0.59%)</title><rect x="423.9" y="789" width="8.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="426.86" y="799.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="262.7" y="773" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="265.69" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (494,949,490 samples, 1.62%)</title><rect x="1011.6" y="901" width="22.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1014.65" y="911.5" >e..</text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="529.5" y="661" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="532.49" y="671.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.03%)</title><rect x="197.1" y="693" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="200.13" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="376.1" y="613" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="379.06" y="623.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="672.9" y="805" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="675.91" y="815.5" ></text>
+</g>
+<g >
+<title>__xas_next (10,101,010 samples, 0.03%)</title><rect x="587.3" y="581" width="0.5" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="590.31" y="591.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (30,303,030 samples, 0.10%)</title><rect x="212.6" y="709" width="1.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="215.61" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_brk (30,303,030 samples, 0.10%)</title><rect x="116.5" y="629" width="1.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="119.54" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.07%)</title><rect x="306.4" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="309.40" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (80,808,080 samples, 0.26%)</title><rect x="557.3" y="741" width="3.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="560.26" y="751.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (80,808,080 samples, 0.26%)</title><rect x="571.8" y="773" width="3.7" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="574.83" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="346.0" y="517" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="349.01" y="527.5" ></text>
+</g>
+<g >
+<title>__blk_mq_get_tag (10,101,010 samples, 0.03%)</title><rect x="434.8" y="405" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="437.79" y="415.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.07%)</title><rect x="261.3" y="821" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="264.32" y="831.5" ></text>
+</g>
+<g >
+<title>dd_dispatch_request (10,101,010 samples, 0.03%)</title><rect x="248.1" y="453" width="0.5" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="251.12" y="463.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="1039.0" y="645" width="0.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1041.97" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (20,202,020 samples, 0.07%)</title><rect x="600.5" y="709" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="603.52" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="313.2" y="645" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="316.23" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="309.6" y="629" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="312.58" y="639.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="617.4" y="725" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="620.36" y="735.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.03%)</title><rect x="22.7" y="613" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="25.75" y="623.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (20,202,020 samples, 0.07%)</title><rect x="426.6" y="533" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="429.60" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_drop_inode (10,101,010 samples, 0.03%)</title><rect x="246.8" y="693" width="0.4" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="249.75" y="703.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.03%)</title><rect x="123.4" y="549" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="126.37" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="624.2" y="693" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="627.19" y="703.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="405.7" y="725" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="408.65" y="735.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.03%)</title><rect x="128.4" y="709" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="131.38" y="719.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (40,404,040 samples, 0.13%)</title><rect x="673.4" y="885" width="1.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="676.37" y="895.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="56.0" y="869" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="58.98" y="879.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="481.7" y="709" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="484.69" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (2,989,898,960 samples, 9.77%)</title><rect x="304.1" y="917" width="134.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="307.12" y="927.5" >[libgit2.so.1.7.2]</text>
+</g>
+<g >
+<title>refill_obj_stock (10,101,010 samples, 0.03%)</title><rect x="312.8" y="565" width="0.4" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="315.77" y="575.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.03%)</title><rect x="214.9" y="789" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="217.88" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="497.2" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="500.17" y="783.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="562.3" y="725" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="565.27" y="735.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="438.9" y="789" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="441.89" y="799.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="653.3" y="565" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="656.33" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="527.2" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="530.22" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstat (10,101,010 samples, 0.03%)</title><rect x="333.7" y="741" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="336.71" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="427.5" y="773" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="430.51" y="783.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="1056.7" y="885" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1059.72" y="895.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="404.7" y="661" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="407.74" y="671.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (10,101,010 samples, 0.03%)</title><rect x="11.8" y="757" width="0.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="14.82" y="767.5" ></text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.03%)</title><rect x="686.6" y="693" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="689.57" y="703.5" ></text>
+</g>
+<g >
+<title>rename (242,424,240 samples, 0.79%)</title><rect x="605.1" y="805" width="10.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="608.07" y="815.5" ></text>
+</g>
+<g >
+<title>list_lru_del_obj (10,101,010 samples, 0.03%)</title><rect x="126.1" y="565" width="0.5" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="129.10" y="575.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="274.1" y="885" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="277.07" y="895.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="519.9" y="725" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="522.93" y="735.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (111,111,110 samples, 0.36%)</title><rect x="683.4" y="837" width="5.0" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="686.38" y="847.5" ></text>
+</g>
+<g >
+<title>__mt_dup (10,101,010 samples, 0.03%)</title><rect x="693.4" y="757" width="0.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="696.40" y="767.5" ></text>
+</g>
+<g >
+<title>common_perm_cond (10,101,010 samples, 0.03%)</title><rect x="229.9" y="741" width="0.5" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="232.91" y="751.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="389" width="3.2" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1038.32" y="399.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="293.6" y="805" width="1.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="296.65" y="815.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="394.3" y="613" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="397.27" y="623.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.03%)</title><rect x="535.4" y="533" width="0.5" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="538.41" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="285.9" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="288.91" y="815.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (20,202,020 samples, 0.07%)</title><rect x="601.4" y="581" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="604.43" y="591.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="697.0" y="661" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="700.04" y="671.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (20,202,020 samples, 0.07%)</title><rect x="1030.3" y="245" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1033.32" y="255.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.03%)</title><rect x="346.0" y="405" width="0.5" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="349.01" y="415.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (10,101,010 samples, 0.03%)</title><rect x="1011.6" y="741" width="0.5" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="1014.65" y="751.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.03%)</title><rect x="1385.9" y="453" width="0.5" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1388.90" y="463.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="219.0" y="613" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="221.98" y="623.5" ></text>
+</g>
+<g >
+<title>uncharge_batch (70,707,070 samples, 0.23%)</title><rect x="727.1" y="741" width="3.2" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="730.09" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="274.1" y="821" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="277.07" y="831.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="467.6" y="645" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="470.57" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_read (30,303,030 samples, 0.10%)</title><rect x="297.3" y="693" width="1.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="300.29" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="669.7" y="789" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="672.72" y="799.5" ></text>
+</g>
+<g >
+<title>git_config_set_int64 (252,525,250 samples, 0.82%)</title><rect x="586.4" y="869" width="11.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="589.40" y="879.5" ></text>
+</g>
+<g >
+<title>sock_read_iter (20,202,020 samples, 0.07%)</title><rect x="1374.5" y="773" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1377.52" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="259.5" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="262.50" y="767.5" ></text>
+</g>
+<g >
+<title>git_repository_open_ext (262,626,260 samples, 0.86%)</title><rect x="411.6" y="837" width="11.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="414.57" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="249.9" y="821" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="252.94" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="615.5" y="629" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="618.54" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="422.0" y="661" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="425.04" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="420.2" y="629" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="423.22" y="639.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="423.9" y="709" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="426.86" y="719.5" ></text>
+</g>
+<g >
+<title>cmd_dispatcher_handle_conn_internal (90,909,090 samples, 0.30%)</title><rect x="1371.3" y="965" width="4.1" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1374.33" y="975.5" ></text>
+</g>
+<g >
+<title>ip_local_out (60,606,060 samples, 0.20%)</title><rect x="1012.6" y="629" width="2.7" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1015.56" y="639.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="196.7" y="693" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="199.67" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="260.0" y="709" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="262.96" y="719.5" ></text>
+</g>
+<g >
+<title>__folio_put (131,313,130 samples, 0.43%)</title><rect x="726.6" y="773" width="6.0" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="729.63" y="783.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="91.5" y="885" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="94.50" y="895.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="667.0" y="661" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="669.99" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_forget (10,101,010 samples, 0.03%)</title><rect x="169.8" y="533" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="172.81" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (151,515,150 samples, 0.49%)</title><rect x="141.6" y="789" width="6.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="144.58" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="267.2" y="709" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="270.24" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.16%)</title><rect x="234.9" y="869" width="2.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="237.92" y="879.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.03%)</title><rect x="658.3" y="677" width="0.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="661.34" y="687.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (80,808,080 samples, 0.26%)</title><rect x="1018.9" y="677" width="3.7" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1021.93" y="687.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="216.7" y="677" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="219.70" y="687.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="643.3" y="501" width="0.5" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="646.32" y="511.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.07%)</title><rect x="306.4" y="661" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="309.40" y="671.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.07%)</title><rect x="662.0" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="664.98" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (30,303,030 samples, 0.10%)</title><rect x="667.4" y="741" width="1.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="670.45" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="163.0" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="165.98" y="623.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (10,101,010 samples, 0.03%)</title><rect x="267.2" y="837" width="0.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="270.24" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="479.9" y="757" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="482.86" y="767.5" ></text>
+</g>
+<g >
+<title>iput (30,303,030 samples, 0.10%)</title><rect x="432.5" y="645" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="435.51" y="655.5" ></text>
+</g>
+<g >
+<title>ksys_read (20,202,020 samples, 0.07%)</title><rect x="375.1" y="629" width="1.0" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="378.15" y="639.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.03%)</title><rect x="477.1" y="661" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="480.13" y="671.5" ></text>
+</g>
+<g >
+<title>__folio_put (10,101,010 samples, 0.03%)</title><rect x="1012.1" y="661" width="0.5" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1015.10" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="499.0" y="725" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="501.99" y="735.5" ></text>
+</g>
+<g >
+<title>make_vfsuid (10,101,010 samples, 0.03%)</title><rect x="382.4" y="581" width="0.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="385.43" y="591.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="585.9" y="789" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="588.95" y="799.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (30,303,030 samples, 0.10%)</title><rect x="447.1" y="693" width="1.3" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="450.08" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (50,505,050 samples, 0.16%)</title><rect x="558.6" y="677" width="2.3" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="561.63" y="687.5" ></text>
+</g>
+<g >
+<title>ip_rcv (10,101,010 samples, 0.03%)</title><rect x="1380.4" y="421" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1383.44" y="431.5" ></text>
+</g>
+<g >
+<title>realpath (10,101,010 samples, 0.03%)</title><rect x="645.1" y="837" width="0.5" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="648.14" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (70,707,070 samples, 0.23%)</title><rect x="357.8" y="549" width="3.2" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="360.85" y="559.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="645.1" y="709" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="648.14" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="569.1" y="565" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="572.10" y="575.5" ></text>
+</g>
+<g >
+<title>do_anonymous_page (282,828,280 samples, 0.92%)</title><rect x="996.2" y="741" width="12.7" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="999.17" y="751.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="250.9" y="709" width="0.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="253.85" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.03%)</title><rect x="522.2" y="469" width="0.5" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="525.21" y="479.5" ></text>
+</g>
+<g >
+<title>iput (10,101,010 samples, 0.03%)</title><rect x="500.4" y="693" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="503.35" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="455.7" y="789" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="458.73" y="799.5" ></text>
+</g>
+<g >
+<title>do_linkat (20,202,020 samples, 0.07%)</title><rect x="499.0" y="757" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="501.99" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="490.8" y="629" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="493.79" y="639.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="481.7" y="613" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="484.69" y="623.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="241.3" y="645" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="244.29" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (20,202,020 samples, 0.07%)</title><rect x="450.7" y="421" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="453.73" y="431.5" ></text>
+</g>
+<g >
+<title>git_repository_free (10,101,010 samples, 0.03%)</title><rect x="411.1" y="837" width="0.5" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="414.12" y="847.5" ></text>
+</g>
+<g >
+<title>worker_destroy (20,202,020 samples, 0.07%)</title><rect x="14.6" y="1029" width="0.9" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="17.55" y="1039.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="244.5" y="757" width="0.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="247.48" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.36%)</title><rect x="683.4" y="901" width="5.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="686.38" y="911.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="234.0" y="837" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="237.01" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="513.1" y="469" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="516.10" y="479.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="229.0" y="821" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="232.00" y="831.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="153.4" y="629" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="156.42" y="639.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="385.2" y="645" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="388.16" y="655.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="1347.7" y="885" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1350.66" y="895.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.03%)</title><rect x="559.1" y="613" width="0.4" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="562.09" y="623.5" ></text>
+</g>
+<g >
+<title>__sys_connect_file (141,414,140 samples, 0.46%)</title><rect x="1383.2" y="885" width="6.3" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="1386.17" y="895.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="333.3" y="789" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="336.26" y="799.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (151,515,150 samples, 0.49%)</title><rect x="47.8" y="949" width="6.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="50.79" y="959.5" ></text>
+</g>
+<g >
+<title>alloc_pages (111,111,110 samples, 0.36%)</title><rect x="1018.5" y="741" width="5.0" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1021.48" y="751.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (10,101,010 samples, 0.03%)</title><rect x="361.0" y="613" width="0.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="364.03" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="669.7" y="613" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="672.72" y="623.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (20,202,020 samples, 0.07%)</title><rect x="449.8" y="533" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="452.82" y="543.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (10,101,010 samples, 0.03%)</title><rect x="501.3" y="645" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="504.26" y="655.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (20,202,020 samples, 0.07%)</title><rect x="568.6" y="645" width="1.0" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="571.65" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="267.2" y="741" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="270.24" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="240.4" y="693" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="243.38" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (101,010,100 samples, 0.33%)</title><rect x="81.5" y="997" width="4.5" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="84.48" y="1007.5" ></text>
+</g>
+<g >
+<title>__folio_cancel_dirty (10,101,010 samples, 0.03%)</title><rect x="231.7" y="581" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="234.73" y="591.5" ></text>
+</g>
+<g >
+<title>readdir64 (30,303,030 samples, 0.10%)</title><rect x="667.4" y="821" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="670.45" y="831.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.03%)</title><rect x="567.3" y="645" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="570.28" y="655.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.03%)</title><rect x="507.2" y="565" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="510.18" y="575.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="687.5" y="693" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="690.48" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_getattr (10,101,010 samples, 0.03%)</title><rect x="498.5" y="677" width="0.5" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="501.53" y="687.5" ></text>
+</g>
+<g >
+<title>process_backlog (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="469" width="4.1" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1029.22" y="479.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (151,515,150 samples, 0.49%)</title><rect x="47.8" y="981" width="6.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="50.79" y="991.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.10%)</title><rect x="473.9" y="645" width="1.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="476.95" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="266.3" y="821" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="269.33" y="831.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (10,101,010 samples, 0.03%)</title><rect x="1380.4" y="357" width="0.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1383.44" y="367.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.10%)</title><rect x="539.1" y="757" width="1.3" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="542.05" y="767.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="238.6" y="821" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="241.56" y="831.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (20,202,020 samples, 0.07%)</title><rect x="449.8" y="485" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="452.82" y="495.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="14.6" y="933" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="17.55" y="943.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (141,414,140 samples, 0.46%)</title><rect x="447.1" y="757" width="6.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="450.08" y="767.5" ></text>
+</g>
+<g >
+<title>do_softirq (40,404,040 samples, 0.13%)</title><rect x="1040.3" y="629" width="1.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1043.33" y="639.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (20,202,020 samples, 0.07%)</title><rect x="246.3" y="725" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="249.30" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="313.2" y="629" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="316.23" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (30,303,030 samples, 0.10%)</title><rect x="365.1" y="533" width="1.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="368.13" y="543.5" ></text>
+</g>
+<g >
+<title>call_filldir (40,404,040 samples, 0.13%)</title><rect x="143.4" y="677" width="1.8" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="146.40" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_es_free_extent (10,101,010 samples, 0.03%)</title><rect x="607.3" y="549" width="0.5" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="610.35" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="147.0" y="645" width="0.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="150.04" y="655.5" ></text>
+</g>
+<g >
+<title>blk_mq_attempt_bio_merge (10,101,010 samples, 0.03%)</title><rect x="553.2" y="437" width="0.4" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="556.17" y="447.5" ></text>
+</g>
+<g >
+<title>tasklet_action_common.isra.0 (10,101,010 samples, 0.03%)</title><rect x="1332.2" y="853" width="0.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1335.18" y="863.5" ></text>
+</g>
+<g >
+<title>__sbrk (20,202,020 samples, 0.07%)</title><rect x="1367.2" y="869" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1370.24" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.07%)</title><rect x="127.5" y="757" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="130.47" y="767.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="424.3" y="613" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="427.32" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (60,606,060 samples, 0.20%)</title><rect x="43.2" y="933" width="2.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="46.24" y="943.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="354.7" y="581" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="357.66" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="642.4" y="725" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="645.41" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (20,202,020 samples, 0.07%)</title><rect x="557.3" y="725" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="560.26" y="735.5" ></text>
+</g>
+<g >
+<title>SHA256_Update (10,101,010 samples, 0.03%)</title><rect x="488.5" y="693" width="0.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="491.52" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="556.8" y="821" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="559.81" y="831.5" ></text>
+</g>
+<g >
+<title>tlb_finish_mmu (121,212,120 samples, 0.40%)</title><rect x="759.9" y="741" width="5.4" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="762.87" y="751.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (20,202,020 samples, 0.07%)</title><rect x="460.7" y="549" width="1.0" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="463.74" y="559.5" ></text>
+</g>
+<g >
+<title>mkdir (282,828,280 samples, 0.92%)</title><rect x="308.2" y="805" width="12.8" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="311.22" y="815.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="282.7" y="661" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="285.72" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (10,101,010 samples, 0.03%)</title><rect x="572.7" y="693" width="0.5" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="575.74" y="703.5" ></text>
+</g>
+<g >
+<title>__siphash_unaligned (10,101,010 samples, 0.03%)</title><rect x="1039.4" y="645" width="0.5" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1042.42" y="655.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.03%)</title><rect x="610.5" y="501" width="0.5" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="613.53" y="511.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="682.5" y="869" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="685.47" y="879.5" ></text>
+</g>
+<g >
+<title>sock_close (20,202,020 samples, 0.07%)</title><rect x="1034.0" y="853" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="1036.96" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (282,828,280 samples, 0.92%)</title><rect x="308.2" y="741" width="12.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="311.22" y="751.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="86.9" y="821" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="89.94" y="831.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (30,303,030 samples, 0.10%)</title><rect x="432.5" y="677" width="1.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="435.51" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="393.4" y="773" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="396.36" y="783.5" ></text>
+</g>
+<g >
+<title>rmqueue (10,101,010 samples, 0.03%)</title><rect x="294.6" y="565" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="297.56" y="575.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="95.1" y="853" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="98.14" y="863.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (10,101,010 samples, 0.03%)</title><rect x="426.1" y="517" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="429.14" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="575.0" y="629" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="578.02" y="639.5" ></text>
+</g>
+<g >
+<title>iput (121,212,120 samples, 0.40%)</title><rect x="545.0" y="645" width="5.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="547.97" y="655.5" ></text>
+</g>
+<g >
+<title>wp_page_reuse (10,101,010 samples, 0.03%)</title><rect x="95.6" y="741" width="0.5" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="98.60" y="751.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.03%)</title><rect x="669.3" y="629" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="672.27" y="639.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.07%)</title><rect x="1034.0" y="965" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1036.96" y="975.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="600.5" y="677" width="0.5" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="603.52" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="669.7" y="757" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="672.72" y="767.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (30,303,030 samples, 0.10%)</title><rect x="1052.6" y="773" width="1.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1055.63" y="783.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.07%)</title><rect x="506.7" y="581" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="509.73" y="591.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="483.5" y="629" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="486.51" y="639.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (20,202,020 samples, 0.07%)</title><rect x="460.7" y="453" width="1.0" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="463.74" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="529.9" y="773" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="532.95" y="783.5" ></text>
+</g>
+<g >
+<title>security_inode_need_killpriv (10,101,010 samples, 0.03%)</title><rect x="576.4" y="677" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="579.39" y="687.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="253.1" y="677" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="256.13" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_append (202,020,200 samples, 0.66%)</title><rect x="625.6" y="725" width="9.1" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="628.56" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (272,727,270 samples, 0.89%)</title><rect x="441.2" y="837" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="444.16" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.10%)</title><rect x="478.5" y="677" width="1.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="481.50" y="687.5" ></text>
+</g>
+<g >
+<title>libjson_set_string_internal (10,101,010 samples, 0.03%)</title><rect x="1348.6" y="917" width="0.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1351.57" y="927.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (70,707,070 samples, 0.23%)</title><rect x="379.2" y="661" width="3.2" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="382.24" y="671.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (60,606,060 samples, 0.20%)</title><rect x="1055.4" y="965" width="2.7" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1058.36" y="975.5" ></text>
+</g>
+<g >
+<title>mpage_submit_folio (20,202,020 samples, 0.07%)</title><rect x="612.4" y="517" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="615.36" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="585.5" y="805" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="588.49" y="815.5" ></text>
+</g>
+<g >
+<title>copy_page_range (202,020,200 samples, 0.66%)</title><rect x="700.7" y="757" width="9.1" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="703.68" y="767.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.03%)</title><rect x="169.4" y="533" width="0.4" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="172.35" y="543.5" ></text>
+</g>
+<g >
+<title>__tcp_ack_snd_check (20,202,020 samples, 0.07%)</title><rect x="1030.3" y="325" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1033.32" y="335.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="235.8" y="693" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="238.83" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="482.1" y="773" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="485.14" y="783.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.03%)</title><rect x="186.2" y="629" width="0.5" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="189.20" y="639.5" ></text>
+</g>
+<g >
+<title>filemap_release_folio (10,101,010 samples, 0.03%)</title><rect x="190.3" y="581" width="0.5" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="193.30" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="414.3" y="581" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="417.30" y="591.5" ></text>
+</g>
+<g >
+<title>filename_lookup (50,505,050 samples, 0.16%)</title><rect x="521.3" y="645" width="2.3" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="524.30" y="655.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.10%)</title><rect x="382.4" y="677" width="1.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="385.43" y="687.5" ></text>
+</g>
+<g >
+<title>security_cred_free (10,101,010 samples, 0.03%)</title><rect x="190.8" y="517" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="193.75" y="527.5" ></text>
+</g>
+<g >
+<title>bio_free (10,101,010 samples, 0.03%)</title><rect x="700.2" y="533" width="0.5" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="703.23" y="543.5" ></text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.07%)</title><rect x="719.8" y="757" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="722.81" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="525.8" y="693" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="528.85" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="587.3" y="741" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="590.31" y="751.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="86.5" y="805" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="89.49" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="664.3" y="629" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="667.26" y="639.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.03%)</title><rect x="400.6" y="821" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="403.64" y="831.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.03%)</title><rect x="543.2" y="565" width="0.4" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="546.15" y="575.5" ></text>
+</g>
+<g >
+<title>mas_walk (20,202,020 samples, 0.07%)</title><rect x="1366.3" y="837" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1369.32" y="847.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="297.3" y="741" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="300.29" y="751.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.03%)</title><rect x="617.4" y="757" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="620.36" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (50,505,050 samples, 0.16%)</title><rect x="521.3" y="709" width="2.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="524.30" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="265.0" y="693" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="267.97" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="292.7" y="677" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="295.74" y="687.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.07%)</title><rect x="1378.2" y="885" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1381.16" y="895.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (30,303,030 samples, 0.10%)</title><rect x="1380.0" y="645" width="1.3" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1382.98" y="655.5" ></text>
+</g>
+<g >
+<title>lh_table_lookup_ex (10,101,010 samples, 0.03%)</title><rect x="1371.8" y="885" width="0.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1374.79" y="895.5" ></text>
+</g>
+<g >
+<title>vmbus_on_event (10,101,010 samples, 0.03%)</title><rect x="1332.2" y="837" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1335.18" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,545,454,520 samples, 8.31%)</title><rect x="99.7" y="869" width="114.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="102.69" y="879.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="98.3" y="885" width="0.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="101.33" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.03%)</title><rect x="556.8" y="789" width="0.5" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="559.81" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.07%)</title><rect x="166.2" y="533" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="169.17" y="543.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (60,606,060 samples, 0.20%)</title><rect x="1012.6" y="693" width="2.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1015.56" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (30,303,030 samples, 0.10%)</title><rect x="116.5" y="773" width="1.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="119.54" y="783.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="629" width="1.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1378.43" y="639.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="268.6" y="661" width="0.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="271.61" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.07%)</title><rect x="601.4" y="645" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="604.43" y="655.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (10,101,010 samples, 0.03%)</title><rect x="11.8" y="597" width="0.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="14.82" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="484.0" y="773" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="486.96" y="783.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="492.2" y="725" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="495.16" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_ext_determine_insert_hole (10,101,010 samples, 0.03%)</title><rect x="384.3" y="517" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="387.25" y="527.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="109.3" y="773" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="112.25" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.03%)</title><rect x="384.3" y="645" width="0.4" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="387.25" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="426.1" y="709" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="429.14" y="719.5" ></text>
+</g>
+<g >
+<title>net_recv_buf (30,303,030 samples, 0.10%)</title><rect x="1374.1" y="917" width="1.3" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1377.06" y="927.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (30,303,030 samples, 0.10%)</title><rect x="340.5" y="725" width="1.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="343.54" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (101,010,100 samples, 0.33%)</title><rect x="314.1" y="629" width="4.6" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="317.14" y="639.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.03%)</title><rect x="544.1" y="645" width="0.4" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="547.06" y="655.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="109.3" y="629" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="112.25" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="494.9" y="693" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="497.89" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="209.0" y="517" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="211.96" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="332.8" y="773" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="335.80" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (20,202,020 samples, 0.07%)</title><rect x="228.1" y="645" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="231.09" y="655.5" ></text>
+</g>
+<g >
+<title>server_wait (40,404,040 samples, 0.13%)</title><rect x="15.9" y="1029" width="1.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="18.92" y="1039.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="595.1" y="597" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="598.05" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (191,919,190 samples, 0.63%)</title><rect x="414.8" y="773" width="8.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="417.76" y="783.5" ></text>
+</g>
+<g >
+<title>rb_next_postorder (10,101,010 samples, 0.03%)</title><rect x="343.3" y="741" width="0.4" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="346.28" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.03%)</title><rect x="381.5" y="549" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="384.52" y="559.5" ></text>
+</g>
+<g >
+<title>notify_change (10,101,010 samples, 0.03%)</title><rect x="537.2" y="741" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="540.23" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_brk (10,101,010 samples, 0.03%)</title><rect x="1057.2" y="837" width="0.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1060.18" y="847.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (30,303,030 samples, 0.10%)</title><rect x="413.4" y="805" width="1.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="416.39" y="815.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="1011.2" y="805" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1014.19" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (10,101,010 samples, 0.03%)</title><rect x="621.5" y="693" width="0.4" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="624.46" y="703.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.03%)</title><rect x="260.4" y="725" width="0.5" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="263.41" y="735.5" ></text>
+</g>
+<g >
+<title>git_refdb_open (30,303,030 samples, 0.10%)</title><rect x="480.3" y="821" width="1.4" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="483.32" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.30%)</title><rect x="557.3" y="837" width="4.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="560.26" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_read_block_bitmap_nowait (10,101,010 samples, 0.03%)</title><rect x="611.9" y="437" width="0.5" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="614.90" y="447.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (70,707,070 samples, 0.23%)</title><rect x="647.0" y="837" width="3.1" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="649.96" y="847.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="282.7" y="725" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="285.72" y="735.5" ></text>
+</g>
+<g >
+<title>__kfree_skb (10,101,010 samples, 0.03%)</title><rect x="23.2" y="709" width="0.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="26.20" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="244.5" y="821" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="247.48" y="831.5" ></text>
+</g>
+<g >
+<title>d_flags_for_inode (10,101,010 samples, 0.03%)</title><rect x="71.9" y="837" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="74.92" y="847.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.03%)</title><rect x="132.9" y="661" width="0.5" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="135.93" y="671.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.07%)</title><rect x="14.6" y="981" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="17.55" y="991.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.03%)</title><rect x="502.2" y="661" width="0.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="505.17" y="671.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.03%)</title><rect x="653.3" y="533" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="656.33" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="512.2" y="581" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="515.19" y="591.5" ></text>
+</g>
+<g >
+<title>path_openat (90,909,090 samples, 0.30%)</title><rect x="334.6" y="709" width="4.1" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="337.63" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="469.4" y="677" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="472.39" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.03%)</title><rect x="220.3" y="565" width="0.5" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="223.35" y="575.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (50,505,050 samples, 0.16%)</title><rect x="1013.0" y="517" width="2.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1016.02" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (40,404,040 samples, 0.13%)</title><rect x="121.5" y="581" width="1.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="124.55" y="591.5" ></text>
+</g>
+<g >
+<title>apparmor_file_open (10,101,010 samples, 0.03%)</title><rect x="241.3" y="581" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="244.29" y="591.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.07%)</title><rect x="668.8" y="709" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="671.81" y="719.5" ></text>
+</g>
+<g >
+<title>do_filp_open (30,303,030 samples, 0.10%)</title><rect x="428.9" y="549" width="1.3" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="431.87" y="559.5" ></text>
+</g>
+<g >
+<title>tcp_v4_send_synack (10,101,010 samples, 0.03%)</title><rect x="1385.9" y="341" width="0.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1388.90" y="351.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="630.1" y="629" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="633.11" y="639.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="982.5" y="837" width="0.5" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="985.51" y="847.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="97.4" y="885" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="100.42" y="895.5" ></text>
+</g>
+<g >
+<title>nf_ct_destroy (10,101,010 samples, 0.03%)</title><rect x="1039.0" y="677" width="0.4" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1041.97" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="88.3" y="933" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="91.31" y="943.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="645" width="4.1" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1029.22" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.10%)</title><rect x="163.9" y="581" width="1.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="166.89" y="591.5" ></text>
+</g>
+<g >
+<title>free_unref_page_list (50,505,050 samples, 0.16%)</title><rect x="763.1" y="677" width="2.2" height="15.0" fill="rgb(0,206,71)" rx="2" ry="2" />
+<text x="766.06" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.07%)</title><rect x="496.3" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="499.26" y="639.5" ></text>
+</g>
+<g >
+<title>filemap_flush (70,707,070 samples, 0.23%)</title><rect x="449.8" y="661" width="3.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="452.82" y="671.5" ></text>
+</g>
+<g >
+<title>rw_verify_area (10,101,010 samples, 0.03%)</title><rect x="301.8" y="645" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="304.84" y="655.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="351.9" y="661" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="354.93" y="671.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (10,101,010 samples, 0.03%)</title><rect x="1384.1" y="309" width="0.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1387.08" y="319.5" ></text>
+</g>
+<g >
+<title>__napi_poll (20,202,020 samples, 0.07%)</title><rect x="1380.0" y="485" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1382.98" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (20,202,020 samples, 0.07%)</title><rect x="622.8" y="693" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="625.83" y="703.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (494,949,490 samples, 1.62%)</title><rect x="1011.6" y="837" width="22.4" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1014.65" y="847.5" >_..</text>
+</g>
+<g >
+<title>malloc (20,202,020 samples, 0.07%)</title><rect x="648.8" y="741" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="651.78" y="751.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.03%)</title><rect x="545.4" y="581" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="548.43" y="591.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (181,818,180 samples, 0.59%)</title><rect x="1047.2" y="917" width="8.2" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1050.16" y="927.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.03%)</title><rect x="160.2" y="597" width="0.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="163.25" y="607.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="658.3" y="661" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="661.34" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.43%)</title><rect x="579.1" y="853" width="5.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="582.12" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="64.6" y="837" width="0.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="67.64" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.03%)</title><rect x="545.0" y="597" width="0.4" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="547.97" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="642.4" y="709" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="645.41" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="412.5" y="645" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="415.48" y="655.5" ></text>
+</g>
+<g >
+<title>inode_init_owner (10,101,010 samples, 0.03%)</title><rect x="311.9" y="661" width="0.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="314.86" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="464.4" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="467.38" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="242.7" y="805" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="245.66" y="815.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="427.5" y="629" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="430.51" y="639.5" ></text>
+</g>
+<g >
+<title>__blk_mq_end_request (10,101,010 samples, 0.03%)</title><rect x="546.8" y="309" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="549.79" y="319.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.03%)</title><rect x="110.6" y="629" width="0.5" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="113.62" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="478.5" y="709" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="481.50" y="719.5" ></text>
+</g>
+<g >
+<title>sock_alloc (20,202,020 samples, 0.07%)</title><rect x="37.3" y="821" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="40.32" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="529.9" y="661" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="532.95" y="671.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="38.2" y="757" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="41.23" y="767.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="320.5" y="709" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="323.51" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="164.3" y="501" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="167.35" y="511.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (20,202,020 samples, 0.07%)</title><rect x="196.7" y="725" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="199.67" y="735.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.03%)</title><rect x="423.9" y="613" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="426.86" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="682.5" y="773" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="685.47" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.07%)</title><rect x="249.0" y="581" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="252.03" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (40,404,040 samples, 0.13%)</title><rect x="473.5" y="677" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="476.49" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="445.7" y="677" width="0.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="448.72" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="677.0" y="677" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="680.01" y="687.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_free_hook (10,101,010 samples, 0.03%)</title><rect x="424.3" y="597" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="427.32" y="607.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="559.5" y="613" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="562.54" y="623.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="499.0" y="693" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="501.99" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="238.1" y="757" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="241.10" y="767.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.03%)</title><rect x="92.0" y="869" width="0.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="94.95" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (10,101,010 samples, 0.03%)</title><rect x="246.3" y="645" width="0.5" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="249.30" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="433.0" y="565" width="0.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="435.97" y="575.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="600.1" y="757" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="603.06" y="767.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.03%)</title><rect x="678.4" y="565" width="0.4" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="681.37" y="575.5" ></text>
+</g>
+<g >
+<title>fdopendir (10,101,010 samples, 0.03%)</title><rect x="101.5" y="757" width="0.5" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="104.51" y="767.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="646.5" y="677" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="649.50" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.20%)</title><rect x="401.1" y="789" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="404.10" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="660.6" y="757" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="663.62" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.03%)</title><rect x="498.5" y="709" width="0.5" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="501.53" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="604.2" y="677" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="607.16" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="466.2" y="677" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="469.21" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="407.5" y="693" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="410.47" y="703.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.03%)</title><rect x="62.8" y="741" width="0.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="65.81" y="751.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.03%)</title><rect x="346.0" y="453" width="0.5" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="349.01" y="463.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.10%)</title><rect x="671.1" y="725" width="1.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="674.09" y="735.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="156.1" y="613" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="159.15" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="348.7" y="725" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="351.74" y="735.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="367.9" y="821" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="370.86" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.10%)</title><rect x="300.0" y="757" width="1.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="303.02" y="767.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (272,727,270 samples, 0.89%)</title><rect x="1333.5" y="917" width="12.3" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1336.54" y="927.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="240.4" y="709" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="243.38" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (151,515,150 samples, 0.49%)</title><rect x="1382.7" y="965" width="6.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1385.72" y="975.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="504.0" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="507.00" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.03%)</title><rect x="370.1" y="725" width="0.5" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="373.14" y="735.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.03%)</title><rect x="229.0" y="853" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="232.00" y="863.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="442.5" y="773" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="445.53" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="680.2" y="741" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="683.19" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="669.7" y="741" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="672.72" y="751.5" ></text>
+</g>
+<g >
+<title>rename (343,434,340 samples, 1.12%)</title><rect x="352.4" y="805" width="15.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="355.38" y="815.5" ></text>
+</g>
+<g >
+<title>mas_find (20,202,020 samples, 0.07%)</title><rect x="712.1" y="757" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="715.07" y="767.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.03%)</title><rect x="210.8" y="485" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="213.79" y="495.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="229.5" y="789" width="0.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="232.45" y="799.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="396.1" y="501" width="0.4" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="399.09" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="155.7" y="613" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="158.69" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="487.6" y="757" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="490.60" y="767.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (212,121,210 samples, 0.69%)</title><rect x="1335.4" y="869" width="9.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1338.36" y="879.5" ></text>
+</g>
+<g >
+<title>skb_release_head_state (10,101,010 samples, 0.03%)</title><rect x="23.2" y="693" width="0.5" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="26.20" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="675.2" y="789" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="678.19" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="488.1" y="757" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="491.06" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (20,202,020 samples, 0.07%)</title><rect x="210.3" y="549" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="213.33" y="559.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.03%)</title><rect x="109.3" y="645" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="112.25" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="490.3" y="661" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="493.34" y="671.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.03%)</title><rect x="11.8" y="213" width="0.5" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="14.82" y="223.5" ></text>
+</g>
+<g >
+<title>memcg_list_lru_alloc (10,101,010 samples, 0.03%)</title><rect x="37.8" y="725" width="0.4" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="40.77" y="735.5" ></text>
+</g>
+<g >
+<title>git_attr_add_macro (20,202,020 samples, 0.07%)</title><rect x="266.3" y="837" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="269.33" y="847.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="122.9" y="485" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="125.91" y="495.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.03%)</title><rect x="643.3" y="485" width="0.5" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="646.32" y="495.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (90,909,090 samples, 0.30%)</title><rect x="1026.2" y="613" width="4.1" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1029.22" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (232,323,230 samples, 0.76%)</title><rect x="239.5" y="869" width="10.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="242.47" y="879.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.03%)</title><rect x="1013.5" y="293" width="0.4" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1016.47" y="303.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="269.1" y="805" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="272.06" y="815.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.03%)</title><rect x="650.1" y="645" width="0.5" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="653.15" y="655.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (20,202,020 samples, 0.07%)</title><rect x="460.7" y="437" width="1.0" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="463.74" y="447.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_create_access (10,101,010 samples, 0.03%)</title><rect x="314.1" y="613" width="0.5" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="317.14" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="669.7" y="693" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="672.72" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.03%)</title><rect x="158.9" y="645" width="0.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="161.88" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="457.6" y="805" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="460.56" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="430.7" y="597" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="433.69" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="600.5" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="603.52" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="71.0" y="789" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="74.01" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (30,303,030 samples, 0.10%)</title><rect x="1055.8" y="933" width="1.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1058.81" y="943.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="265.0" y="661" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="267.97" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.03%)</title><rect x="524.5" y="725" width="0.4" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="527.48" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="642.4" y="693" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="645.41" y="703.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (40,404,040 samples, 0.13%)</title><rect x="1040.3" y="645" width="1.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1043.33" y="655.5" ></text>
+</g>
+<g >
+<title>write (30,303,030 samples, 0.10%)</title><rect x="40.0" y="885" width="1.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="43.05" y="895.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="492.2" y="741" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="495.16" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="396.5" y="725" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="399.55" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap (10,101,010 samples, 0.03%)</title><rect x="382.0" y="469" width="0.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="384.98" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (60,606,060 samples, 0.20%)</title><rect x="610.5" y="565" width="2.8" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="613.53" y="575.5" ></text>
+</g>
+<g >
+<title>security_file_permission (10,101,010 samples, 0.03%)</title><rect x="1044.4" y="741" width="0.5" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" />
+<text x="1047.43" y="751.5" ></text>
+</g>
+<g >
+<title>__brelse (10,101,010 samples, 0.03%)</title><rect x="395.2" y="565" width="0.4" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="398.18" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="282.7" y="741" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="285.72" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.03%)</title><rect x="522.2" y="485" width="0.5" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="525.21" y="495.5" ></text>
+</g>
+<g >
+<title>process_backlog (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="453" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1386.17" y="463.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.07%)</title><rect x="306.4" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="309.40" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="301.8" y="805" width="1.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="304.84" y="815.5" ></text>
+</g>
+<g >
+<title>sd_init_command (10,101,010 samples, 0.03%)</title><rect x="461.2" y="373" width="0.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="464.20" y="383.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.03%)</title><rect x="22.7" y="645" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="25.75" y="655.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (90,909,090 samples, 0.30%)</title><rect x="557.3" y="773" width="4.1" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="560.26" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="491.2" y="629" width="1.0" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="494.25" y="639.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.03%)</title><rect x="268.6" y="725" width="0.5" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="271.61" y="735.5" ></text>
+</g>
+<g >
+<title>xas_descend (10,101,010 samples, 0.03%)</title><rect x="340.1" y="517" width="0.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="343.09" y="527.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.03%)</title><rect x="346.0" y="613" width="0.5" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="349.01" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.03%)</title><rect x="234.5" y="805" width="0.4" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="237.46" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (90,909,090 samples, 0.30%)</title><rect x="275.4" y="709" width="4.1" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="278.44" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="438.9" y="805" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="441.89" y="815.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (20,202,020 samples, 0.07%)</title><rect x="69.2" y="805" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="72.19" y="815.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_try_merge (10,101,010 samples, 0.03%)</title><rect x="435.2" y="389" width="0.5" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="438.25" y="399.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.03%)</title><rect x="240.4" y="629" width="0.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="243.38" y="639.5" ></text>
+</g>
+<g >
+<title>remove_wait_queue (10,101,010 samples, 0.03%)</title><rect x="755.3" y="805" width="0.5" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="758.32" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (10,101,010 samples, 0.03%)</title><rect x="11.8" y="773" width="0.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="14.82" y="783.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="392.4" y="629" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="395.45" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="265.4" y="677" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="268.42" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="394.3" y="693" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="397.27" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="479.9" y="645" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="482.86" y="655.5" ></text>
+</g>
+<g >
+<title>__wait_on_bit (10,101,010 samples, 0.03%)</title><rect x="62.8" y="789" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="65.81" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_space_adjust (10,101,010 samples, 0.03%)</title><rect x="1375.0" y="693" width="0.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1377.98" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="192.1" y="805" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="195.12" y="815.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="371.0" y="773" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="374.05" y="783.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (10,101,010 samples, 0.03%)</title><rect x="24.6" y="549" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="27.57" y="559.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_add_journal_head (10,101,010 samples, 0.03%)</title><rect x="626.9" y="645" width="0.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="629.93" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="284.1" y="693" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="287.09" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="680.2" y="661" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="683.19" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="468.5" y="773" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="471.48" y="783.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.03%)</title><rect x="340.1" y="533" width="0.4" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="343.09" y="543.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (20,202,020 samples, 0.07%)</title><rect x="25.5" y="309" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="28.48" y="319.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (10,101,010 samples, 0.03%)</title><rect x="11.8" y="485" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="14.82" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (20,202,020 samples, 0.07%)</title><rect x="663.8" y="725" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="666.80" y="735.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.03%)</title><rect x="1054.4" y="837" width="0.5" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1057.45" y="847.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (141,414,140 samples, 0.46%)</title><rect x="48.2" y="933" width="6.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="51.24" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (30,303,030 samples, 0.10%)</title><rect x="235.8" y="741" width="1.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="238.83" y="751.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="1347.7" y="869" width="0.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1350.66" y="879.5" ></text>
+</g>
+<g >
+<title>netif_rx_internal (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="53" width="0.4" height="15.0" fill="rgb(0,198,33)" rx="2" ry="2" />
+<text x="1030.58" y="63.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="110.6" y="613" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="113.62" y="623.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (20,202,020 samples, 0.07%)</title><rect x="601.4" y="533" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="604.43" y="543.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (20,202,020 samples, 0.07%)</title><rect x="25.5" y="325" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="28.48" y="335.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_add_journal_head (10,101,010 samples, 0.03%)</title><rect x="314.1" y="581" width="0.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="317.14" y="591.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.03%)</title><rect x="610.5" y="389" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="613.53" y="399.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (282,828,280 samples, 0.92%)</title><rect x="308.2" y="773" width="12.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="311.22" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (252,525,250 samples, 0.82%)</title><rect x="309.1" y="709" width="11.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="312.13" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="491.2" y="709" width="1.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="494.25" y="719.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (10,101,010 samples, 0.03%)</title><rect x="1034.0" y="693" width="0.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1036.96" y="703.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_begin_ordered_truncate (10,101,010 samples, 0.03%)</title><rect x="361.5" y="629" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="364.49" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (20,202,020 samples, 0.07%)</title><rect x="228.1" y="597" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="231.09" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.03%)</title><rect x="422.0" y="613" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="425.04" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="209.4" y="501" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="212.42" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="300.0" y="869" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="303.02" y="879.5" ></text>
+</g>
+<g >
+<title>unmap_page_range (101,010,100 samples, 0.33%)</title><rect x="765.3" y="709" width="4.6" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="768.33" y="719.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.03%)</title><rect x="645.6" y="757" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="648.59" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.03%)</title><rect x="489.9" y="581" width="0.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="492.88" y="591.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="25.5" y="181" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="28.48" y="191.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="1371.8" y="837" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1374.79" y="847.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="755.8" y="853" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="758.77" y="863.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.03%)</title><rect x="322.8" y="613" width="0.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="325.79" y="623.5" ></text>
+</g>
+<g >
+<title>d_walk (10,101,010 samples, 0.03%)</title><rect x="212.6" y="693" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="215.61" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (60,606,060 samples, 0.20%)</title><rect x="36.0" y="885" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="38.95" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="251.8" y="821" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="254.76" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="86.0" y="933" width="1.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="89.03" y="943.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.03%)</title><rect x="137.5" y="629" width="0.4" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="140.48" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="101.1" y="741" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="104.06" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_write (40,404,040 samples, 0.13%)</title><rect x="293.6" y="741" width="1.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="296.65" y="751.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (202,020,200 samples, 0.66%)</title><rect x="352.8" y="693" width="9.1" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="355.84" y="703.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (20,202,020 samples, 0.07%)</title><rect x="460.7" y="565" width="1.0" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="463.74" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.10%)</title><rect x="677.9" y="677" width="1.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="680.92" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="480.8" y="677" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="483.78" y="687.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="467.1" y="709" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="470.12" y="719.5" ></text>
+</g>
+<g >
+<title>blk_mq_start_request (10,101,010 samples, 0.03%)</title><rect x="449.8" y="389" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="452.82" y="399.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="463.5" y="837" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="466.47" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_find_dest_de (40,404,040 samples, 0.13%)</title><rect x="74.2" y="821" width="1.8" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="77.20" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.03%)</title><rect x="524.9" y="725" width="0.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="527.94" y="735.5" ></text>
+</g>
+<g >
+<title>filemap_flush (50,505,050 samples, 0.16%)</title><rect x="460.3" y="661" width="2.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="463.29" y="671.5" ></text>
+</g>
+<g >
+<title>path_openat (30,303,030 samples, 0.10%)</title><rect x="382.4" y="645" width="1.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="385.43" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="440.7" y="805" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="443.71" y="815.5" ></text>
+</g>
+<g >
+<title>do_anonymous_page (181,818,180 samples, 0.59%)</title><rect x="1336.3" y="853" width="8.2" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1339.28" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="316.4" y="485" width="0.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="319.41" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="267.2" y="757" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="270.24" y="767.5" ></text>
+</g>
+<g >
+<title>lookup_dcache (10,101,010 samples, 0.03%)</title><rect x="220.8" y="725" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="223.80" y="735.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (10,101,010 samples, 0.03%)</title><rect x="610.5" y="549" width="0.5" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="613.53" y="559.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="184.4" y="709" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="187.38" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_init_xmit_timers (10,101,010 samples, 0.03%)</title><rect x="1383.6" y="261" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1386.63" y="271.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="239.0" y="789" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="242.01" y="799.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (70,707,070 samples, 0.23%)</title><rect x="741.7" y="693" width="3.1" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="744.66" y="703.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.03%)</title><rect x="982.5" y="677" width="0.5" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="985.51" y="687.5" ></text>
+</g>
+<g >
+<title>readlink (10,101,010 samples, 0.03%)</title><rect x="636.9" y="853" width="0.5" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="639.94" y="863.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.03%)</title><rect x="438.0" y="533" width="0.4" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="440.98" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="41.0" y="789" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="43.96" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (30,303,030 samples, 0.10%)</title><rect x="450.7" y="549" width="1.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="453.73" y="559.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.07%)</title><rect x="468.9" y="741" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="471.94" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (40,404,040 samples, 0.13%)</title><rect x="106.1" y="501" width="1.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="109.07" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (121,212,120 samples, 0.40%)</title><rect x="280.4" y="805" width="5.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="283.45" y="815.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.07%)</title><rect x="350.6" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="353.56" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="468.9" y="773" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="471.94" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_match (10,101,010 samples, 0.03%)</title><rect x="624.6" y="693" width="0.5" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="627.65" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="682.0" y="837" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="685.02" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_es_free_extent (10,101,010 samples, 0.03%)</title><rect x="596.0" y="469" width="0.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="598.97" y="479.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="386.5" y="661" width="0.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="389.53" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.03%)</title><rect x="577.3" y="677" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="580.30" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (191,919,190 samples, 0.63%)</title><rect x="494.0" y="853" width="8.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="496.98" y="863.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="635.1" y="693" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="638.12" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.23%)</title><rect x="18.2" y="965" width="3.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="21.20" y="975.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="527.7" y="565" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="530.67" y="575.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.03%)</title><rect x="455.7" y="709" width="0.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="458.73" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.03%)</title><rect x="272.3" y="677" width="0.4" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="275.25" y="687.5" ></text>
+</g>
+<g >
+<title>prepare_to_wait_event (10,101,010 samples, 0.03%)</title><rect x="749.4" y="805" width="0.5" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="752.40" y="815.5" ></text>
+</g>
+<g >
+<title>__do_sys_brk (20,202,020 samples, 0.07%)</title><rect x="1367.2" y="773" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1370.24" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="331.9" y="821" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="334.89" y="831.5" ></text>
+</g>
+<g >
+<title>events_to_string (10,101,010 samples, 0.03%)</title><rect x="28.2" y="965" width="0.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="31.21" y="975.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (30,303,030 samples, 0.10%)</title><rect x="484.9" y="597" width="1.3" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="487.87" y="607.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="577.8" y="581" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="580.75" y="591.5" ></text>
+</g>
+<g >
+<title>__release_sock (10,101,010 samples, 0.03%)</title><rect x="23.7" y="709" width="0.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="26.66" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="49.2" y="853" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="52.16" y="863.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.03%)</title><rect x="221.7" y="677" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="224.71" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (40,404,040 samples, 0.13%)</title><rect x="257.2" y="645" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="260.23" y="655.5" ></text>
+</g>
+<g >
+<title>path_parentat (20,202,020 samples, 0.07%)</title><rect x="216.2" y="725" width="1.0" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="219.25" y="735.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (70,707,070 samples, 0.23%)</title><rect x="552.3" y="613" width="3.1" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="555.26" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (111,111,110 samples, 0.36%)</title><rect x="683.4" y="885" width="5.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="686.38" y="895.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (90,909,090 samples, 0.30%)</title><rect x="378.3" y="677" width="4.1" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="381.33" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="629.2" y="597" width="0.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="632.20" y="607.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="527.7" y="501" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="530.67" y="511.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="601.0" y="645" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="603.97" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (232,323,230 samples, 0.76%)</title><rect x="239.5" y="885" width="10.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="242.47" y="895.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.07%)</title><rect x="387.4" y="629" width="1.0" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="390.44" y="639.5" ></text>
+</g>
+<g >
+<title>__brelse (10,101,010 samples, 0.03%)</title><rect x="362.9" y="629" width="0.4" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="365.85" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (101,010,100 samples, 0.33%)</title><rect x="81.5" y="1013" width="4.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="84.48" y="1023.5" ></text>
+</g>
+<g >
+<title>path_lookupat (40,404,040 samples, 0.13%)</title><rect x="55.5" y="901" width="1.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="58.53" y="911.5" ></text>
+</g>
+<g >
+<title>mkdir (90,909,090 samples, 0.30%)</title><rect x="557.3" y="853" width="4.1" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="560.26" y="863.5" ></text>
+</g>
+<g >
+<title>git_reference_free (10,101,010 samples, 0.03%)</title><rect x="428.0" y="773" width="0.4" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="430.96" y="783.5" ></text>
+</g>
+<g >
+<title>setattr_prepare (10,101,010 samples, 0.03%)</title><rect x="537.2" y="709" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="540.23" y="719.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.03%)</title><rect x="646.0" y="645" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="649.05" y="655.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_create_access (10,101,010 samples, 0.03%)</title><rect x="314.1" y="597" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="317.14" y="607.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (10,101,010 samples, 0.03%)</title><rect x="1027.6" y="165" width="0.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1030.58" y="175.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.07%)</title><rect x="108.3" y="677" width="1.0" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="111.34" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (121,212,120 samples, 0.40%)</title><rect x="432.5" y="741" width="5.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="435.51" y="751.5" ></text>
+</g>
+<g >
+<title>evict (60,606,060 samples, 0.20%)</title><rect x="591.0" y="629" width="2.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="593.96" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="645.6" y="821" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="648.59" y="831.5" ></text>
+</g>
+<g >
+<title>inet_sendmsg (40,404,040 samples, 0.13%)</title><rect x="1375.4" y="821" width="1.9" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1378.43" y="831.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.03%)</title><rect x="248.1" y="469" width="0.5" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="251.12" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (10,101,010 samples, 0.03%)</title><rect x="191.7" y="677" width="0.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="194.66" y="687.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="600.5" y="437" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="603.52" y="447.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="660.6" y="661" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="663.62" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (141,414,140 samples, 0.46%)</title><rect x="28.7" y="837" width="6.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="31.67" y="847.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (10,101,010 samples, 0.03%)</title><rect x="519.9" y="533" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="522.93" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.33%)</title><rect x="403.8" y="837" width="4.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="406.83" y="847.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.03%)</title><rect x="331.4" y="597" width="0.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="334.44" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="273.6" y="869" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="276.62" y="879.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="577.8" y="597" width="0.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="580.75" y="607.5" ></text>
+</g>
+<g >
+<title>[libsodium.so.23.3.0] (4,212,121,170 samples, 13.76%)</title><rect x="1143.7" y="949" width="189.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1146.69" y="959.5" >[libsodium.so.23.3.0]</text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.03%)</title><rect x="96.1" y="885" width="0.4" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="99.05" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_dx_find_entry (10,101,010 samples, 0.03%)</title><rect x="684.7" y="757" width="0.5" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="687.75" y="767.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (282,828,280 samples, 0.92%)</title><rect x="544.1" y="709" width="12.7" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="547.06" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstat (10,101,010 samples, 0.03%)</title><rect x="333.7" y="725" width="0.5" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="336.71" y="735.5" ></text>
+</g>
+<g >
+<title>security_file_free (10,101,010 samples, 0.03%)</title><rect x="22.3" y="805" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="25.29" y="815.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (70,707,070 samples, 0.23%)</title><rect x="449.8" y="645" width="3.2" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="452.82" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="154.8" y="629" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="157.78" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="345.1" y="773" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="348.10" y="783.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="722.1" y="869" width="0.4" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="725.08" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.33%)</title><rect x="403.8" y="853" width="4.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="406.83" y="863.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (20,202,020 samples, 0.07%)</title><rect x="449.8" y="501" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="452.82" y="511.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.03%)</title><rect x="62.8" y="725" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="65.81" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (141,414,140 samples, 0.46%)</title><rect x="28.7" y="869" width="6.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="31.67" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="275.4" y="853" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="278.44" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.07%)</title><rect x="601.4" y="661" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="604.43" y="671.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.03%)</title><rect x="627.4" y="453" width="0.4" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="630.38" y="463.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.07%)</title><rect x="642.9" y="709" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="645.86" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.03%)</title><rect x="51.0" y="869" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="53.98" y="879.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.03%)</title><rect x="492.2" y="757" width="0.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="495.16" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.07%)</title><rect x="536.3" y="725" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="539.32" y="735.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="668.8" y="677" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="671.81" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (20,202,020 samples, 0.07%)</title><rect x="118.4" y="645" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="121.36" y="655.5" ></text>
+</g>
+<g >
+<title>__lookup_mnt (10,101,010 samples, 0.03%)</title><rect x="56.9" y="837" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="59.90" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="453.5" y="853" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="456.46" y="863.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.03%)</title><rect x="38.7" y="933" width="0.4" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="41.68" y="943.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.03%)</title><rect x="616.5" y="773" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="619.45" y="783.5" ></text>
+</g>
+<g >
+<title>inode_permission (20,202,020 samples, 0.07%)</title><rect x="130.7" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="133.65" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="476.2" y="789" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="479.22" y="799.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="412.5" y="661" width="0.4" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="415.48" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (10,101,010 samples, 0.03%)</title><rect x="447.5" y="613" width="0.5" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="450.54" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (696,969,690 samples, 2.28%)</title><rect x="688.4" y="869" width="31.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="691.39" y="879.5" >x6..</text>
+</g>
+<g >
+<title>handle_mm_fault (232,323,230 samples, 0.76%)</title><rect x="1355.9" y="853" width="10.4" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1358.85" y="863.5" ></text>
+</g>
+<g >
+<title>do_linkat (20,202,020 samples, 0.07%)</title><rect x="351.5" y="725" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="354.47" y="735.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.03%)</title><rect x="334.6" y="661" width="0.5" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="337.63" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="476.7" y="709" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="479.68" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="182.6" y="725" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="185.56" y="735.5" ></text>
+</g>
+<g >
+<title>locked_inode_to_wb_and_lock_list (10,101,010 samples, 0.03%)</title><rect x="444.8" y="565" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="447.81" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (121,212,120 samples, 0.40%)</title><rect x="432.5" y="757" width="5.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="435.51" y="767.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (30,303,030 samples, 0.10%)</title><rect x="1038.5" y="725" width="1.4" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1041.51" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (20,202,020 samples, 0.07%)</title><rect x="1027.1" y="293" width="0.9" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1030.13" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (90,909,090 samples, 0.30%)</title><rect x="363.3" y="661" width="4.1" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="366.31" y="671.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="661" width="1.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1033.32" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="468.5" y="741" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="471.48" y="751.5" ></text>
+</g>
+<g >
+<title>ip_local_out (10,101,010 samples, 0.03%)</title><rect x="1017.6" y="693" width="0.4" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1020.57" y="703.5" ></text>
+</g>
+<g >
+<title>getdents64 (161,616,160 samples, 0.53%)</title><rect x="141.1" y="805" width="7.3" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="144.13" y="815.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="588.2" y="613" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="591.23" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (3,090,909,060 samples, 10.10%)</title><rect x="98.8" y="949" width="139.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="101.78" y="959.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>do_syscall_64 (484,848,480 samples, 1.58%)</title><rect x="58.3" y="1013" width="21.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="61.26" y="1023.5" >d..</text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.03%)</title><rect x="22.7" y="581" width="0.5" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="25.75" y="591.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="669.3" y="677" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="672.27" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (30,303,030 samples, 0.10%)</title><rect x="426.1" y="613" width="1.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="429.14" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_itable_unused_count (10,101,010 samples, 0.03%)</title><rect x="77.4" y="869" width="0.4" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="80.38" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (30,303,030 samples, 0.10%)</title><rect x="219.4" y="645" width="1.4" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="222.44" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="542.2" y="757" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="545.24" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="350.6" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="353.56" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.03%)</title><rect x="572.3" y="661" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="575.29" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.46%)</title><rect x="280.4" y="837" width="6.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="283.45" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_inode_attach_jinode (10,101,010 samples, 0.03%)</title><rect x="59.6" y="853" width="0.5" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="62.63" y="863.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (171,717,170 samples, 0.56%)</title><rect x="590.0" y="741" width="7.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="593.05" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.13%)</title><rect x="503.5" y="725" width="1.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="506.54" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_check_req (20,202,020 samples, 0.07%)</title><rect x="1035.3" y="325" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1038.32" y="335.5" ></text>
+</g>
+<g >
+<title>new_inode (10,101,010 samples, 0.03%)</title><rect x="567.3" y="661" width="0.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="570.28" y="671.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (20,202,020 samples, 0.07%)</title><rect x="1030.3" y="293" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1033.32" y="303.5" ></text>
+</g>
+<g >
+<title>mt_free_rcu (10,101,010 samples, 0.03%)</title><rect x="353.7" y="485" width="0.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="356.75" y="495.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.10%)</title><rect x="133.8" y="629" width="1.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="136.84" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="679.3" y="677" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="682.28" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="566.8" y="645" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="569.83" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="585.0" y="757" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="588.04" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.16%)</title><rect x="530.9" y="837" width="2.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="533.86" y="847.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="543.2" y="581" width="0.4" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="546.15" y="591.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.03%)</title><rect x="543.2" y="613" width="0.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="546.15" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="384.3" y="661" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="387.25" y="671.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.03%)</title><rect x="229.5" y="725" width="0.4" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="232.45" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="406.6" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="409.56" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (20,202,020 samples, 0.07%)</title><rect x="249.0" y="549" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="252.03" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="1044.4" y="853" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1047.43" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="676.6" y="725" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="679.55" y="735.5" ></text>
+</g>
+<g >
+<title>ip_output (60,606,060 samples, 0.20%)</title><rect x="1012.6" y="613" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1015.56" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="1034.9" y="933" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1037.87" y="943.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="208.5" y="533" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="211.51" y="543.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="1044.0" y="869" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1046.98" y="879.5" ></text>
+</g>
+<g >
+<title>printbuf_memappend (10,101,010 samples, 0.03%)</title><rect x="1373.6" y="869" width="0.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1376.61" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="556.8" y="645" width="0.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="559.81" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (494,949,490 samples, 1.62%)</title><rect x="1011.6" y="869" width="22.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1014.65" y="879.5" >x..</text>
+</g>
+<g >
+<title>ext4_free_blocks (30,303,030 samples, 0.10%)</title><rect x="219.4" y="613" width="1.4" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="222.44" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_queue_rcv (10,101,010 samples, 0.03%)</title><rect x="1380.4" y="309" width="0.5" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="1383.44" y="319.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="346.0" y="645" width="0.5" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="349.01" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.07%)</title><rect x="491.2" y="613" width="1.0" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="494.25" y="623.5" ></text>
+</g>
+<g >
+<title>list_lru_add (10,101,010 samples, 0.03%)</title><rect x="263.1" y="581" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="266.14" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="445.7" y="789" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="448.72" y="799.5" ></text>
+</g>
+<g >
+<title>__release_sock (20,202,020 samples, 0.07%)</title><rect x="1011.6" y="773" width="1.0" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1014.65" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_statx (111,111,110 samples, 0.36%)</title><rect x="580.0" y="757" width="5.0" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="583.03" y="767.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (10,101,010 samples, 0.03%)</title><rect x="448.4" y="725" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="451.45" y="735.5" ></text>
+</g>
+<g >
+<title>net_close (60,606,060 samples, 0.20%)</title><rect x="1379.1" y="997" width="2.7" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1382.07" y="1007.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (60,606,060 samples, 0.20%)</title><rect x="591.0" y="661" width="2.7" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="593.96" y="671.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="469.4" y="645" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="472.39" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="642.9" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="645.86" y="783.5" ></text>
+</g>
+<g >
+<title>lock_vma_under_rcu (10,101,010 samples, 0.03%)</title><rect x="1054.9" y="901" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1057.90" y="911.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="672.9" y="725" width="0.5" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="675.91" y="735.5" ></text>
+</g>
+<g >
+<title>d_alloc (20,202,020 samples, 0.07%)</title><rect x="580.9" y="661" width="1.0" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="583.94" y="671.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (20,202,020 samples, 0.07%)</title><rect x="1380.0" y="453" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1382.98" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="424.8" y="709" width="0.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="427.77" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (40,404,040 samples, 0.13%)</title><rect x="106.1" y="517" width="1.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="109.07" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (20,202,020 samples, 0.07%)</title><rect x="50.5" y="885" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="53.52" y="895.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (222,222,220 samples, 0.73%)</title><rect x="1334.9" y="885" width="10.0" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1337.91" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="105.6" y="485" width="0.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="108.61" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="408.4" y="837" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="411.38" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="453.9" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="456.91" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.03%)</title><rect x="211.2" y="581" width="0.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="214.24" y="591.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.03%)</title><rect x="1010.7" y="757" width="0.5" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1013.74" y="767.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="524.5" y="645" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="527.48" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (60,606,060 samples, 0.20%)</title><rect x="401.1" y="805" width="2.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="404.10" y="815.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="397.0" y="677" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="400.00" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="587.8" y="741" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="590.77" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.10%)</title><rect x="472.1" y="677" width="1.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="475.12" y="687.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.03%)</title><rect x="263.1" y="693" width="0.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="266.14" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (70,707,070 samples, 0.23%)</title><rect x="357.8" y="533" width="3.2" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="360.85" y="543.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (20,202,020 samples, 0.07%)</title><rect x="565.0" y="645" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="568.00" y="655.5" ></text>
+</g>
+<g >
+<title>git_repository_init (2,777,777,750 samples, 9.07%)</title><rect x="533.1" y="917" width="125.2" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="536.13" y="927.5" >git_repository_..</text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="384.7" y="773" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="387.71" y="783.5" ></text>
+</g>
+<g >
+<title>__sk_mem_reclaim (20,202,020 samples, 0.07%)</title><rect x="1015.3" y="677" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1018.29" y="687.5" ></text>
+</g>
+<g >
+<title>remove (181,818,180 samples, 0.59%)</title><rect x="119.3" y="773" width="8.2" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="122.27" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (10,101,010 samples, 0.03%)</title><rect x="560.5" y="613" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="563.45" y="623.5" ></text>
+</g>
+<g >
+<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="1347.7" y="901" width="0.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1350.66" y="911.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (10,101,010 samples, 0.03%)</title><rect x="277.3" y="645" width="0.4" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="280.26" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (121,212,120 samples, 0.40%)</title><rect x="458.0" y="773" width="5.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="461.01" y="783.5" ></text>
+</g>
+<g >
+<title>rmqueue (30,303,030 samples, 0.10%)</title><rect x="1004.4" y="645" width="1.3" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1007.36" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (393,939,390 samples, 1.29%)</title><rect x="618.3" y="757" width="17.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="621.27" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="357" width="1.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1033.32" y="367.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="394.3" y="677" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="397.27" y="687.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.03%)</title><rect x="294.6" y="629" width="0.4" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="297.56" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.03%)</title><rect x="115.2" y="597" width="0.4" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="118.17" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.03%)</title><rect x="568.6" y="581" width="0.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="571.65" y="591.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="409.7" y="485" width="0.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="412.75" y="495.5" ></text>
+</g>
+<g >
+<title>net_close (20,202,020 samples, 0.07%)</title><rect x="1034.0" y="997" width="0.9" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1036.96" y="1007.5" ></text>
+</g>
+<g >
+<title>realpath (20,202,020 samples, 0.07%)</title><rect x="483.1" y="821" width="0.9" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="486.05" y="831.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="759.0" y="741" width="0.4" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="761.96" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (171,717,170 samples, 0.56%)</title><rect x="10.0" y="1093" width="7.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="13.00" y="1103.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="322.8" y="629" width="0.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="325.79" y="639.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.03%)</title><rect x="303.2" y="869" width="0.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="306.21" y="879.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="579.6" y="709" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="582.57" y="719.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (30,303,030 samples, 0.10%)</title><rect x="465.8" y="853" width="1.3" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="468.75" y="863.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.03%)</title><rect x="656.1" y="709" width="0.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="659.06" y="719.5" ></text>
+</g>
+<g >
+<title>readdir64 (10,101,010 samples, 0.03%)</title><rect x="269.1" y="837" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="272.06" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (20,202,020 samples, 0.07%)</title><rect x="365.6" y="485" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="368.59" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_writepage_trans_blocks (10,101,010 samples, 0.03%)</title><rect x="211.7" y="645" width="0.5" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="214.70" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="268.2" y="773" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="271.15" y="783.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.03%)</title><rect x="481.7" y="645" width="0.4" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="484.69" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.13%)</title><rect x="506.3" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="509.27" y="735.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (20,202,020 samples, 0.07%)</title><rect x="163.0" y="549" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="165.98" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (101,010,100 samples, 0.33%)</title><rect x="513.1" y="533" width="4.6" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="516.10" y="543.5" ></text>
+</g>
+<g >
+<title>schedule (60,606,060 samples, 0.20%)</title><rect x="746.7" y="789" width="2.7" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="749.67" y="799.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="643.3" y="645" width="0.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="646.32" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="635.1" y="709" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="638.12" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.30%)</title><rect x="533.6" y="853" width="4.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="536.59" y="863.5" ></text>
+</g>
+<g >
+<title>_compound_head (10,101,010 samples, 0.03%)</title><rect x="742.6" y="661" width="0.4" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="745.57" y="671.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (222,222,220 samples, 0.73%)</title><rect x="1334.9" y="901" width="10.0" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1337.91" y="911.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.03%)</title><rect x="292.7" y="789" width="0.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="295.74" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.10%)</title><rect x="472.1" y="709" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="475.12" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.03%)</title><rect x="579.6" y="741" width="0.4" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="582.57" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="437.1" y="613" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="440.07" y="623.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (10,101,010 samples, 0.03%)</title><rect x="21.8" y="805" width="0.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="24.84" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.03%)</title><rect x="388.8" y="741" width="0.5" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="391.81" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="264.5" y="757" width="1.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="267.51" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.23%)</title><rect x="296.8" y="885" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="299.84" y="895.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="95.6" y="869" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="98.60" y="879.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="546.8" y="469" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="549.79" y="479.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (40,404,040 samples, 0.13%)</title><rect x="18.7" y="805" width="1.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="21.65" y="815.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.03%)</title><rect x="1380.4" y="373" width="0.5" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1383.44" y="383.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.03%)</title><rect x="22.7" y="709" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="25.75" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="260.0" y="677" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="262.96" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="654.7" y="709" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="657.70" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (80,808,080 samples, 0.26%)</title><rect x="121.5" y="613" width="3.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="124.55" y="623.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="337.4" y="677" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="340.36" y="687.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="591.9" y="469" width="0.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="594.87" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="1378.6" y="869" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1381.62" y="879.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.03%)</title><rect x="1346.3" y="773" width="0.4" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1349.29" y="783.5" ></text>
+</g>
+<g >
+<title>do_writepages (70,707,070 samples, 0.23%)</title><rect x="552.3" y="581" width="3.1" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="555.26" y="591.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.07%)</title><rect x="521.3" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="524.30" y="623.5" ></text>
+</g>
+<g >
+<title>ip_rcv (10,101,010 samples, 0.03%)</title><rect x="11.8" y="453" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="14.82" y="463.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.03%)</title><rect x="642.9" y="613" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="645.86" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.07%)</title><rect x="668.8" y="725" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="671.81" y="735.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.03%)</title><rect x="682.5" y="837" width="0.4" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="685.47" y="847.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (10,101,010 samples, 0.03%)</title><rect x="501.3" y="581" width="0.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="504.26" y="591.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.03%)</title><rect x="315.0" y="517" width="0.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="318.05" y="527.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="486.7" y="741" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="489.69" y="751.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="693" width="3.2" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1038.32" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="489.0" y="661" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="491.97" y="671.5" ></text>
+</g>
+<g >
+<title>ksys_read (30,303,030 samples, 0.10%)</title><rect x="1374.1" y="805" width="1.3" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1377.06" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="407.9" y="741" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="410.93" y="751.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.03%)</title><rect x="643.3" y="517" width="0.5" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="646.32" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="458.0" y="597" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="461.01" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.07%)</title><rect x="647.9" y="741" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="650.87" y="751.5" ></text>
+</g>
+<g >
+<title>nf_nat_ipv4_pre_routing (10,101,010 samples, 0.03%)</title><rect x="1041.7" y="469" width="0.5" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1044.70" y="479.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.03%)</title><rect x="294.6" y="645" width="0.4" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="297.56" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_close (50,505,050 samples, 0.16%)</title><rect x="1379.5" y="805" width="2.3" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1382.53" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (30,303,030 samples, 0.10%)</title><rect x="625.6" y="629" width="1.3" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="628.56" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="388.4" y="677" width="0.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="391.35" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="528.6" y="773" width="0.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="531.58" y="783.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="543.6" y="709" width="0.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="546.61" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.20%)</title><rect x="340.5" y="821" width="2.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="343.54" y="831.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.03%)</title><rect x="131.6" y="629" width="0.4" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="134.56" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (121,212,120 samples, 0.40%)</title><rect x="432.5" y="773" width="5.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="435.51" y="783.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="447.1" y="581" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="450.08" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="243.1" y="645" width="0.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="246.11" y="655.5" ></text>
+</g>
+<g >
+<title>perf_event_init_task (10,101,010 samples, 0.03%)</title><rect x="718.9" y="789" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="721.89" y="799.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="716.6" y="725" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="719.62" y="735.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (90,909,090 samples, 0.30%)</title><rect x="363.3" y="613" width="4.1" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="366.31" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.03%)</title><rect x="429.8" y="517" width="0.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="432.78" y="527.5" ></text>
+</g>
+<g >
+<title>__pte_offset_map_lock (20,202,020 samples, 0.07%)</title><rect x="1338.1" y="837" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1341.10" y="847.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.03%)</title><rect x="319.6" y="629" width="0.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="322.60" y="639.5" ></text>
+</g>
+<g >
+<title>fprintf (30,303,030 samples, 0.10%)</title><rect x="1377.7" y="965" width="1.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1380.71" y="975.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.03%)</title><rect x="147.5" y="581" width="0.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="150.50" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="285.9" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="288.91" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.03%)</title><rect x="384.3" y="597" width="0.4" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="387.25" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="480.3" y="725" width="1.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="483.32" y="735.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="199.9" y="597" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="202.86" y="607.5" ></text>
+</g>
+<g >
+<title>getdents64 (30,303,030 samples, 0.10%)</title><rect x="224.9" y="869" width="1.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="227.90" y="879.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (212,121,210 samples, 0.69%)</title><rect x="509.0" y="693" width="9.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="512.00" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="570.9" y="613" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="573.92" y="623.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.03%)</title><rect x="340.1" y="565" width="0.4" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="343.09" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="655.2" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="658.15" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="242.2" y="597" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="245.20" y="607.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (40,404,040 samples, 0.13%)</title><rect x="1013.0" y="405" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1016.02" y="415.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.03%)</title><rect x="621.0" y="677" width="0.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="624.01" y="687.5" ></text>
+</g>
+<g >
+<title>__futex_wait (10,101,010 samples, 0.03%)</title><rect x="21.4" y="821" width="0.4" height="15.0" fill="rgb(0,192,11)" rx="2" ry="2" />
+<text x="24.38" y="831.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.03%)</title><rect x="364.2" y="437" width="0.5" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="367.22" y="447.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (40,404,040 samples, 0.13%)</title><rect x="573.7" y="725" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="576.66" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (575,757,570 samples, 1.88%)</title><rect x="724.8" y="869" width="26.0" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="727.81" y="879.5" >x..</text>
+</g>
+<g >
+<title>__fput_sync (50,505,050 samples, 0.16%)</title><rect x="1379.5" y="885" width="2.3" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1382.53" y="895.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.33%)</title><rect x="571.8" y="837" width="4.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="574.83" y="847.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (20,202,020 samples, 0.07%)</title><rect x="246.3" y="741" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="249.30" y="751.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (30,303,030 samples, 0.10%)</title><rect x="1377.7" y="901" width="1.4" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="1380.71" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (20,202,020 samples, 0.07%)</title><rect x="198.5" y="677" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="201.49" y="687.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="643.3" y="549" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="646.32" y="559.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (10,101,010 samples, 0.03%)</title><rect x="132.5" y="613" width="0.4" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="135.47" y="623.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.03%)</title><rect x="478.0" y="565" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="481.04" y="575.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="505.8" y="725" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="508.82" y="735.5" ></text>
+</g>
+<g >
+<title>apparmor_file_alloc_security (10,101,010 samples, 0.03%)</title><rect x="587.8" y="613" width="0.4" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="590.77" y="623.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="499.0" y="709" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="501.99" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="668.8" y="821" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="671.81" y="831.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.03%)</title><rect x="682.0" y="773" width="0.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="685.02" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (70,707,070 samples, 0.23%)</title><rect x="1035.3" y="341" width="3.2" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1038.32" y="351.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="100.6" y="533" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="103.60" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_open (20,202,020 samples, 0.07%)</title><rect x="472.1" y="597" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="475.12" y="607.5" ></text>
+</g>
+<g >
+<title>git_reference_normalize_name (20,202,020 samples, 0.07%)</title><rect x="399.7" y="837" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="402.73" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="677.0" y="613" width="0.5" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="680.01" y="623.5" ></text>
+</g>
+<g >
+<title>down_read_killable (10,101,010 samples, 0.03%)</title><rect x="117.9" y="677" width="0.5" height="15.0" fill="rgb(0,192,11)" rx="2" ry="2" />
+<text x="120.90" y="687.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="653.8" y="693" width="0.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="656.79" y="703.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (20,202,020 samples, 0.07%)</title><rect x="1345.8" y="869" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1348.84" y="879.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.10%)</title><rect x="495.8" y="773" width="1.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="498.80" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (20,202,020 samples, 0.07%)</title><rect x="601.4" y="613" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="604.43" y="623.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="600.1" y="709" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="603.06" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (20,202,020 samples, 0.07%)</title><rect x="535.0" y="661" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="537.96" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="543.2" y="661" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="546.15" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.03%)</title><rect x="384.3" y="693" width="0.4" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="387.25" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.03%)</title><rect x="210.3" y="517" width="0.5" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="213.33" y="527.5" ></text>
+</g>
+<g >
+<title>inet6_sendmsg (30,303,030 samples, 0.10%)</title><rect x="10.9" y="853" width="1.4" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="13.91" y="863.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="376.5" y="741" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="379.51" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.16%)</title><rect x="290.0" y="773" width="2.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="293.01" y="783.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.03%)</title><rect x="682.0" y="885" width="0.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="685.02" y="895.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="300.9" y="661" width="0.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="303.93" y="671.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="485.8" y="581" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="488.78" y="591.5" ></text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.07%)</title><rect x="246.3" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="249.30" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="572.3" y="709" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="575.29" y="719.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="677" width="1.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1386.17" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="757.1" y="821" width="1.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="760.14" y="831.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.03%)</title><rect x="521.3" y="581" width="0.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="524.30" y="591.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.03%)</title><rect x="1346.3" y="709" width="0.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1349.29" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.03%)</title><rect x="227.2" y="629" width="0.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="230.18" y="639.5" ></text>
+</g>
+<g >
+<title>do_futex (40,404,040 samples, 0.13%)</title><rect x="15.9" y="917" width="1.8" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="18.92" y="927.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_post_alloc_hook (10,101,010 samples, 0.03%)</title><rect x="1381.8" y="789" width="0.5" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1384.80" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="154.8" y="645" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="157.78" y="655.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.03%)</title><rect x="654.7" y="629" width="0.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="657.70" y="639.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.03%)</title><rect x="600.1" y="725" width="0.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="603.06" y="735.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.03%)</title><rect x="267.2" y="725" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="270.24" y="735.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.03%)</title><rect x="391.1" y="613" width="0.4" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="394.08" y="623.5" ></text>
+</g>
+<g >
+<title>net_accept (70,707,070 samples, 0.23%)</title><rect x="35.5" y="949" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="38.50" y="959.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.03%)</title><rect x="457.1" y="757" width="0.5" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="460.10" y="767.5" ></text>
+</g>
+<g >
+<title>fsnotify (10,101,010 samples, 0.03%)</title><rect x="194.4" y="741" width="0.4" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="197.39" y="751.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.03%)</title><rect x="195.3" y="741" width="0.5" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="198.31" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (30,303,030 samples, 0.10%)</title><rect x="1028.5" y="309" width="1.4" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="1031.50" y="319.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.03%)</title><rect x="363.3" y="533" width="0.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="366.31" y="543.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.07%)</title><rect x="402.5" y="661" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="405.46" y="671.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.03%)</title><rect x="43.7" y="837" width="0.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="46.69" y="847.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.03%)</title><rect x="1373.2" y="805" width="0.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1376.15" y="815.5" ></text>
+</g>
+<g >
+<title>readdir64 (161,616,160 samples, 0.53%)</title><rect x="141.1" y="821" width="7.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="144.13" y="831.5" ></text>
+</g>
+<g >
+<title>sock_alloc (10,101,010 samples, 0.03%)</title><rect x="1382.3" y="869" width="0.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1385.26" y="879.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.07%)</title><rect x="279.5" y="869" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="282.53" y="879.5" ></text>
+</g>
+<g >
+<title>lockref_put_return (10,101,010 samples, 0.03%)</title><rect x="609.6" y="709" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="612.62" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.03%)</title><rect x="407.5" y="629" width="0.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="410.47" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (10,101,010 samples, 0.03%)</title><rect x="433.0" y="613" width="0.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="435.97" y="623.5" ></text>
+</g>
+<g >
+<title>git_reference_foreach_name (121,212,120 samples, 0.40%)</title><rect x="476.2" y="853" width="5.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="479.22" y="863.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.10%)</title><rect x="539.1" y="805" width="1.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="542.05" y="815.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.03%)</title><rect x="430.7" y="501" width="0.4" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="433.69" y="511.5" ></text>
+</g>
+<g >
+<title>path_openat (50,505,050 samples, 0.16%)</title><rect x="530.9" y="757" width="2.2" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="533.86" y="767.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="636.5" y="709" width="0.4" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="639.49" y="719.5" ></text>
+</g>
+<g >
+<title>inode_init_always (10,101,010 samples, 0.03%)</title><rect x="621.9" y="693" width="0.5" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="624.92" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mb_use_best_found (10,101,010 samples, 0.03%)</title><rect x="516.7" y="453" width="0.5" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="519.74" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (272,727,270 samples, 0.89%)</title><rect x="441.2" y="853" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="444.16" y="863.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="59.2" y="885" width="0.4" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="62.17" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.10%)</title><rect x="467.6" y="821" width="1.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="470.57" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (20,202,020 samples, 0.07%)</title><rect x="567.7" y="549" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="570.74" y="559.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="241.3" y="661" width="0.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="244.29" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.03%)</title><rect x="222.6" y="677" width="0.5" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="225.62" y="687.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.03%)</title><rect x="468.9" y="709" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="471.94" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.07%)</title><rect x="229.5" y="901" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="232.45" y="911.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (10,101,010 samples, 0.03%)</title><rect x="682.5" y="917" width="0.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="685.47" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="232.2" y="693" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="235.18" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (171,717,170 samples, 0.56%)</title><rect x="152.1" y="677" width="7.7" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="155.05" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (60,606,060 samples, 0.20%)</title><rect x="610.5" y="581" width="2.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="613.53" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.03%)</title><rect x="234.5" y="773" width="0.4" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="237.46" y="783.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (60,606,060 samples, 0.20%)</title><rect x="610.5" y="629" width="2.8" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="613.53" y="639.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.03%)</title><rect x="290.0" y="757" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="293.01" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="298.7" y="741" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="301.66" y="751.5" ></text>
+</g>
+<g >
+<title>apparmor_d_instantiate (10,101,010 samples, 0.03%)</title><rect x="753.0" y="773" width="0.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="756.04" y="783.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.03%)</title><rect x="390.6" y="565" width="0.5" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="393.63" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.07%)</title><rect x="537.7" y="821" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="540.69" y="831.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (60,606,060 samples, 0.20%)</title><rect x="1012.6" y="661" width="2.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1015.56" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (161,616,160 samples, 0.53%)</title><rect x="119.3" y="709" width="7.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="122.27" y="719.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="468.9" y="677" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="471.94" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="638.8" y="837" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="641.76" y="847.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.03%)</title><rect x="585.0" y="837" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="588.04" y="847.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="505.8" y="677" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="508.82" y="687.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (40,404,040 samples, 0.13%)</title><rect x="1383.2" y="629" width="1.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1386.17" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="509.5" y="581" width="0.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="512.46" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_stream_alloc_skb (10,101,010 samples, 0.03%)</title><rect x="1043.1" y="805" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1046.06" y="815.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_uncharge_skmem (10,101,010 samples, 0.03%)</title><rect x="23.2" y="645" width="0.5" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="26.20" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_newly_delivered (10,101,010 samples, 0.03%)</title><rect x="1016.2" y="709" width="0.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="1019.20" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="386.5" y="757" width="1.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="389.53" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.03%)</title><rect x="585.5" y="693" width="0.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="588.49" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (10,101,010 samples, 0.03%)</title><rect x="1385.9" y="437" width="0.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1388.90" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_validate_inode_bitmap (10,101,010 samples, 0.03%)</title><rect x="621.0" y="709" width="0.5" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="624.01" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="585.5" y="725" width="0.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="588.49" y="735.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.03%)</title><rect x="1009.8" y="805" width="0.5" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1012.83" y="815.5" ></text>
+</g>
+<g >
+<title>git_repository__cleanup (222,222,220 samples, 0.73%)</title><rect x="88.8" y="933" width="10.0" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="91.77" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="71.0" y="773" width="0.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="74.01" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="493.1" y="805" width="0.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="496.07" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (20,202,020 samples, 0.07%)</title><rect x="272.7" y="693" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="275.71" y="703.5" ></text>
+</g>
+<g >
+<title>mkdir (151,515,150 samples, 0.49%)</title><rect x="47.8" y="1029" width="6.8" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="50.79" y="1039.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.03%)</title><rect x="210.8" y="501" width="0.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="213.79" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.07%)</title><rect x="237.2" y="917" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="240.19" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.03%)</title><rect x="357.4" y="501" width="0.4" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="360.39" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (30,303,030 samples, 0.10%)</title><rect x="596.0" y="565" width="1.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="598.97" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.03%)</title><rect x="513.1" y="485" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="516.10" y="495.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="484.0" y="789" width="0.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="486.96" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="468.0" y="789" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="471.03" y="799.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (10,101,010 samples, 0.03%)</title><rect x="12.3" y="1013" width="0.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="15.28" y="1023.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.03%)</title><rect x="216.2" y="693" width="0.5" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="219.25" y="703.5" ></text>
+</g>
+<g >
+<title>readdir64 (70,707,070 samples, 0.23%)</title><rect x="193.0" y="853" width="3.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="196.03" y="863.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (50,505,050 samples, 0.16%)</title><rect x="656.1" y="789" width="2.2" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="659.06" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (40,404,040 samples, 0.13%)</title><rect x="93.3" y="837" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="96.32" y="847.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.03%)</title><rect x="224.9" y="725" width="0.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="227.90" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="466.2" y="725" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="469.21" y="735.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (40,404,040 samples, 0.13%)</title><rect x="1013.0" y="389" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1016.02" y="399.5" ></text>
+</g>
+<g >
+<title>__block_commit_write (10,101,010 samples, 0.03%)</title><rect x="577.8" y="661" width="0.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="580.75" y="671.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.03%)</title><rect x="192.1" y="773" width="0.5" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="195.12" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.03%)</title><rect x="332.8" y="805" width="0.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="335.80" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.03%)</title><rect x="757.6" y="757" width="0.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="760.59" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (10,101,010 samples, 0.03%)</title><rect x="382.9" y="581" width="0.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="385.89" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.13%)</title><rect x="506.3" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="509.27" y="719.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.03%)</title><rect x="257.2" y="597" width="0.5" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="260.23" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.33%)</title><rect x="467.1" y="901" width="4.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="470.12" y="911.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.03%)</title><rect x="302.3" y="677" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="305.30" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (30,303,030 samples, 0.10%)</title><rect x="294.1" y="709" width="1.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="297.10" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.03%)</title><rect x="458.5" y="597" width="0.4" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="461.47" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="265.9" y="773" width="0.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="268.88" y="783.5" ></text>
+</g>
+<g >
+<title>mt_find (10,101,010 samples, 0.03%)</title><rect x="745.3" y="677" width="0.5" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="748.30" y="687.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range (20,202,020 samples, 0.07%)</title><rect x="1370.4" y="869" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1373.42" y="879.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (101,010,100 samples, 0.33%)</title><rect x="571.8" y="805" width="4.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="574.83" y="815.5" ></text>
+</g>
+<g >
+<title>blkcg_maybe_throttle_current (10,101,010 samples, 0.03%)</title><rect x="589.6" y="725" width="0.4" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="592.59" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_link (10,101,010 samples, 0.03%)</title><rect x="556.8" y="757" width="0.5" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="559.81" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstat (10,101,010 samples, 0.03%)</title><rect x="140.7" y="725" width="0.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="143.67" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="529.9" y="741" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="532.95" y="751.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.03%)</title><rect x="164.8" y="517" width="0.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="167.80" y="527.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.03%)</title><rect x="185.7" y="629" width="0.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="188.74" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (30,303,030 samples, 0.10%)</title><rect x="145.2" y="677" width="1.4" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="148.22" y="687.5" ></text>
+</g>
+<g >
+<title>evict (50,505,050 samples, 0.16%)</title><rect x="458.0" y="661" width="2.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="461.01" y="671.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.03%)</title><rect x="658.3" y="645" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="661.34" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.03%)</title><rect x="199.9" y="613" width="0.4" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="202.86" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.03%)</title><rect x="348.7" y="741" width="0.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="351.74" y="751.5" ></text>
+</g>
+<g >
+<title>fsnotify_grab_connector (10,101,010 samples, 0.03%)</title><rect x="114.7" y="565" width="0.5" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="117.72" y="575.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.07%)</title><rect x="757.1" y="853" width="1.0" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="760.14" y="863.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.03%)</title><rect x="1373.2" y="821" width="0.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1376.15" y="831.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.03%)</title><rect x="710.2" y="661" width="0.5" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="713.24" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.07%)</title><rect x="217.2" y="645" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="220.16" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.03%)</title><rect x="490.8" y="597" width="0.4" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="493.79" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="438.4" y="709" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="441.43" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.07%)</title><rect x="637.9" y="789" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="640.85" y="799.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.03%)</title><rect x="298.7" y="805" width="0.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="301.66" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="660.6" y="773" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="663.62" y="783.5" ></text>
+</g>
+<g >
+<title>__fput_sync (20,202,020 samples, 0.07%)</title><rect x="14.6" y="901" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="17.55" y="911.5" ></text>
+</g>
+<g >
+<title>mnt_want_write (10,101,010 samples, 0.03%)</title><rect x="327.3" y="709" width="0.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="330.34" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (878,787,870 samples, 2.87%)</title><rect x="493.5" y="885" width="39.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="496.52" y="895.5" >[li..</text>
+</g>
+<g >
+<title>futex_wait (10,101,010 samples, 0.03%)</title><rect x="21.4" y="837" width="0.4" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="24.38" y="847.5" ></text>
+</g>
+<g >
+<title>tcp_child_process (20,202,020 samples, 0.07%)</title><rect x="1384.1" y="325" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1387.08" y="335.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (343,434,340 samples, 1.12%)</title><rect x="238.1" y="949" width="15.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="241.10" y="959.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.03%)</title><rect x="1041.2" y="405" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1044.24" y="415.5" ></text>
+</g>
+<g >
+<title>inet_sendmsg (494,949,490 samples, 1.62%)</title><rect x="1011.6" y="821" width="22.4" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1014.65" y="831.5" >i..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.03%)</title><rect x="438.4" y="725" width="0.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="441.43" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.03%)</title><rect x="679.7" y="741" width="0.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="682.74" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (101,010,100 samples, 0.33%)</title><rect x="334.6" y="757" width="4.6" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="337.63" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (20,202,020 samples, 0.07%)</title><rect x="163.0" y="565" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="165.98" y="575.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.03%)</title><rect x="646.0" y="613" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="649.05" y="623.5" ></text>
+</g>
+<g >
+<title>generic_update_time (20,202,020 samples, 0.07%)</title><rect x="225.4" y="757" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="228.35" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.03%)</title><rect x="399.3" y="661" width="0.4" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="402.28" y="671.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.03%)</title><rect x="1057.6" y="853" width="0.5" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1060.63" y="863.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.03%)</title><rect x="123.4" y="565" width="0.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="126.37" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.07%)</title><rect x="235.8" y="725" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="238.83" y="735.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.03%)</title><rect x="67.4" y="837" width="0.4" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="70.37" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (50,505,050 samples, 0.16%)</title><rect x="530.9" y="805" width="2.2" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="533.86" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (20,202,020 samples, 0.07%)</title><rect x="186.7" y="661" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="189.65" y="671.5" ></text>
+</g>
+<g >
+<title>libgit_repository_free (242,424,240 samples, 0.79%)</title><rect x="87.9" y="965" width="10.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="90.86" y="975.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (30,303,030 samples, 0.10%)</title><rect x="1030.3" y="533" width="1.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1033.32" y="543.5" ></text>
+</g>
+<g >
+<title>pipe_read (535,353,530 samples, 1.75%)</title><rect x="725.3" y="805" width="24.1" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="728.27" y="815.5" >p..</text>
+</g>
+<g >
+<title>__do_sys_brk (252,525,250 samples, 0.82%)</title><rect x="759.0" y="789" width="11.3" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="761.96" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.03%)</title><rect x="673.8" y="757" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="676.82" y="767.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (30,303,030 samples, 0.10%)</title><rect x="389.7" y="725" width="1.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="392.72" y="735.5" ></text>
+</g>
+<g >
+<title>process_timeout (10,101,010 samples, 0.03%)</title><rect x="601.0" y="565" width="0.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="603.97" y="575.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.07%)</title><rect x="575.5" y="773" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="578.48" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.03%)</title><rect x="585.9" y="725" width="0.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="588.95" y="735.5" ></text>
+</g>
+<g >
+<title>getdents64 (10,101,010 samples, 0.03%)</title><rect x="234.5" y="901" width="0.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="237.46" y="911.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.03%)</title><rect x="677.0" y="645" width="0.5" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="680.01" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.03%)</title><rect x="49.2" y="869" width="0.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="52.16" y="879.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..40ab68c
--- /dev/null
+++ b/flame_graphs/flame_graph_output_simple.svg
@@ -0,0 +1,32050 @@
+<?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;
+ if (currentSearchTerm === null) return;
+
+ 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>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1092.3" y="709" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1095.28" y="719.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="911.0" y="725" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="914.03" y="735.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (30,303,030 samples, 0.19%)</title><rect x="25.8" y="805" width="2.6" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="28.76" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="31.0" y="853" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="34.02" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="998.6" y="581" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1001.59" y="591.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="117" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1375.49" y="127.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="763.0" y="613" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="766.05" y="623.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="1270.0" y="661" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="1273.04" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="906.6" y="645" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="909.65" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="794.6" y="421" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="797.57" y="431.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="918.0" y="501" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="921.03" y="511.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.06%)</title><rect x="1228.0" y="725" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1231.01" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_es_delayed_clu (10,101,010 samples, 0.06%)</title><rect x="1044.1" y="581" width="0.9" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1047.12" y="591.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1250.8" y="597" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1253.77" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.06%)</title><rect x="658.0" y="517" width="0.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="660.97" y="527.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="357" width="2.6" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1367.61" y="367.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (40,404,040 samples, 0.25%)</title><rect x="36.3" y="325" width="3.5" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="39.27" y="335.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="654.5" y="453" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="657.47" y="463.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="524.0" y="645" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="527.00" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="491.6" y="709" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="494.60" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_io_submit (10,101,010 samples, 0.06%)</title><rect x="1099.3" y="485" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="1102.29" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="629" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1221.38" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (20,202,020 samples, 0.13%)</title><rect x="740.3" y="597" width="1.7" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="743.28" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (60,606,060 samples, 0.38%)</title><rect x="791.9" y="517" width="5.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="794.94" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="16.1" y="933" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="19.13" y="943.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (242,424,240 samples, 1.52%)</title><rect x="1121.2" y="709" width="21.0" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1124.18" y="719.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_uncharge_list (10,101,010 samples, 0.06%)</title><rect x="429.4" y="629" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="432.43" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (30,303,030 samples, 0.19%)</title><rect x="1089.7" y="549" width="2.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1092.66" y="559.5" ></text>
+</g>
+<g >
+<title>do_softirq (10,101,010 samples, 0.06%)</title><rect x="35.4" y="453" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="38.39" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="515.2" y="805" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="518.24" y="815.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="378.6" y="549" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="381.64" y="559.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="707.0" y="565" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="710.01" y="575.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.06%)</title><rect x="883.9" y="533" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="886.88" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.06%)</title><rect x="817.3" y="517" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="820.34" y="527.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="936.4" y="549" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="939.42" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="355.9" y="581" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="358.88" y="591.5" ></text>
+</g>
+<g >
+<title>lockref_get (10,101,010 samples, 0.06%)</title><rect x="1224.5" y="533" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="1227.51" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1219.3" y="661" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1222.25" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="688.6" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="691.62" y="687.5" ></text>
+</g>
+<g >
+<title>client_destroy (151,515,150 samples, 0.95%)</title><rect x="29.3" y="917" width="13.1" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="32.26" y="927.5" ></text>
+</g>
+<g >
+<title>p4d_offset (10,101,010 samples, 0.06%)</title><rect x="1315.6" y="805" width="0.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1318.57" y="815.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.06%)</title><rect x="811.2" y="581" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="814.21" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.06%)</title><rect x="428.6" y="773" width="0.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="431.55" y="783.5" ></text>
+</g>
+<g >
+<title>unmap_region (10,101,010 samples, 0.06%)</title><rect x="328.7" y="613" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="331.73" y="623.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="469" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1348.34" y="479.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="17.0" y="917" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="20.01" y="927.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="706.1" y="597" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="709.13" y="607.5" ></text>
+</g>
+<g >
+<title>__memset (20,202,020 samples, 0.13%)</title><rect x="54.7" y="693" width="1.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="57.66" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="673.7" y="597" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="676.73" y="607.5" ></text>
+</g>
+<g >
+<title>__d_add (10,101,010 samples, 0.06%)</title><rect x="782.3" y="501" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="785.31" y="511.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.06%)</title><rect x="1230.6" y="597" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1233.63" y="607.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="613" width="1.7" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1389.50" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (30,303,030 samples, 0.19%)</title><rect x="1260.4" y="677" width="2.6" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1263.41" y="687.5" ></text>
+</g>
+<g >
+<title>save_fpregs_to_fpstate (10,101,010 samples, 0.06%)</title><rect x="118.6" y="741" width="0.9" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="121.58" y="751.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="366.4" y="677" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="369.38" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="709" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1248.52" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="882.1" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="885.13" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="835.7" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="838.72" y="671.5" ></text>
+</g>
+<g >
+<title>os_xsave (10,101,010 samples, 0.06%)</title><rect x="118.6" y="725" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="121.58" y="735.5" ></text>
+</g>
+<g >
+<title>git_repository_free (10,101,010 samples, 0.06%)</title><rect x="755.2" y="789" width="0.8" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="758.16" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="148.4" y="805" width="0.8" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="151.35" y="815.5" ></text>
+</g>
+<g >
+<title>filemap_release_folio (10,101,010 samples, 0.06%)</title><rect x="818.2" y="501" width="0.9" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="821.21" y="511.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.06%)</title><rect x="389.1" y="533" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="392.15" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (898,989,890 samples, 5.65%)</title><rect x="912.8" y="837" width="77.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="915.78" y="847.5" >[libgit2...</text>
+</g>
+<g >
+<title>__slab_free (10,101,010 samples, 0.06%)</title><rect x="263.1" y="437" width="0.8" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="266.06" y="447.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="689.5" y="613" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="692.49" y="623.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_free_hook (10,101,010 samples, 0.06%)</title><rect x="1371.6" y="197" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1374.61" y="207.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="156.2" y="741" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="159.23" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="167.6" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="170.61" y="783.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (90,909,090 samples, 0.57%)</title><rect x="1122.9" y="629" width="7.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1125.93" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="1165.0" y="565" width="2.6" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1167.96" y="575.5" ></text>
+</g>
+<g >
+<title>__napi_poll (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="517" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1389.50" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="1009.1" y="581" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1012.10" y="591.5" ></text>
+</g>
+<g >
+<title>destroy_inode (10,101,010 samples, 0.06%)</title><rect x="351.5" y="629" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="354.50" y="639.5" ></text>
+</g>
+<g >
+<title>net_send_buf (40,404,040 samples, 0.25%)</title><rect x="11.8" y="949" width="3.5" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="14.75" y="959.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (151,515,150 samples, 0.95%)</title><rect x="950.4" y="629" width="13.2" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="953.43" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="545.0" y="805" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="548.01" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (202,020,200 samples, 1.27%)</title><rect x="1087.0" y="789" width="17.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1090.03" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="603.7" y="597" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="606.68" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="200.0" y="533" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="203.01" y="543.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1188.6" y="741" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1191.60" y="751.5" ></text>
+</g>
+<g >
+<title>git_error_set (10,101,010 samples, 0.06%)</title><rect x="486.3" y="757" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="489.35" y="767.5" ></text>
+</g>
+<g >
+<title>inode_update_timestamps (10,101,010 samples, 0.06%)</title><rect x="435.6" y="629" width="0.8" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="438.56" y="639.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.19%)</title><rect x="311.2" y="725" width="2.6" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="314.22" y="735.5" ></text>
+</g>
+<g >
+<title>path_openat (50,505,050 samples, 0.32%)</title><rect x="770.9" y="581" width="4.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="773.93" y="591.5" ></text>
+</g>
+<g >
+<title>evict (40,404,040 samples, 0.25%)</title><rect x="424.2" y="709" width="3.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="427.18" y="719.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="96.7" y="853" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="99.69" y="863.5" ></text>
+</g>
+<g >
+<title>tcp_conn_request (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="309" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1348.34" y="319.5" ></text>
+</g>
+<g >
+<title>vfs_statx (40,404,040 samples, 0.25%)</title><rect x="368.1" y="709" width="3.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="371.13" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.06%)</title><rect x="450.4" y="613" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="453.44" y="623.5" ></text>
+</g>
+<g >
+<title>should_failslab.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="343.6" y="613" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="346.62" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="417.2" y="645" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="420.17" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="741" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1022.61" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="453.9" y="693" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="456.95" y="703.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (60,606,060 samples, 0.38%)</title><rect x="306.0" y="661" width="5.2" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="308.96" y="671.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (40,404,040 samples, 0.25%)</title><rect x="897.9" y="645" width="3.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="900.89" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (20,202,020 samples, 0.13%)</title><rect x="234.2" y="581" width="1.7" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="237.16" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="805" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1319.45" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_symlink (30,303,030 samples, 0.19%)</title><rect x="1060.8" y="709" width="2.6" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1063.76" y="719.5" ></text>
+</g>
+<g >
+<title>mpage_submit_folio (10,101,010 samples, 0.06%)</title><rect x="848.0" y="485" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="850.98" y="495.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="712.3" y="533" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="715.26" y="543.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="752.5" y="549" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="755.54" y="559.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="328.7" y="789" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="331.73" y="799.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.06%)</title><rect x="732.4" y="469" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="735.40" y="479.5" ></text>
+</g>
+<g >
+<title>json_object_to_json_string_length (10,101,010 samples, 0.06%)</title><rect x="10.9" y="917" width="0.9" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="13.88" y="927.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1207.9" y="677" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1210.87" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1146.6" y="677" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1149.57" y="687.5" ></text>
+</g>
+<g >
+<title>generic_update_time (10,101,010 samples, 0.06%)</title><rect x="422.4" y="741" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="425.42" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (20,202,020 samples, 0.13%)</title><rect x="880.4" y="549" width="1.7" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="883.38" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1126.4" y="469" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1129.43" y="479.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="908.4" y="693" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="911.40" y="703.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="629" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1348.34" y="639.5" ></text>
+</g>
+<g >
+<title>unlink (90,909,090 samples, 0.57%)</title><rect x="184.3" y="693" width="7.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="187.25" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="192.1" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="195.13" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="900.5" y="629" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="903.52" y="639.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.06%)</title><rect x="742.9" y="501" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="745.91" y="511.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (20,202,020 samples, 0.13%)</title><rect x="162.4" y="741" width="1.7" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="165.36" y="751.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.06%)</title><rect x="263.1" y="501" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="266.06" y="511.5" ></text>
+</g>
+<g >
+<title>tzset (10,101,010 samples, 0.06%)</title><rect x="984.6" y="741" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="987.58" y="751.5" ></text>
+</g>
+<g >
+<title>set_root (10,101,010 samples, 0.06%)</title><rect x="1076.5" y="629" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1079.52" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="548.5" y="789" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="551.52" y="799.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (20,202,020 samples, 0.13%)</title><rect x="12.6" y="373" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="15.63" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (70,707,070 samples, 0.44%)</title><rect x="380.4" y="613" width="6.1" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="383.39" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="750.8" y="757" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="753.79" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="213.1" y="757" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="216.15" y="767.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="230.7" y="533" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="233.66" y="543.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="1153.6" y="629" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="1156.58" y="639.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (20,202,020 samples, 0.13%)</title><rect x="1007.3" y="549" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1010.35" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="501" width="5.2" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1102.29" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="1187.7" y="677" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1190.73" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.06%)</title><rect x="884.8" y="597" width="0.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="887.76" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (20,202,020 samples, 0.13%)</title><rect x="1030.1" y="533" width="1.8" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="1033.11" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.06%)</title><rect x="932.0" y="469" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="935.04" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (40,404,040 samples, 0.25%)</title><rect x="380.4" y="581" width="3.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="383.39" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="1153.6" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1156.58" y="671.5" ></text>
+</g>
+<g >
+<title>apparmor_path_rename (10,101,010 samples, 0.06%)</title><rect x="820.0" y="661" width="0.8" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="822.96" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (20,202,020 samples, 0.13%)</title><rect x="1045.9" y="565" width="1.7" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1048.88" y="575.5" ></text>
+</g>
+<g >
+<title>dentry_free (10,101,010 samples, 0.06%)</title><rect x="363.8" y="629" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="366.76" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (10,101,010 samples, 0.06%)</title><rect x="414.5" y="661" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="417.54" y="671.5" ></text>
+</g>
+<g >
+<title>_atomic_dec_and_lock (10,101,010 samples, 0.06%)</title><rect x="410.2" y="709" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="413.16" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1217.00" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (60,606,060 samples, 0.38%)</title><rect x="1006.5" y="709" width="5.2" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1009.47" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1154.5" y="645" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1157.45" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.57%)</title><rect x="730.6" y="789" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="733.65" y="799.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (30,303,030 samples, 0.19%)</title><rect x="798.9" y="757" width="2.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="801.95" y="767.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="663.2" y="565" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="666.22" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1229.8" y="725" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1232.76" y="735.5" ></text>
+</g>
+<g >
+<title>rmdir (545,454,540 samples, 3.43%)</title><rect x="257.8" y="741" width="47.3" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="260.80" y="751.5" >rmdir</text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="789" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1258.15" y="799.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.06%)</title><rect x="773.6" y="485" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="776.55" y="495.5" ></text>
+</g>
+<g >
+<title>mkdir (111,111,110 samples, 0.70%)</title><rect x="1263.9" y="869" width="9.6" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1266.91" y="879.5" ></text>
+</g>
+<g >
+<title>_atomic_dec_and_lock (10,101,010 samples, 0.06%)</title><rect x="236.8" y="597" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="239.79" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1206.1" y="693" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1209.12" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="972.3" y="485" width="1.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="975.32" y="495.5" ></text>
+</g>
+<g >
+<title>__tcp_close (50,505,050 samples, 0.32%)</title><rect x="35.4" y="677" width="4.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="38.39" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="834.0" y="485" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="836.97" y="495.5" ></text>
+</g>
+<g >
+<title>path_lookupat (70,707,070 samples, 0.44%)</title><rect x="145.7" y="885" width="6.2" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="148.72" y="895.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="1092.3" y="613" width="1.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1095.28" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="474.1" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="477.09" y="703.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="706.1" y="613" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="709.13" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_readlink (10,101,010 samples, 0.06%)</title><rect x="757.8" y="661" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="760.79" y="671.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (20,202,020 samples, 0.13%)</title><rect x="140.5" y="821" width="1.7" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="143.47" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (20,202,020 samples, 0.13%)</title><rect x="418.9" y="757" width="1.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="421.92" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="737.7" y="645" width="0.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="740.65" y="655.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (30,303,030 samples, 0.19%)</title><rect x="332.2" y="581" width="2.7" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="335.23" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="995.1" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="998.09" y="719.5" ></text>
+</g>
+<g >
+<title>rename (171,717,170 samples, 1.08%)</title><rect x="811.2" y="773" width="14.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="814.21" y="783.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="613" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1026.11" y="623.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="894.4" y="645" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="897.39" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="182.5" y="661" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="185.50" y="671.5" ></text>
+</g>
+<g >
+<title>chdir_wrapper (50,505,050 samples, 0.32%)</title><rect x="154.5" y="933" width="4.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="157.48" y="943.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1246.4" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1249.40" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (10,101,010 samples, 0.06%)</title><rect x="323.5" y="597" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="326.48" y="607.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="953.1" y="501" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="956.06" y="511.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="389" width="0.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1390.37" y="399.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (60,606,060 samples, 0.38%)</title><rect x="507.4" y="677" width="5.2" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="510.36" y="687.5" ></text>
+</g>
+<g >
+<title>do_filp_open (40,404,040 samples, 0.25%)</title><rect x="742.9" y="581" width="3.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="745.91" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (70,707,070 samples, 0.44%)</title><rect x="171.1" y="597" width="6.1" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="174.12" y="607.5" ></text>
+</g>
+<g >
+<title>ip_local_out (10,101,010 samples, 0.06%)</title><rect x="1366.4" y="165" width="0.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1369.36" y="175.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="862.0" y="741" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="864.99" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1262.53" y="703.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="886.5" y="565" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="889.51" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="326.1" y="629" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="329.10" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_read (20,202,020 samples, 0.13%)</title><rect x="740.3" y="565" width="1.7" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="743.28" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (20,202,020 samples, 0.13%)</title><rect x="234.2" y="533" width="1.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="237.16" y="543.5" ></text>
+</g>
+<g >
+<title>write (30,303,030 samples, 0.19%)</title><rect x="539.8" y="789" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="542.76" y="799.5" ></text>
+</g>
+<g >
+<title>submit_bio (10,101,010 samples, 0.06%)</title><rect x="792.8" y="469" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="795.82" y="479.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="368.1" y="645" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="371.13" y="655.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.06%)</title><rect x="591.4" y="437" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="594.42" y="447.5" ></text>
+</g>
+<g >
+<title>security_file_free (10,101,010 samples, 0.06%)</title><rect x="869.0" y="597" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="872.00" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (10,101,010 samples, 0.06%)</title><rect x="848.0" y="533" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="850.98" y="543.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_ipv4 (10,101,010 samples, 0.06%)</title><rect x="35.4" y="517" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="38.39" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="849.7" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="852.73" y="783.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (20,202,020 samples, 0.13%)</title><rect x="744.7" y="517" width="1.7" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="747.66" y="527.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="531.9" y="661" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="534.88" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="846.2" y="549" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="849.23" y="559.5" ></text>
+</g>
+<g >
+<title>ksys_write (60,606,060 samples, 0.38%)</title><rect x="1006.5" y="693" width="5.2" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1009.47" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="937.3" y="645" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="940.30" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="343.6" y="645" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="346.62" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_match (10,101,010 samples, 0.06%)</title><rect x="485.5" y="517" width="0.8" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="488.47" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="655.3" y="533" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="658.34" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1158.0" y="629" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1160.96" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_brk (10,101,010 samples, 0.06%)</title><rect x="429.4" y="757" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="432.43" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (30,303,030 samples, 0.19%)</title><rect x="341.0" y="613" width="2.6" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="343.99" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="735.9" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="738.90" y="735.5" ></text>
+</g>
+<g >
+<title>touch_atime (30,303,030 samples, 0.19%)</title><rect x="420.7" y="757" width="2.6" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="423.67" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="507.4" y="629" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="510.36" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="1065.1" y="677" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1068.14" y="687.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="877.8" y="565" width="0.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="880.75" y="575.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_node (10,101,010 samples, 0.06%)</title><rect x="1388.2" y="725" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1391.25" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1228.0" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1231.01" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="248.2" y="565" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="251.17" y="575.5" ></text>
+</g>
+<g >
+<title>do_filp_open (545,454,540 samples, 3.43%)</title><rect x="95.8" y="901" width="47.3" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="98.81" y="911.5" >do_f..</text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="523.1" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="526.12" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (20,202,020 samples, 0.13%)</title><rect x="708.8" y="533" width="1.7" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="711.76" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_xattr_security_get (10,101,010 samples, 0.06%)</title><rect x="515.2" y="565" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="518.24" y="575.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="499.5" y="741" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="502.48" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="643.1" y="677" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="646.08" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_brk (20,202,020 samples, 0.13%)</title><rect x="241.2" y="613" width="1.7" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="244.17" y="623.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="613" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1108.42" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="682.5" y="789" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="685.49" y="799.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="595.8" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="598.80" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_fname_free_filename (10,101,010 samples, 0.06%)</title><rect x="674.6" y="597" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="677.61" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="948.7" y="597" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="951.68" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1188.98" y="783.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="1322.6" y="709" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1325.58" y="719.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="645" width="1.7" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="1019.98" y="655.5" ></text>
+</g>
+<g >
+<title>malloc (20,202,020 samples, 0.13%)</title><rect x="1318.2" y="869" width="1.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1321.20" y="879.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (40,404,040 samples, 0.25%)</title><rect x="1052.0" y="629" width="3.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1055.01" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1213.1" y="629" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1216.12" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="916.3" y="565" width="1.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="919.28" y="575.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.06%)</title><rect x="1126.4" y="405" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="1129.43" y="415.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1207.9" y="661" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1210.87" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (20,202,020 samples, 0.13%)</title><rect x="38.0" y="229" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="41.02" y="239.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (70,707,070 samples, 0.44%)</title><rect x="380.4" y="645" width="6.1" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="383.39" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.06%)</title><rect x="355.9" y="613" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="358.88" y="623.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="671.1" y="389" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="674.10" y="399.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="564.3" y="629" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="567.28" y="639.5" ></text>
+</g>
+<g >
+<title>json_tokener_reset (10,101,010 samples, 0.06%)</title><rect x="1354.1" y="821" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1357.10" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.70%)</title><rect x="144.0" y="997" width="9.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="146.97" y="1007.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="442.6" y="645" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="445.56" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="808.6" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="811.58" y="751.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="693" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1258.15" y="703.5" ></text>
+</g>
+<g >
+<title>__inet_stream_connect (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="805" width="12.2" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1379.87" y="815.5" ></text>
+</g>
+<g >
+<title>__d_alloc (40,404,040 samples, 0.25%)</title><rect x="1077.4" y="597" width="3.5" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="1080.40" y="607.5" ></text>
+</g>
+<g >
+<title>do_faccessat (30,303,030 samples, 0.19%)</title><rect x="1260.4" y="661" width="2.6" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1263.41" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="452.2" y="677" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="455.20" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="904.9" y="597" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="907.90" y="607.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="645" width="5.2" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1372.86" y="655.5" ></text>
+</g>
+<g >
+<title>__do_softirq (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="485" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1336.08" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="784.9" y="677" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="787.94" y="687.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_free_hook (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="629" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1116.30" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_fin (20,202,020 samples, 0.13%)</title><rect x="1372.5" y="245" width="1.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="1375.49" y="255.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (131,313,130 samples, 0.82%)</title><rect x="170.2" y="725" width="11.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="173.24" y="735.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.06%)</title><rect x="741.2" y="517" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="744.15" y="527.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="1146.6" y="629" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="1149.57" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_io_submit (10,101,010 samples, 0.06%)</title><rect x="1035.4" y="485" width="0.8" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="1038.37" y="495.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="451.3" y="789" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="454.32" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (313,131,310 samples, 1.97%)</title><rect x="480.2" y="821" width="27.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="483.22" y="831.5" >[..</text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="884.8" y="645" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="887.76" y="655.5" ></text>
+</g>
+<g >
+<title>dd_bio_merge (10,101,010 samples, 0.06%)</title><rect x="466.2" y="421" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="469.21" y="431.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="73.9" y="917" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="76.92" y="927.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="1257.8" y="709" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1260.78" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="553.8" y="709" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="556.77" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (40,404,040 samples, 0.25%)</title><rect x="136.1" y="757" width="3.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="139.09" y="767.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (10,101,010 samples, 0.06%)</title><rect x="325.2" y="613" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="328.23" y="623.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="185.1" y="485" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="188.13" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1325.2" y="885" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1328.20" y="895.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="505.6" y="757" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="508.61" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="1063.4" y="773" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1066.39" y="783.5" ></text>
+</g>
+<g >
+<title>realpath (10,101,010 samples, 0.06%)</title><rect x="1246.4" y="821" width="0.9" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="1249.40" y="831.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="73.0" y="1029" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="76.05" y="1039.5" ></text>
+</g>
+<g >
+<title>ext4_append (10,101,010 samples, 0.06%)</title><rect x="1272.7" y="725" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1275.66" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1256.0" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1259.03" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (30,303,030 samples, 0.19%)</title><rect x="1165.0" y="597" width="2.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1167.96" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="841.9" y="501" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="844.85" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="578.3" y="597" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="581.29" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (383,838,380 samples, 2.41%)</title><rect x="438.2" y="821" width="33.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="441.19" y="831.5" >[l..</text>
+</g>
+<g >
+<title>ext4_writepages (40,404,040 samples, 0.25%)</title><rect x="466.2" y="581" width="3.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="469.21" y="591.5" ></text>
+</g>
+<g >
+<title>ip_local_out (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="629" width="5.2" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1372.86" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="539.8" y="757" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="542.76" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1184.2" y="677" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1187.23" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="656.2" y="549" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="659.22" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="958.3" y="341" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="961.31" y="351.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (525,252,520 samples, 3.30%)</title><rect x="259.6" y="709" width="45.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="262.56" y="719.5" >do_s..</text>
+</g>
+<g >
+<title>generic_perform_write (40,404,040 samples, 0.25%)</title><rect x="805.1" y="597" width="3.5" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="808.08" y="607.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="181.6" y="565" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="184.62" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="457.4" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="460.45" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="741" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1188.98" y="751.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="1226.3" y="629" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1229.26" y="639.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (50,505,050 samples, 0.32%)</title><rect x="322.6" y="677" width="4.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="325.60" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="1193.0" y="613" width="1.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1195.98" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="185.1" y="517" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="188.13" y="527.5" ></text>
+</g>
+<g >
+<title>do_fcntl (10,101,010 samples, 0.06%)</title><rect x="330.5" y="725" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="333.48" y="735.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="156.2" y="773" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="159.23" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="449.6" y="677" width="1.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="452.57" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fc_track_inode (10,101,010 samples, 0.06%)</title><rect x="794.6" y="389" width="0.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="797.57" y="399.5" ></text>
+</g>
+<g >
+<title>json_object_put (10,101,010 samples, 0.06%)</title><rect x="1350.6" y="869" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="1353.60" y="879.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.06%)</title><rect x="1374.2" y="341" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1377.24" y="351.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="423.3" y="805" width="5.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="426.30" y="815.5" ></text>
+</g>
+<g >
+<title>readlink (10,101,010 samples, 0.06%)</title><rect x="1246.4" y="805" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1249.40" y="815.5" ></text>
+</g>
+<g >
+<title>inet_csk_destroy_sock (10,101,010 samples, 0.06%)</title><rect x="1373.4" y="197" width="0.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1376.36" y="207.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1217.00" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="1025.7" y="677" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1028.74" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="797.2" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="800.20" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="824.3" y="549" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="827.34" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1014.73" y="639.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="191.3" y="453" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="194.26" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="758.7" y="741" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="761.67" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.57%)</title><rect x="410.2" y="789" width="7.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="413.16" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="809.5" y="741" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="812.45" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_superblock_csum_set (10,101,010 samples, 0.06%)</title><rect x="379.5" y="629" width="0.9" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" />
+<text x="382.52" y="639.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.06%)</title><rect x="848.0" y="501" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="850.98" y="511.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (50,505,050 samples, 0.32%)</title><rect x="500.4" y="789" width="4.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="503.36" y="799.5" ></text>
+</g>
+<g >
+<title>security_path_mknod (10,101,010 samples, 0.06%)</title><rect x="142.2" y="853" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="145.22" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="655.3" y="549" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="658.34" y="559.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_tcp_packet (10,101,010 samples, 0.06%)</title><rect x="1362.9" y="533" width="0.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1365.86" y="543.5" ></text>
+</g>
+<g >
+<title>__sys_connect_file (50,505,050 samples, 0.32%)</title><rect x="1341.8" y="837" width="4.4" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="1344.84" y="847.5" ></text>
+</g>
+<g >
+<title>blk_attempt_plug_merge (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="405" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1140.82" y="415.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="888.3" y="645" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="891.26" y="655.5" ></text>
+</g>
+<g >
+<title>__es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="179.0" y="469" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="182.00" y="479.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.06%)</title><rect x="487.2" y="581" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="490.22" y="591.5" ></text>
+</g>
+<g >
+<title>do_writepages (101,010,100 samples, 0.63%)</title><rect x="665.0" y="549" width="8.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="667.97" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="805" width="6.1" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1335.21" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1024.9" y="709" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1027.86" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (70,707,070 samples, 0.44%)</title><rect x="714.0" y="645" width="6.1" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="717.01" y="655.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (20,202,020 samples, 0.13%)</title><rect x="665.9" y="437" width="1.7" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="668.85" y="447.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="901.4" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="904.40" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="661" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1262.53" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.06%)</title><rect x="658.0" y="501" width="0.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="660.97" y="511.5" ></text>
+</g>
+<g >
+<title>jsonrpc_set_version (10,101,010 samples, 0.06%)</title><rect x="1348.0" y="901" width="0.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1350.97" y="911.5" ></text>
+</g>
+<g >
+<title>vfs_read (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="741" width="1.7" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1361.48" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (30,303,030 samples, 0.19%)</title><rect x="240.3" y="757" width="2.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="243.29" y="767.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="677" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1319.45" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="188.6" y="549" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="191.63" y="559.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="789" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1247.64" y="799.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="528.4" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="531.38" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1175.5" y="581" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1178.47" y="591.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (40,404,040 samples, 0.25%)</title><rect x="1377.7" y="325" width="3.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1380.74" y="335.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="418.9" y="805" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="421.92" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="426.8" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="429.80" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1197.73" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (252,525,250 samples, 1.59%)</title><rect x="912.8" y="821" width="21.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="915.78" y="831.5" >[..</text>
+</g>
+<g >
+<title>ext4_evict_inode (20,202,020 samples, 0.13%)</title><rect x="222.8" y="597" width="1.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="225.78" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_read_block_bitmap_nowait (10,101,010 samples, 0.06%)</title><rect x="1172.0" y="533" width="0.8" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="1174.97" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (30,303,030 samples, 0.19%)</title><rect x="1108.9" y="613" width="2.6" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1111.92" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="937.3" y="629" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="940.30" y="639.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="905.8" y="517" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="908.77" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="958.3" y="453" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="961.31" y="463.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (14,252,525,110 samples, 89.53%)</title><rect x="154.5" y="1013" width="1235.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="157.48" y="1023.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>new_inode (30,303,030 samples, 0.19%)</title><rect x="121.2" y="805" width="2.6" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="124.21" y="815.5" ></text>
+</g>
+<g >
+<title>block_write_end (30,303,030 samples, 0.19%)</title><rect x="1089.7" y="533" width="2.6" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="1092.66" y="543.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="1228.0" y="645" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1231.01" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="365.5" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="368.51" y="751.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1217.5" y="581" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1220.50" y="591.5" ></text>
+</g>
+<g >
+<title>open64 (50,505,050 samples, 0.32%)</title><rect x="770.9" y="693" width="4.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="773.93" y="703.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="109.8" y="789" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="112.82" y="799.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="637.8" y="597" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="640.83" y="607.5" ></text>
+</g>
+<g >
+<title>__file_remove_privs (10,101,010 samples, 0.06%)</title><rect x="779.7" y="549" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="782.68" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="405.8" y="597" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="408.79" y="607.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="960.9" y="405" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="963.94" y="415.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (30,303,030 samples, 0.19%)</title><rect x="879.5" y="613" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="882.51" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="74.8" y="933" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="77.80" y="943.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="725" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1241.52" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="484.6" y="533" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="487.59" y="543.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.06%)</title><rect x="920.7" y="565" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="923.66" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (40,404,040 samples, 0.25%)</title><rect x="556.4" y="837" width="3.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="559.40" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="118.6" y="805" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="121.58" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1126.4" y="437" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1129.43" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (20,202,020 samples, 0.13%)</title><rect x="404.0" y="693" width="1.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="407.04" y="703.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="865.5" y="549" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="868.49" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1061.6" y="645" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1064.64" y="655.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="443.4" y="613" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="446.44" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_child_process (30,303,030 samples, 0.19%)</title><rect x="1378.6" y="277" width="2.6" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1381.62" y="287.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (20,202,020 samples, 0.13%)</title><rect x="1235.0" y="757" width="1.8" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="1238.01" y="767.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="613" width="0.9" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1348.34" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (40,404,040 samples, 0.25%)</title><rect x="625.6" y="677" width="3.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="628.57" y="687.5" ></text>
+</g>
+<g >
+<title>storvsc_do_io (10,101,010 samples, 0.06%)</title><rect x="822.6" y="309" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="825.59" y="319.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (20,202,020 samples, 0.13%)</title><rect x="842.7" y="501" width="1.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="845.73" y="511.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="553.8" y="613" width="1.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="556.77" y="623.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="965.3" y="693" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="968.32" y="703.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (20,202,020 samples, 0.13%)</title><rect x="237.7" y="773" width="1.7" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="240.66" y="783.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1223.6" y="565" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1226.63" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="329.6" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="332.61" y="767.5" ></text>
+</g>
+<g >
+<title>rb_first (10,101,010 samples, 0.06%)</title><rect x="251.7" y="645" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="254.68" y="655.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (20,202,020 samples, 0.13%)</title><rect x="453.9" y="533" width="1.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="456.95" y="543.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="647.5" y="741" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="650.46" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="523.1" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="526.12" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="809.5" y="709" width="0.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="812.45" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.06%)</title><rect x="645.7" y="565" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="648.71" y="575.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1198.2" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1201.24" y="671.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (20,202,020 samples, 0.13%)</title><rect x="172.9" y="517" width="1.7" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="175.87" y="527.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="785.8" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="788.81" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="189.5" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="192.51" y="511.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="1187.7" y="661" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1190.73" y="671.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="651.8" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="654.84" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1117.7" y="725" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1120.68" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (272,727,270 samples, 1.71%)</title><rect x="341.0" y="677" width="23.6" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="343.99" y="687.5" >v..</text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (171,717,170 samples, 1.08%)</title><rect x="480.2" y="789" width="14.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="483.22" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="74.8" y="869" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="77.80" y="879.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (40,404,040 samples, 0.25%)</title><rect x="188.6" y="597" width="3.5" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="191.63" y="607.5" ></text>
+</g>
+<g >
+<title>tcp_time_wait (10,101,010 samples, 0.06%)</title><rect x="1373.4" y="229" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1376.36" y="239.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="535.4" y="661" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="538.38" y="671.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="389" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1345.72" y="399.5" ></text>
+</g>
+<g >
+<title>__libc_start_main (14,252,525,110 samples, 89.53%)</title><rect x="154.5" y="1029" width="1235.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="157.48" y="1039.5" >__libc_start_main</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="789" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1022.61" y="799.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (10,101,010 samples, 0.06%)</title><rect x="784.9" y="581" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="787.94" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (303,030,300 samples, 1.90%)</title><rect x="372.5" y="757" width="26.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="375.51" y="767.5" >d..</text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="281.4" y="533" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="284.45" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="834.0" y="677" width="0.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="836.97" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="650.1" y="741" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="653.09" y="751.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="549" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1345.72" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="125.6" y="709" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="128.58" y="719.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (40,404,040 samples, 0.25%)</title><rect x="1377.7" y="309" width="3.5" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1380.74" y="319.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="74.8" y="965" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="77.80" y="975.5" ></text>
+</g>
+<g >
+<title>ext4_ext_determine_insert_hole (10,101,010 samples, 0.06%)</title><rect x="592.3" y="565" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="595.30" y="575.5" ></text>
+</g>
+<g >
+<title>__mt_dup (10,101,010 samples, 0.06%)</title><rect x="1277.0" y="709" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1280.04" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="191.3" y="469" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="194.26" y="479.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="777.1" y="629" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="780.06" y="639.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="918.0" y="405" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="921.03" y="415.5" ></text>
+</g>
+<g >
+<title>remove (80,808,080 samples, 0.51%)</title><rect x="170.2" y="677" width="7.0" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="173.24" y="687.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (50,505,050 samples, 0.32%)</title><rect x="1369.9" y="341" width="4.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1372.86" y="351.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.06%)</title><rect x="452.2" y="661" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="455.20" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_brk (10,101,010 samples, 0.06%)</title><rect x="328.7" y="661" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="331.73" y="671.5" ></text>
+</g>
+<g >
+<title>wake_up_bit (10,101,010 samples, 0.06%)</title><rect x="661.5" y="469" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="664.47" y="479.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="571.3" y="597" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="574.28" y="607.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (20,202,020 samples, 0.13%)</title><rect x="818.2" y="581" width="1.8" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="821.21" y="591.5" ></text>
+</g>
+<g >
+<title>path_lookupat (40,404,040 samples, 0.25%)</title><rect x="937.3" y="517" width="3.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="940.30" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="1214.9" y="725" width="5.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1217.87" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="726.3" y="693" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="729.27" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="987.2" y="805" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="990.21" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="543.3" y="757" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="546.26" y="767.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (101,010,100 samples, 0.63%)</title><rect x="144.8" y="917" width="8.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="147.85" y="927.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="650.1" y="725" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="653.09" y="735.5" ></text>
+</g>
+<g >
+<title>ip_output (50,505,050 samples, 0.32%)</title><rect x="1363.7" y="613" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1366.73" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="24.0" y="901" width="5.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="27.01" y="911.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="1270.0" y="709" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="1273.04" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="277" width="2.6" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1336.08" y="287.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="90.6" y="709" width="0.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="93.56" y="719.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (20,202,020 samples, 0.13%)</title><rect x="932.0" y="533" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="935.04" y="543.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="543.3" y="677" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="546.26" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="482.0" y="645" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="484.97" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (40,404,040 samples, 0.25%)</title><rect x="466.2" y="661" width="3.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="469.21" y="671.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.06%)</title><rect x="545.9" y="741" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="548.89" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="649.2" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="652.21" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="182.5" y="645" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="185.50" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="514.4" y="773" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="517.37" y="783.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="373.4" y="677" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="376.39" y="687.5" ></text>
+</g>
+<g >
+<title>inflate (20,202,020 samples, 0.13%)</title><rect x="530.1" y="709" width="1.8" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="533.13" y="719.5" ></text>
+</g>
+<g >
+<title>worker_get_fd (10,101,010 samples, 0.06%)</title><rect x="21.4" y="981" width="0.9" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="24.38" y="991.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.06%)</title><rect x="930.3" y="373" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="933.29" y="383.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="645" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1221.38" y="655.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (20,202,020 samples, 0.13%)</title><rect x="1313.8" y="789" width="1.8" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1316.82" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="84.4" y="741" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="87.43" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="862.0" y="773" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="864.99" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="417.2" y="629" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="420.17" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="515.2" y="757" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="518.24" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1024.9" y="693" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1027.86" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (8,121,212,040 samples, 51.02%)</title><rect x="559.9" y="885" width="704.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="562.90" y="895.5" >[libgit2.so.1.7.2]</text>
+</g>
+<g >
+<title>may_delete (10,101,010 samples, 0.06%)</title><rect x="1066.9" y="693" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1069.89" y="703.5" ></text>
+</g>
+<g >
+<title>libjson_get_string (10,101,010 samples, 0.06%)</title><rect x="1351.5" y="853" width="0.8" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="1354.47" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="841.9" y="469" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="844.85" y="479.5" ></text>
+</g>
+<g >
+<title>readdir64 (50,505,050 samples, 0.32%)</title><rect x="418.9" y="869" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="421.92" y="879.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="1060.8" y="757" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1063.76" y="767.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.06%)</title><rect x="1341.0" y="773" width="0.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1343.96" y="783.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.06%)</title><rect x="255.2" y="565" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="258.18" y="575.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (20,202,020 samples, 0.13%)</title><rect x="848.0" y="597" width="1.7" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="850.98" y="607.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.06%)</title><rect x="599.3" y="645" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="602.30" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="175.5" y="501" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="178.49" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_desc (10,101,010 samples, 0.06%)</title><rect x="1037.1" y="405" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="1040.12" y="415.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="767.4" y="661" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="770.42" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="903.1" y="709" width="5.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="906.15" y="719.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (30,303,030 samples, 0.19%)</title><rect x="972.3" y="725" width="2.6" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="975.32" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="880.4" y="469" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="883.38" y="479.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="215.8" y="613" width="0.8" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="218.77" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="418.9" y="837" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="421.92" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (30,303,030 samples, 0.19%)</title><rect x="254.3" y="613" width="2.6" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="257.30" y="623.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (30,303,030 samples, 0.19%)</title><rect x="1133.4" y="485" width="2.7" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1136.44" y="495.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="322.6" y="581" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="325.60" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (121,212,120 samples, 0.76%)</title><rect x="1049.4" y="757" width="10.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1052.38" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="362.0" y="501" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="365.01" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (10,101,010 samples, 0.06%)</title><rect x="594.0" y="677" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="597.05" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="773" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1202.11" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="610.7" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="613.69" y="735.5" ></text>
+</g>
+<g >
+<title>read (20,202,020 samples, 0.13%)</title><rect x="1106.3" y="725" width="1.7" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1109.29" y="735.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="475.8" y="565" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="478.84" y="575.5" ></text>
+</g>
+<g >
+<title>_raw_read_lock (10,101,010 samples, 0.06%)</title><rect x="415.4" y="613" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="418.42" y="623.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="908.4" y="661" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="911.40" y="671.5" ></text>
+</g>
+<g >
+<title>mpage_prepare_extent_to_map (10,101,010 samples, 0.06%)</title><rect x="796.3" y="485" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="799.32" y="495.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (30,303,030 samples, 0.19%)</title><rect x="1006.5" y="597" width="2.6" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1009.47" y="607.5" ></text>
+</g>
+<g >
+<title>do_faccessat (30,303,030 samples, 0.19%)</title><rect x="1211.4" y="677" width="2.6" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1214.37" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="834.8" y="709" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="837.85" y="719.5" ></text>
+</g>
+<g >
+<title>filemap_release_folio (10,101,010 samples, 0.06%)</title><rect x="187.8" y="469" width="0.8" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="190.75" y="479.5" ></text>
+</g>
+<g >
+<title>git_repository_set_head (747,474,740 samples, 4.70%)</title><rect x="738.5" y="837" width="64.8" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="741.53" y="847.5" >git_rep..</text>
+</g>
+<g >
+<title>ext4_do_writepages (40,404,040 samples, 0.25%)</title><rect x="466.2" y="565" width="3.5" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="469.21" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1060.8" y="789" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1063.76" y="799.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.06%)</title><rect x="546.8" y="741" width="0.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="549.76" y="751.5" ></text>
+</g>
+<g >
+<title>block_write_end (10,101,010 samples, 0.06%)</title><rect x="807.7" y="565" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="810.70" y="575.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="543.3" y="741" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="546.26" y="751.5" ></text>
+</g>
+<g >
+<title>gmtime_r@plt (10,101,010 samples, 0.06%)</title><rect x="801.6" y="757" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="804.57" y="767.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="528.4" y="709" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="531.38" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="763.9" y="581" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="766.92" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_find_extent (10,101,010 samples, 0.06%)</title><rect x="670.2" y="453" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="673.23" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1169.3" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1172.34" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="721.9" y="597" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="724.89" y="607.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="27.5" y="693" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="30.51" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (30,303,030 samples, 0.19%)</title><rect x="1126.4" y="549" width="2.7" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="1129.43" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="445.2" y="709" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="448.19" y="719.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (90,909,090 samples, 0.57%)</title><rect x="1096.7" y="661" width="7.8" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="1099.66" y="671.5" ></text>
+</g>
+<g >
+<title>io_schedule (10,101,010 samples, 0.06%)</title><rect x="108.1" y="709" width="0.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="111.07" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="772.7" y="453" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="775.68" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="730.6" y="757" width="5.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="733.65" y="767.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="1258.7" y="565" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1261.65" y="575.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="834.8" y="757" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="837.85" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="706.1" y="645" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="709.13" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (20,202,020 samples, 0.13%)</title><rect x="850.6" y="837" width="1.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="853.61" y="847.5" ></text>
+</g>
+<g >
+<title>wake_up_bit (20,202,020 samples, 0.13%)</title><rect x="130.0" y="709" width="1.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="132.96" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="710.5" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="713.51" y="607.5" ></text>
+</g>
+<g >
+<title>fprintf (60,606,060 samples, 0.38%)</title><rect x="431.2" y="869" width="5.2" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="434.18" y="879.5" ></text>
+</g>
+<g >
+<title>json_object_object_add_ex (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="837" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1392.12" y="847.5" ></text>
+</g>
+<g >
+<title>iput (40,404,040 samples, 0.25%)</title><rect x="1028.4" y="597" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1031.36" y="607.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="179.0" y="453" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="182.00" y="463.5" ></text>
+</g>
+<g >
+<title>getcwd (10,101,010 samples, 0.06%)</title><rect x="158.0" y="901" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="160.98" y="911.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="503.0" y="533" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="505.98" y="543.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="940.8" y="549" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="943.80" y="559.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_destroy (10,101,010 samples, 0.06%)</title><rect x="1350.6" y="901" width="0.9" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="1353.60" y="911.5" ></text>
+</g>
+<g >
+<title>simple_copy_to_iter (10,101,010 samples, 0.06%)</title><rect x="1358.5" y="613" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1361.48" y="623.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (40,404,040 samples, 0.25%)</title><rect x="36.3" y="469" width="3.5" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="39.27" y="479.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct_nocheck (40,404,040 samples, 0.25%)</title><rect x="1136.9" y="453" width="3.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1139.94" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (131,313,130 samples, 0.82%)</title><rect x="581.8" y="629" width="11.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="584.79" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (70,707,070 samples, 0.44%)</title><rect x="1034.5" y="597" width="6.1" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1037.49" y="607.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="773" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1241.52" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="523.1" y="581" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="526.12" y="591.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="453" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1037.49" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_symlink (20,202,020 samples, 0.13%)</title><rect x="1061.6" y="693" width="1.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1064.64" y="703.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="215.8" y="677" width="0.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="218.77" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="482.0" y="661" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="484.97" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_clone3 (202,020,200 samples, 1.27%)</title><rect x="45.9" y="757" width="17.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="48.90" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="741.2" y="549" width="0.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="744.15" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="1006.5" y="757" width="5.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1009.47" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1262.53" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="428.6" y="821" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="431.55" y="831.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="834.0" y="741" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="836.97" y="751.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (30,303,030 samples, 0.19%)</title><rect x="1313.8" y="869" width="2.6" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1316.82" y="879.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="482.8" y="629" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="485.84" y="639.5" ></text>
+</g>
+<g >
+<title>nf_nat_ipv4_local_in (10,101,010 samples, 0.06%)</title><rect x="1381.2" y="309" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1384.24" y="319.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="11.8" y="869" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="14.75" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="376.0" y="629" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="379.02" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.06%)</title><rect x="1127.3" y="485" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="1130.31" y="495.5" ></text>
+</g>
+<g >
+<title>main (565,656,560 samples, 3.55%)</title><rect x="24.0" y="997" width="49.0" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="27.01" y="1007.5" >main</text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="792.8" y="389" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="795.82" y="399.5" ></text>
+</g>
+<g >
+<title>iterate_dir (10,101,010 samples, 0.06%)</title><rect x="193.9" y="645" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="196.88" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (80,808,080 samples, 0.51%)</title><rect x="84.4" y="773" width="7.0" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="87.43" y="783.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="921.5" y="725" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="924.54" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1188.6" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1191.60" y="719.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (10,101,010 samples, 0.06%)</title><rect x="707.9" y="485" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="710.88" y="495.5" ></text>
+</g>
+<g >
+<title>libjson_from_string (50,505,050 samples, 0.32%)</title><rect x="1353.2" y="869" width="4.4" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1356.22" y="879.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (101,010,100 samples, 0.63%)</title><rect x="1074.8" y="741" width="8.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1077.77" y="751.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="132.6" y="693" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="135.59" y="703.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (50,505,050 samples, 0.32%)</title><rect x="146.6" y="853" width="4.4" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="149.60" y="863.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (10,101,010 samples, 0.06%)</title><rect x="430.3" y="885" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="433.30" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="979.3" y="613" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="982.33" y="623.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (70,707,070 samples, 0.44%)</title><rect x="1362.0" y="645" width="6.1" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1364.98" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="241.2" y="725" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="244.17" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="834.8" y="693" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="837.85" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1131.7" y="565" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1134.69" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="546.8" y="773" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="549.76" y="783.5" ></text>
+</g>
+<g >
+<title>free@plt (10,101,010 samples, 0.06%)</title><rect x="526.6" y="741" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="529.62" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="558.1" y="725" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="561.15" y="735.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="389" width="2.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1336.08" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_mb_complex_scan_group (10,101,010 samples, 0.06%)</title><rect x="703.5" y="453" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="706.50" y="463.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="164.1" y="821" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="167.11" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="677" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="1098.79" y="687.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="1181.6" y="661" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1184.60" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_es_delayed_clu (10,101,010 samples, 0.06%)</title><rect x="584.4" y="533" width="0.9" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="587.42" y="543.5" ></text>
+</g>
+<g >
+<title>git_signature_default (40,404,040 samples, 0.25%)</title><rect x="798.1" y="773" width="3.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="801.07" y="783.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1348.0" y="837" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1350.97" y="847.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1119.4" y="645" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1122.43" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.06%)</title><rect x="402.3" y="693" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="405.28" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1094.0" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1097.04" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="546.8" y="805" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="549.76" y="815.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="601.1" y="661" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="604.05" y="671.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="469" width="2.6" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1336.08" y="479.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (40,404,040 samples, 0.25%)</title><rect x="11.8" y="789" width="3.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="14.75" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="216.6" y="741" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="219.65" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1185.1" y="805" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1188.10" y="815.5" ></text>
+</g>
+<g >
+<title>libgit_repository_free (121,212,120 samples, 0.76%)</title><rect x="158.9" y="917" width="10.5" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="161.86" y="927.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.06%)</title><rect x="956.6" y="469" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="959.56" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (222,222,220 samples, 1.40%)</title><rect x="1220.1" y="821" width="19.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1223.13" y="831.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="558.1" y="789" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="561.15" y="799.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="405" width="5.2" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1372.86" y="415.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="978.5" y="645" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="981.45" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="645.7" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="648.71" y="719.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct (10,101,010 samples, 0.06%)</title><rect x="466.2" y="517" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="469.21" y="527.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="296.3" y="469" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="299.33" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="199.1" y="565" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="202.14" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="158.0" y="869" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="160.98" y="879.5" ></text>
+</g>
+<g >
+<title>d_walk (10,101,010 samples, 0.06%)</title><rect x="210.5" y="581" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="213.52" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="707.9" y="693" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="710.88" y="703.5" ></text>
+</g>
+<g >
+<title>half_md4_transform.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1230.6" y="549" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1233.63" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="453" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1040.99" y="463.5" ></text>
+</g>
+<g >
+<title>__sock_create (10,101,010 samples, 0.06%)</title><rect x="1340.1" y="837" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1343.09" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="741" width="1.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1332.58" y="751.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="461.0" y="677" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="463.95" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="487.2" y="629" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="490.22" y="639.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="713.1" y="725" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="716.13" y="735.5" ></text>
+</g>
+<g >
+<title>skb_copy_datagram_iter (10,101,010 samples, 0.06%)</title><rect x="1358.5" y="645" width="0.9" height="15.0" fill="rgb(0,230,172)" rx="2" ry="2" />
+<text x="1361.48" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="870.7" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="873.75" y="687.5" ></text>
+</g>
+<g >
+<title>generic_update_time (30,303,030 samples, 0.19%)</title><rect x="254.3" y="645" width="2.6" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="257.30" y="655.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="523.1" y="565" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="526.12" y="575.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.06%)</title><rect x="1118.6" y="661" width="0.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1121.55" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="862.9" y="693" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="865.87" y="703.5" ></text>
+</g>
+<g >
+<title>hv_ringbuffer_write (10,101,010 samples, 0.06%)</title><rect x="665.9" y="261" width="0.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="668.85" y="271.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (20,202,020 samples, 0.13%)</title><rect x="880.4" y="565" width="1.7" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="883.38" y="575.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="423.3" y="645" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="426.30" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="816.5" y="501" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="819.46" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="397.0" y="629" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="400.03" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="108.1" y="805" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="111.07" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="15.3" y="949" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="18.25" y="959.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (131,313,130 samples, 0.82%)</title><rect x="460.1" y="741" width="11.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="463.08" y="751.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_core.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="36.3" y="309" width="0.8" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="39.27" y="319.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="710.5" y="581" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="713.51" y="591.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (20,202,020 samples, 0.13%)</title><rect x="730.6" y="549" width="1.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="733.65" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (171,717,170 samples, 1.08%)</title><rect x="77.4" y="949" width="14.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="80.42" y="959.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.06%)</title><rect x="1311.2" y="677" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1314.19" y="687.5" ></text>
+</g>
+<g >
+<title>git_reference_symbolic_create_matching (101,010,100 samples, 0.63%)</title><rect x="729.8" y="821" width="8.7" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="732.77" y="831.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="918.0" y="533" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="921.03" y="543.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="864.6" y="565" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="867.62" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="752.5" y="693" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="755.54" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fname_free_filename (10,101,010 samples, 0.06%)</title><rect x="150.1" y="821" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="153.10" y="831.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="637.0" y="629" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="639.95" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_eventfd2 (20,202,020 samples, 0.13%)</title><rect x="64.3" y="821" width="1.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="67.29" y="831.5" ></text>
+</g>
+<g >
+<title>generic_update_time (10,101,010 samples, 0.06%)</title><rect x="440.8" y="533" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="443.81" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (30,303,030 samples, 0.19%)</title><rect x="425.1" y="661" width="2.6" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="428.05" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="859.4" y="725" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="862.37" y="735.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.06%)</title><rect x="633.5" y="581" width="0.8" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="636.45" y="591.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="373" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1140.82" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1126.4" y="453" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1129.43" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="862.0" y="805" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="864.99" y="815.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (10,101,010 samples, 0.06%)</title><rect x="807.7" y="533" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="810.70" y="543.5" ></text>
+</g>
+<g >
+<title>blk_mq_attempt_bio_merge (10,101,010 samples, 0.06%)</title><rect x="1138.7" y="405" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1141.69" y="415.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="741" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1241.52" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (20,202,020 samples, 0.13%)</title><rect x="270.9" y="597" width="1.8" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="273.94" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="475.8" y="709" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="478.84" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1331.3" y="869" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1334.33" y="879.5" ></text>
+</g>
+<g >
+<title>alloc_inode (20,202,020 samples, 0.13%)</title><rect x="1151.8" y="661" width="1.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="1154.83" y="671.5" ></text>
+</g>
+<g >
+<title>close@plt (10,101,010 samples, 0.06%)</title><rect x="1018.7" y="805" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1021.73" y="815.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1094.9" y="565" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1097.91" y="575.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1069.5" y="565" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1072.52" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (111,111,110 samples, 0.70%)</title><rect x="226.3" y="597" width="9.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="229.28" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="742.0" y="629" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="745.03" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_find_entry (20,202,020 samples, 0.13%)</title><rect x="673.7" y="613" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="676.73" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (30,303,030 samples, 0.19%)</title><rect x="974.9" y="677" width="2.7" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="977.95" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="20.5" y="917" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="23.51" y="927.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="985.5" y="613" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="988.46" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="603.7" y="613" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="606.68" y="623.5" ></text>
+</g>
+<g >
+<title>write (40,404,040 samples, 0.25%)</title><rect x="805.1" y="741" width="3.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="808.08" y="751.5" ></text>
+</g>
+<g >
+<title>log_entry_start (40,404,040 samples, 0.25%)</title><rect x="69.5" y="949" width="3.5" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="72.54" y="959.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="315.6" y="645" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="318.60" y="655.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.06%)</title><rect x="547.6" y="805" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="550.64" y="815.5" ></text>
+</g>
+<g >
+<title>net_connect (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="949" width="12.2" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1379.87" y="959.5" ></text>
+</g>
+<g >
+<title>post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="805.1" y="469" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="808.08" y="479.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.06%)</title><rect x="1027.5" y="741" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1030.49" y="751.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (10,101,010 samples, 0.06%)</title><rect x="33.6" y="741" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="36.64" y="751.5" ></text>
+</g>
+<g >
+<title>chmod_common (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="709" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1014.73" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="607.2" y="581" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="610.18" y="591.5" ></text>
+</g>
+<g >
+<title>scsi_dispatch_cmd (10,101,010 samples, 0.06%)</title><rect x="665.9" y="325" width="0.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="668.85" y="335.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (40,404,040 samples, 0.25%)</title><rect x="852.4" y="805" width="3.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="855.36" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="734.1" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="737.15" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="597" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1026.98" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_link (20,202,020 samples, 0.13%)</title><rect x="974.9" y="629" width="1.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="977.95" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="1192.1" y="709" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1195.11" y="719.5" ></text>
+</g>
+<g >
+<title>__folio_put (10,101,010 samples, 0.06%)</title><rect x="35.4" y="325" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="38.39" y="335.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="408.4" y="757" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="411.41" y="767.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="338.4" y="533" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="341.36" y="543.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="537.1" y="629" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="540.13" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="866.4" y="741" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="869.37" y="751.5" ></text>
+</g>
+<g >
+<title>sock_recvmsg (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="709" width="1.7" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1361.48" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.82%)</title><rect x="786.7" y="725" width="11.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="789.69" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="116.8" y="789" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="119.83" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (30,303,030 samples, 0.19%)</title><rect x="539.8" y="677" width="2.6" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="542.76" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1275.3" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1278.29" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="501.2" y="645" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="504.23" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.44%)</title><rect x="714.0" y="725" width="6.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="717.01" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="516.1" y="597" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="519.12" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (20,202,020 samples, 0.13%)</title><rect x="806.0" y="565" width="1.7" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="808.95" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="485.5" y="725" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="488.47" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="156.2" y="805" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="159.23" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (20,202,020 samples, 0.13%)</title><rect x="270.9" y="565" width="1.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="273.94" y="575.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.06%)</title><rect x="864.6" y="533" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="867.62" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="735.0" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="738.03" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="757" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1243.27" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (10,101,010 samples, 0.06%)</title><rect x="463.6" y="613" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="466.58" y="623.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (20,202,020 samples, 0.13%)</title><rect x="100.2" y="837" width="1.7" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="103.19" y="847.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="501.2" y="581" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="504.23" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (101,010,100 samples, 0.63%)</title><rect x="1074.8" y="773" width="8.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1077.77" y="783.5" ></text>
+</g>
+<g >
+<title>mas_store (40,404,040 samples, 0.25%)</title><rect x="1302.4" y="709" width="3.5" height="15.0" fill="rgb(0,213,96)" rx="2" ry="2" />
+<text x="1305.44" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1321.7" y="869" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1324.70" y="879.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="353.2" y="581" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="356.25" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="897.9" y="693" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="900.89" y="703.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (70,707,070 samples, 0.44%)</title><rect x="1034.5" y="565" width="6.1" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="1037.49" y="575.5" ></text>
+</g>
+<g >
+<title>rmdir (292,929,290 samples, 1.84%)</title><rect x="340.1" y="773" width="25.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="343.11" y="783.5" >r..</text>
+</g>
+<g >
+<title>copy_process (444,444,440 samples, 2.79%)</title><rect x="1275.3" y="757" width="38.5" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="1278.29" y="767.5" >cop..</text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="229.8" y="565" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="232.78" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="426.8" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="429.80" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (40,404,040 samples, 0.25%)</title><rect x="536.3" y="677" width="3.5" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="539.26" y="687.5" ></text>
+</g>
+<g >
+<title>do_vmi_align_munmap (10,101,010 samples, 0.06%)</title><rect x="328.7" y="629" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="331.73" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="896.1" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="899.14" y="671.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="550.3" y="549" width="0.8" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="553.27" y="559.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="1211.4" y="709" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1214.37" y="719.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="565" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1345.72" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="401.4" y="773" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="404.41" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_bread (70,707,070 samples, 0.44%)</title><rect x="957.4" y="533" width="6.2" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="960.44" y="543.5" ></text>
+</g>
+<g >
+<title>inet_csk_clear_xmit_timers (10,101,010 samples, 0.06%)</title><rect x="1373.4" y="165" width="0.8" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1376.36" y="175.5" ></text>
+</g>
+<g >
+<title>malloc (20,202,020 samples, 0.13%)</title><rect x="241.2" y="741" width="1.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="244.17" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="555.5" y="837" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="558.52" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_accept4 (40,404,040 samples, 0.25%)</title><rect x="66.0" y="821" width="3.5" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="69.04" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.06%)</title><rect x="365.5" y="709" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="368.51" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="1009.1" y="597" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1012.10" y="607.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="484.6" y="549" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="487.59" y="559.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,272,727,250 samples, 14.28%)</title><rect x="169.4" y="821" width="197.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="172.37" y="831.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="929.4" y="581" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="932.42" y="591.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="218.4" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="221.40" y="655.5" ></text>
+</g>
+<g >
+<title>net_send_part (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="885" width="6.1" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1335.21" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="661.5" y="501" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="664.47" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="172.0" y="437" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="174.99" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="828.7" y="805" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="831.72" y="815.5" ></text>
+</g>
+<g >
+<title>libjson_send (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="933" width="7.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1363.23" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="424.2" y="677" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="427.18" y="687.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="755.2" y="725" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="758.16" y="735.5" ></text>
+</g>
+<g >
+<title>generic_update_time (10,101,010 samples, 0.06%)</title><rect x="546.8" y="565" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="549.76" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (70,707,070 samples, 0.44%)</title><rect x="380.4" y="597" width="6.1" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="383.39" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="693.0" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="695.99" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (121,212,120 samples, 0.76%)</title><rect x="1131.7" y="645" width="10.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1134.69" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_synsent_state_process (60,606,060 samples, 0.38%)</title><rect x="1376.9" y="709" width="5.2" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1379.87" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="922.4" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="925.41" y="751.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (40,404,040 samples, 0.25%)</title><rect x="36.3" y="485" width="3.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="39.27" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="967.9" y="597" width="1.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="970.94" y="607.5" ></text>
+</g>
+<g >
+<title>ip_rcv (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="453" width="0.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1390.37" y="463.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="1015.2" y="709" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1018.23" y="719.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (10,101,010 samples, 0.06%)</title><rect x="926.8" y="469" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="929.79" y="479.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="877.8" y="549" width="0.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="880.75" y="559.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.06%)</title><rect x="505.6" y="629" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="508.61" y="639.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (30,303,030 samples, 0.19%)</title><rect x="798.9" y="741" width="2.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="801.95" y="751.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="899.6" y="565" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="902.64" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (90,909,090 samples, 0.57%)</title><rect x="1096.7" y="677" width="7.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1099.66" y="687.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (90,909,090 samples, 0.57%)</title><rect x="654.5" y="645" width="7.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="657.47" y="655.5" ></text>
+</g>
+<g >
+<title>do_filp_open (111,111,110 samples, 0.70%)</title><rect x="1049.4" y="709" width="9.6" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1052.38" y="719.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="282.3" y="501" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="285.32" y="511.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="458.3" y="757" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="461.32" y="767.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="645" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1345.72" y="655.5" ></text>
+</g>
+<g >
+<title>dd_request_merge (10,101,010 samples, 0.06%)</title><rect x="466.2" y="373" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="469.21" y="383.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="924.2" y="773" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="927.16" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="981.1" y="693" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="984.08" y="703.5" ></text>
+</g>
+<g >
+<title>unlock_buffer (10,101,010 samples, 0.06%)</title><rect x="825.2" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="828.22" y="623.5" ></text>
+</g>
+<g >
+<title>from_kgid (10,101,010 samples, 0.06%)</title><rect x="381.3" y="501" width="0.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="384.27" y="511.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="629" width="1.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1345.72" y="639.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="31.9" y="805" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="34.89" y="815.5" ></text>
+</g>
+<g >
+<title>cmd_dispatcher_handle_event (111,111,110 samples, 0.70%)</title><rect x="1350.6" y="933" width="9.6" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1353.60" y="943.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="775.3" y="613" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="778.30" y="623.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="748.2" y="565" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="751.16" y="575.5" ></text>
+</g>
+<g >
+<title>__wait_on_bit (10,101,010 samples, 0.06%)</title><rect x="108.1" y="741" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="111.07" y="751.5" ></text>
+</g>
+<g >
+<title>pipe2 (20,202,020 samples, 0.13%)</title><rect x="1321.7" y="885" width="1.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1324.70" y="895.5" ></text>
+</g>
+<g >
+<title>iterate_dir (121,212,120 samples, 0.76%)</title><rect x="246.4" y="677" width="10.5" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="249.42" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="527.5" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="530.50" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (30,303,030 samples, 0.19%)</title><rect x="401.4" y="757" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="404.41" y="767.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="395.3" y="581" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="398.28" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="389" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1348.34" y="399.5" ></text>
+</g>
+<g >
+<title>fsnotify_grab_connector (10,101,010 samples, 0.06%)</title><rect x="418.0" y="741" width="0.9" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="421.05" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.19%)</title><rect x="752.5" y="485" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="755.54" y="495.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.06%)</title><rect x="411.9" y="645" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="414.92" y="655.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.06%)</title><rect x="998.6" y="549" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1001.59" y="559.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.06%)</title><rect x="35.4" y="389" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="38.39" y="399.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.19%)</title><rect x="214.0" y="709" width="2.6" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="217.02" y="719.5" ></text>
+</g>
+<g >
+<title>cmd_dispatcher_handle_conn_internal (111,111,110 samples, 0.70%)</title><rect x="1350.6" y="917" width="9.6" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1353.60" y="927.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="263.1" y="613" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="266.06" y="623.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (232,323,230 samples, 1.46%)</title><rect x="1021.4" y="805" width="20.1" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1024.36" y="815.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1231.88" y="703.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="800.7" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="803.70" y="687.5" ></text>
+</g>
+<g >
+<title>__pud_alloc (10,101,010 samples, 0.06%)</title><rect x="1284.0" y="677" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1287.05" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (20,202,020 samples, 0.13%)</title><rect x="1229.8" y="645" width="1.7" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1232.76" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="882.1" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="885.13" y="687.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="1092.3" y="725" width="1.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1095.28" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (1,636,363,620 samples, 10.28%)</title><rect x="169.4" y="789" width="141.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="172.37" y="799.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="645.7" y="597" width="1.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="648.71" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="527.5" y="789" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="530.50" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="700.9" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="703.88" y="511.5" ></text>
+</g>
+<g >
+<title>getdents64 (20,202,020 samples, 0.13%)</title><rect x="884.8" y="693" width="1.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="887.76" y="703.5" ></text>
+</g>
+<g >
+<title>prepare_creds (10,101,010 samples, 0.06%)</title><rect x="1275.3" y="725" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1278.29" y="735.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="571.3" y="581" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="574.28" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (60,606,060 samples, 0.38%)</title><rect x="272.7" y="613" width="5.2" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="275.69" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.44%)</title><rect x="507.4" y="805" width="6.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="510.36" y="815.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="197" width="1.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1336.96" y="207.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="188.6" y="501" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="191.63" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (40,404,040 samples, 0.25%)</title><rect x="937.3" y="565" width="3.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="940.30" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="546.8" y="645" width="0.8" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="549.76" y="655.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="99.3" y="837" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="102.31" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="969.7" y="709" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="972.70" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="613" width="1.7" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1235.39" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="689.5" y="677" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="692.49" y="687.5" ></text>
+</g>
+<g >
+<title>git_remote_create (595,959,590 samples, 3.74%)</title><rect x="804.2" y="869" width="51.7" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="807.20" y="879.5" >git_r..</text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="645" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1258.15" y="655.5" ></text>
+</g>
+<g >
+<title>mpage_submit_folio (10,101,010 samples, 0.06%)</title><rect x="1038.9" y="453" width="0.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1041.87" y="463.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (111,111,110 samples, 0.70%)</title><rect x="925.0" y="709" width="9.7" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="928.04" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="1065.1" y="645" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1068.14" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (40,404,040 samples, 0.25%)</title><rect x="424.2" y="693" width="3.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="427.18" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="228.9" y="485" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="231.91" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="658.0" y="421" width="0.8" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="660.97" y="431.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (40,404,040 samples, 0.25%)</title><rect x="36.3" y="453" width="3.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="39.27" y="463.5" ></text>
+</g>
+<g >
+<title>libgit_checkout (1,404,040,390 samples, 8.82%)</title><rect x="438.2" y="917" width="121.7" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="441.19" y="927.5" >libgit_checkout</text>
+</g>
+<g >
+<title>do_mkdirat (151,515,150 samples, 0.95%)</title><rect x="950.4" y="613" width="13.2" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="953.43" y="623.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="919.8" y="581" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="922.78" y="591.5" ></text>
+</g>
+<g >
+<title>get_unused_fd_flags (10,101,010 samples, 0.06%)</title><rect x="1004.7" y="693" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="1007.72" y="703.5" ></text>
+</g>
+<g >
+<title>unlink_cb (80,808,080 samples, 0.51%)</title><rect x="170.2" y="693" width="7.0" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="173.24" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (40,404,040 samples, 0.25%)</title><rect x="279.7" y="565" width="3.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="282.70" y="575.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="709" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1026.98" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (171,717,170 samples, 1.08%)</title><rect x="222.8" y="677" width="14.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="225.78" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (222,222,220 samples, 1.40%)</title><rect x="1220.1" y="805" width="19.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1223.13" y="815.5" ></text>
+</g>
+<g >
+<title>__napi_poll (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="421" width="4.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1380.74" y="431.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct_nocheck (10,101,010 samples, 0.06%)</title><rect x="792.8" y="437" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="795.82" y="447.5" ></text>
+</g>
+<g >
+<title>dd_dispatch_request (10,101,010 samples, 0.06%)</title><rect x="666.7" y="357" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="669.73" y="367.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="613.3" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="616.31" y="671.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="759.5" y="645" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="762.54" y="655.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (10,101,010 samples, 0.06%)</title><rect x="848.0" y="517" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="850.98" y="527.5" ></text>
+</g>
+<g >
+<title>do_softirq (20,202,020 samples, 0.13%)</title><rect x="12.6" y="533" width="1.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="15.63" y="543.5" ></text>
+</g>
+<g >
+<title>blk_mq_free_request (10,101,010 samples, 0.06%)</title><rect x="663.2" y="437" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="666.22" y="447.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (565,656,560 samples, 3.55%)</title><rect x="94.9" y="965" width="49.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="97.94" y="975.5" >do_s..</text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1036.2" y="469" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1039.24" y="479.5" ></text>
+</g>
+<g >
+<title>uncharge_batch (10,101,010 samples, 0.06%)</title><rect x="429.4" y="613" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="432.43" y="623.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="1187.7" y="645" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1190.73" y="655.5" ></text>
+</g>
+<g >
+<title>nd_jump_root (10,101,010 samples, 0.06%)</title><rect x="1144.8" y="661" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="1147.82" y="671.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="904.9" y="645" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="907.90" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="500.4" y="693" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="503.36" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (131,313,130 samples, 0.82%)</title><rect x="460.1" y="757" width="11.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="463.08" y="767.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (80,808,080 samples, 0.51%)</title><rect x="1256.0" y="789" width="7.0" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1259.03" y="799.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="446.1" y="613" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="449.07" y="623.5" ></text>
+</g>
+<g >
+<title>__send (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="869" width="6.1" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1335.21" y="879.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="840.1" y="533" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="843.10" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="205.3" y="533" width="0.8" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="208.27" y="543.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1197.4" y="661" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1200.36" y="671.5" ></text>
+</g>
+<g >
+<title>mpage_prepare_extent_to_map (10,101,010 samples, 0.06%)</title><rect x="672.9" y="501" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="675.86" y="511.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (131,313,130 samples, 0.82%)</title><rect x="786.7" y="693" width="11.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="789.69" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="535.4" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="538.38" y="687.5" ></text>
+</g>
+<g >
+<title>write (50,505,050 samples, 0.32%)</title><rect x="1067.8" y="805" width="4.3" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1070.77" y="815.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="373.4" y="645" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="376.39" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="1168.5" y="549" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1171.46" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_fname_setup_filename (10,101,010 samples, 0.06%)</title><rect x="139.6" y="789" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="142.59" y="799.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="886.5" y="613" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="889.51" y="623.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1098.79" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="984.6" y="597" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="987.58" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="585.3" y="453" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="588.29" y="463.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (20,202,020 samples, 0.13%)</title><rect x="1200.0" y="629" width="1.7" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="1202.99" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="401.4" y="789" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="404.41" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_superblock_csum_set (10,101,010 samples, 0.06%)</title><rect x="677.2" y="597" width="0.9" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" />
+<text x="680.23" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="500.4" y="725" width="4.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="503.36" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (30,303,030 samples, 0.19%)</title><rect x="383.9" y="549" width="2.6" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="386.90" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="171.1" y="485" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="174.12" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1187.7" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1190.73" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (121,212,120 samples, 0.76%)</title><rect x="876.0" y="725" width="10.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="879.00" y="735.5" ></text>
+</g>
+<g >
+<title>file_read (50,505,050 samples, 0.32%)</title><rect x="1317.3" y="885" width="4.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1320.32" y="895.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="440.8" y="453" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="443.81" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="886.5" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="889.51" y="719.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="807.7" y="517" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="810.70" y="527.5" ></text>
+</g>
+<g >
+<title>tcp_send_fin (50,505,050 samples, 0.32%)</title><rect x="35.4" y="661" width="4.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="38.39" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="290.2" y="469" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="293.20" y="479.5" ></text>
+</g>
+<g >
+<title>ksys_read (20,202,020 samples, 0.13%)</title><rect x="533.6" y="629" width="1.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="536.63" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (70,707,070 samples, 0.44%)</title><rect x="293.7" y="533" width="6.1" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="296.71" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="741.2" y="453" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="744.15" y="463.5" ></text>
+</g>
+<g >
+<title>evict (30,303,030 samples, 0.19%)</title><rect x="405.8" y="677" width="2.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="408.79" y="687.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="551.1" y="549" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="554.14" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.25%)</title><rect x="289.3" y="565" width="3.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="292.33" y="575.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="783.2" y="501" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="786.19" y="511.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="197.4" y="565" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="200.39" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1122.9" y="469" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1125.93" y="479.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="613" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1258.15" y="623.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.06%)</title><rect x="1002.1" y="565" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1005.09" y="575.5" ></text>
+</g>
+<g >
+<title>git_reference_create_matching (464,646,460 samples, 2.92%)</title><rect x="438.2" y="869" width="40.3" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="441.19" y="879.5" >git..</text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1053.8" y="597" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1056.76" y="607.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="715.8" y="533" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="718.76" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="487.2" y="677" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="490.22" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.06%)</title><rect x="680.7" y="693" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="683.74" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="1202.6" y="709" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1205.61" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="757.8" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="760.79" y="703.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="693" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1241.52" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="72.2" y="821" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="75.17" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_file_getattr (10,101,010 samples, 0.06%)</title><rect x="1256.9" y="629" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1259.90" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="725" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1248.52" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="756.0" y="709" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="759.04" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="475.8" y="613" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="478.84" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="1147.4" y="645" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1150.45" y="655.5" ></text>
+</g>
+<g >
+<title>iterate_dir (10,101,010 samples, 0.06%)</title><rect x="680.7" y="725" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="683.74" y="735.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="782.3" y="565" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="785.31" y="575.5" ></text>
+</g>
+<g >
+<title>__poll (10,101,010 samples, 0.06%)</title><rect x="1349.7" y="933" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1352.72" y="943.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="553.8" y="677" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="556.77" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (40,404,040 samples, 0.25%)</title><rect x="136.1" y="773" width="3.5" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="139.09" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_skb_entail (10,101,010 samples, 0.06%)</title><rect x="1335.7" y="725" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1338.71" y="735.5" ></text>
+</g>
+<g >
+<title>git_repository_free (121,212,120 samples, 0.76%)</title><rect x="158.9" y="901" width="10.5" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="161.86" y="911.5" ></text>
+</g>
+<g >
+<title>__lruvec_stat_mod_folio (20,202,020 samples, 0.13%)</title><rect x="399.7" y="533" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="402.66" y="543.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="661" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1022.61" y="671.5" ></text>
+</g>
+<g >
+<title>ci_prepare_git_repo (9,636,363,540 samples, 60.53%)</title><rect x="438.2" y="933" width="835.3" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="441.19" y="943.5" >ci_prepare_git_repo</text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="1157.1" y="645" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1160.08" y="655.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (20,202,020 samples, 0.13%)</title><rect x="988.1" y="693" width="1.7" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="991.08" y="703.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="661" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1258.15" y="671.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="722.8" y="661" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="725.77" y="671.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="1126.4" y="421" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="1129.43" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="84.4" y="709" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="87.43" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="179.0" y="485" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="182.00" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="200.0" y="549" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="203.01" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_release_folio (10,101,010 samples, 0.06%)</title><rect x="819.1" y="469" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="822.09" y="479.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="965.3" y="597" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="968.32" y="607.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="611.6" y="661" width="1.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="614.56" y="671.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.06%)</title><rect x="80.1" y="725" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="83.05" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1188.98" y="799.5" ></text>
+</g>
+<g >
+<title>__block_commit_write (20,202,020 samples, 0.13%)</title><rect x="922.4" y="565" width="1.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="925.41" y="575.5" ></text>
+</g>
+<g >
+<title>__set_cpus_allowed_ptr (10,101,010 samples, 0.06%)</title><rect x="51.2" y="661" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="54.15" y="671.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.06%)</title><rect x="930.3" y="405" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="933.29" y="415.5" ></text>
+</g>
+<g >
+<title>vfs_write (60,606,060 samples, 0.38%)</title><rect x="1006.5" y="677" width="5.2" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1009.47" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.06%)</title><rect x="516.1" y="629" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="519.12" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1045.0" y="517" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1048.00" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1029.2" y="469" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1032.24" y="479.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1251.6" y="725" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1254.65" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="974.9" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="977.95" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.06%)</title><rect x="180.7" y="421" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="183.75" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="667.6" y="453" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="670.60" y="463.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="897.0" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="900.02" y="671.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="1258.7" y="581" width="0.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1261.65" y="591.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="840.1" y="517" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="843.10" y="527.5" ></text>
+</g>
+<g >
+<title>inflate (10,101,010 samples, 0.06%)</title><rect x="724.5" y="693" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="727.52" y="703.5" ></text>
+</g>
+<g >
+<title>block_write_end (10,101,010 samples, 0.06%)</title><rect x="541.5" y="613" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="544.51" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="888.3" y="629" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="891.26" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="449.6" y="741" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="452.57" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.06%)</title><rect x="341.9" y="549" width="0.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="344.87" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (10,101,010 samples, 0.06%)</title><rect x="77.4" y="885" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="80.42" y="895.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="383.9" y="533" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="386.90" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="787.6" y="549" width="0.8" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="790.56" y="559.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="458.3" y="693" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="461.32" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (40,404,040 samples, 0.25%)</title><rect x="360.3" y="581" width="3.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="363.25" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="475.0" y="789" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="477.96" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_file_getattr (10,101,010 samples, 0.06%)</title><rect x="1014.4" y="645" width="0.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1017.35" y="655.5" ></text>
+</g>
+<g >
+<title>__pollwait (10,101,010 samples, 0.06%)</title><rect x="28.4" y="805" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="31.39" y="815.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1084.4" y="581" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1087.40" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="905.8" y="565" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="908.77" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1118.6" y="709" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1121.55" y="719.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="181" width="1.7" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1336.96" y="191.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.06%)</title><rect x="702.6" y="469" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="705.63" y="479.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="1141.3" y="533" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1144.32" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="926.8" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="929.79" y="607.5" ></text>
+</g>
+<g >
+<title>__mutex_init (10,101,010 samples, 0.06%)</title><rect x="1151.8" y="645" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="1154.83" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="770.1" y="565" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="773.05" y="575.5" ></text>
+</g>
+<g >
+<title>__fput_sync (20,202,020 samples, 0.13%)</title><rect x="868.1" y="629" width="1.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="871.12" y="639.5" ></text>
+</g>
+<g >
+<title>blk_mq_submit_bio (10,101,010 samples, 0.06%)</title><rect x="466.2" y="469" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="469.21" y="479.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="870.7" y="613" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="873.75" y="623.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (40,404,040 samples, 0.25%)</title><rect x="36.3" y="533" width="3.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="39.27" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="558.1" y="773" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="561.15" y="783.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="229" width="2.6" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1367.61" y="239.5" ></text>
+</g>
+<g >
+<title>filename_create (20,202,020 samples, 0.13%)</title><rect x="1264.8" y="773" width="1.7" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1267.78" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="562.5" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="565.53" y="735.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.06%)</title><rect x="263.1" y="517" width="0.8" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="266.06" y="527.5" ></text>
+</g>
+<g >
+<title>clear_inode (10,101,010 samples, 0.06%)</title><rect x="1124.7" y="549" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1127.68" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="835.7" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="838.72" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1110.7" y="517" width="0.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="1113.67" y="527.5" ></text>
+</g>
+<g >
+<title>git_odb_read (20,202,020 samples, 0.13%)</title><rect x="684.2" y="821" width="1.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="687.24" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (363,636,360 samples, 2.28%)</title><rect x="934.7" y="709" width="31.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="937.67" y="719.5" >[l..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="328.7" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="331.73" y="719.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="706.1" y="565" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="709.13" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="430.3" y="837" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="433.30" y="847.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (30,303,030 samples, 0.19%)</title><rect x="1378.6" y="261" width="2.6" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1381.62" y="271.5" ></text>
+</g>
+<g >
+<title>__do_softirq (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="565" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1389.50" y="575.5" ></text>
+</g>
+<g >
+<title>libjson_send (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="933" width="6.1" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1335.21" y="943.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (20,202,020 samples, 0.13%)</title><rect x="922.4" y="613" width="1.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="925.41" y="623.5" ></text>
+</g>
+<g >
+<title>git_odb_read_header (111,111,110 samples, 0.70%)</title><rect x="530.1" y="805" width="9.7" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="533.13" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (151,515,150 samples, 0.95%)</title><rect x="198.3" y="613" width="13.1" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="201.26" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1254.3" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1257.28" y="799.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="721.0" y="709" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="724.02" y="719.5" ></text>
+</g>
+<g >
+<title>__sk_destruct (10,101,010 samples, 0.06%)</title><rect x="1371.6" y="229" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1374.61" y="239.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1188.6" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1191.60" y="735.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1217.5" y="533" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1220.50" y="543.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="492.5" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="495.47" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="777.1" y="661" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="780.06" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="892.6" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="895.64" y="719.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="754.3" y="421" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="757.29" y="431.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="1248.1" y="773" width="6.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1251.15" y="783.5" ></text>
+</g>
+<g >
+<title>read (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="869" width="1.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1322.95" y="879.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="118.6" y="789" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="121.58" y="799.5" ></text>
+</g>
+<g >
+<title>__sk_mem_reduce_allocated (10,101,010 samples, 0.06%)</title><rect x="1359.4" y="629" width="0.8" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1362.35" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="733.3" y="533" width="0.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="736.27" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (121,212,120 samples, 0.76%)</title><rect x="695.6" y="677" width="10.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="698.62" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="463.6" y="565" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="466.58" y="575.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="976.7" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="979.70" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="889.1" y="549" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="892.14" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_link (10,101,010 samples, 0.06%)</title><rect x="544.1" y="725" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="547.14" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="939.9" y="469" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="942.92" y="479.5" ></text>
+</g>
+<g >
+<title>nd_jump_root (10,101,010 samples, 0.06%)</title><rect x="101.9" y="869" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="104.94" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (20,202,020 samples, 0.13%)</title><rect x="211.4" y="645" width="1.7" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="214.40" y="655.5" ></text>
+</g>
+<g >
+<title>json_tokener_new_ex (20,202,020 samples, 0.13%)</title><rect x="1353.2" y="837" width="1.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1356.22" y="847.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="706.1" y="581" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="709.13" y="591.5" ></text>
+</g>
+<g >
+<title>security_path_unlink (10,101,010 samples, 0.06%)</title><rect x="225.4" y="629" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="228.41" y="639.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="565" width="4.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1380.74" y="575.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.19%)</title><rect x="969.7" y="597" width="2.6" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="972.70" y="607.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="817.3" y="421" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="820.34" y="431.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="738.5" y="773" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="741.53" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (60,606,060 samples, 0.38%)</title><rect x="431.2" y="853" width="5.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="434.18" y="863.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (292,929,290 samples, 1.84%)</title><rect x="373.4" y="709" width="25.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="376.39" y="719.5" >d..</text>
+</g>
+<g >
+<title>mkdir (90,909,090 samples, 0.57%)</title><rect x="1041.5" y="805" width="7.9" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1044.50" y="815.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="964.4" y="437" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="967.44" y="447.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.06%)</title><rect x="618.6" y="533" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="621.57" y="543.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="869" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1319.45" y="879.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1029.61" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="1256.9" y="645" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1259.90" y="655.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="780.6" y="613" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="783.56" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="375.1" y="629" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="378.14" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (252,525,250 samples, 1.59%)</title><rect x="170.2" y="741" width="21.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="173.24" y="751.5" >[..</text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (50,505,050 samples, 0.32%)</title><rect x="1369.9" y="325" width="4.3" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1372.86" y="335.5" ></text>
+</g>
+<g >
+<title>tasklet_action (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="597" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1371.98" y="607.5" ></text>
+</g>
+<g >
+<title>net_rx_action (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="453" width="5.2" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1372.86" y="463.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="255.2" y="581" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="258.18" y="591.5" ></text>
+</g>
+<g >
+<title>__default_morecore (30,303,030 samples, 0.19%)</title><rect x="398.8" y="789" width="2.6" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="401.78" y="799.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1207.9" y="693" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1210.87" y="703.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1327.0" y="757" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1329.95" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (60,606,060 samples, 0.38%)</title><rect x="366.4" y="741" width="5.2" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="369.38" y="751.5" ></text>
+</g>
+<g >
+<title>dup_userfaultfd (10,101,010 samples, 0.06%)</title><rect x="1299.8" y="709" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1302.81" y="719.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.06%)</title><rect x="419.8" y="709" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="422.80" y="719.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="476.7" y="533" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="479.71" y="543.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="594.9" y="773" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="597.92" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="870.7" y="661" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="873.75" y="671.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="1013.5" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1016.48" y="703.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="565" width="3.5" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="1091.78" y="575.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="524.9" y="597" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="527.87" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="570.4" y="565" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="573.41" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (292,929,290 samples, 1.84%)</title><rect x="373.4" y="725" width="25.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="376.39" y="735.5" >_..</text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="523.1" y="661" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="526.12" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="530.1" y="725" width="5.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="533.13" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="775.3" y="581" width="1.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="778.30" y="591.5" ></text>
+</g>
+<g >
+<title>nft_nat_do_chain (10,101,010 samples, 0.06%)</title><rect x="1385.6" y="629" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1388.62" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_statx (40,404,040 samples, 0.25%)</title><rect x="937.3" y="549" width="3.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="940.30" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="990.7" y="837" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="993.71" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="527.5" y="725" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="530.50" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1185.1" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1188.10" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="942.6" y="485" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="945.55" y="495.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="362.0" y="549" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="365.01" y="559.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="982.0" y="629" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="984.95" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.13%)</title><rect x="1165.8" y="469" width="1.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1168.84" y="479.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="558.1" y="693" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="561.15" y="703.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="554.6" y="597" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="557.64" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (30,303,030 samples, 0.19%)</title><rect x="179.0" y="517" width="2.6" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="182.00" y="527.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_end (10,101,010 samples, 0.06%)</title><rect x="671.1" y="373" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="674.10" y="383.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="725" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1349.22" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (90,909,090 samples, 0.57%)</title><rect x="665.9" y="517" width="7.8" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="668.85" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="767.4" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="770.42" y="767.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="553.8" y="581" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="556.77" y="591.5" ></text>
+</g>
+<g >
+<title>access (40,404,040 samples, 0.25%)</title><rect x="536.3" y="741" width="3.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="539.26" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="875.1" y="757" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="878.13" y="767.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="926.8" y="549" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="929.79" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="808.6" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="811.58" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="151.9" y="901" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="154.85" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (141,414,140 samples, 0.89%)</title><rect x="289.3" y="581" width="12.3" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="292.33" y="591.5" ></text>
+</g>
+<g >
+<title>truncate_cleanup_folio (10,101,010 samples, 0.06%)</title><rect x="819.1" y="533" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="822.09" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (10,101,010 samples, 0.06%)</title><rect x="23.1" y="869" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="26.13" y="879.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.06%)</title><rect x="894.4" y="661" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="897.39" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="759.5" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="762.54" y="719.5" ></text>
+</g>
+<g >
+<title>storvsc_queuecommand (10,101,010 samples, 0.06%)</title><rect x="822.6" y="325" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="825.59" y="335.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_free_hook (10,101,010 samples, 0.06%)</title><rect x="784.9" y="613" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="787.94" y="623.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.06%)</title><rect x="721.0" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="724.02" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1241.1" y="597" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1244.14" y="607.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="740.3" y="469" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="743.28" y="479.5" ></text>
+</g>
+<g >
+<title>dup_mmap (434,343,430 samples, 2.73%)</title><rect x="1276.2" y="725" width="37.6" height="15.0" fill="rgb(0,201,46)" rx="2" ry="2" />
+<text x="1279.17" y="735.5" >dup..</text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="373.4" y="661" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="376.39" y="671.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="712.3" y="581" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="715.26" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="783.2" y="709" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="786.19" y="719.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="108.1" y="629" width="0.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="111.07" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="499.5" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="502.48" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.06%)</title><rect x="968.8" y="549" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="971.82" y="559.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.06%)</title><rect x="813.0" y="549" width="0.8" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="815.96" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="853" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1322.95" y="863.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.06%)</title><rect x="1200.0" y="613" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="1202.99" y="623.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="784.1" y="533" width="0.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="787.06" y="543.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (30,303,030 samples, 0.19%)</title><rect x="332.2" y="549" width="2.7" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="335.23" y="559.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (20,202,020 samples, 0.13%)</title><rect x="1313.8" y="805" width="1.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1316.82" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="995.1" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="998.09" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="842.7" y="405" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="845.73" y="415.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="976.7" y="629" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="979.70" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="457.4" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="460.45" y="799.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="1063.4" y="757" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1066.39" y="767.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="922.4" y="757" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="925.41" y="767.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="610.7" y="661" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="613.69" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="917" width="12.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1379.87" y="927.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="1312.1" y="677" width="0.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1315.07" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (101,010,100 samples, 0.63%)</title><rect x="390.0" y="693" width="8.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="393.03" y="703.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="1262.2" y="645" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1265.16" y="655.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="337.5" y="661" width="1.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="340.49" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="843.6" y="341" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="846.60" y="351.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1222.8" y="677" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1225.75" y="687.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="457.4" y="709" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="460.45" y="719.5" ></text>
+</g>
+<g >
+<title>add_disk_randomness (10,101,010 samples, 0.06%)</title><rect x="749.9" y="405" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="752.91" y="415.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="487.2" y="741" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="490.22" y="751.5" ></text>
+</g>
+<g >
+<title>common_perm_cond (10,101,010 samples, 0.06%)</title><rect x="409.3" y="693" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="412.29" y="703.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="721.9" y="533" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="724.89" y="543.5" ></text>
+</g>
+<g >
+<title>copy_creds (10,101,010 samples, 0.06%)</title><rect x="1275.3" y="741" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1278.29" y="751.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="707.0" y="581" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="710.01" y="591.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="816.5" y="485" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="819.46" y="495.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="631.7" y="613" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="634.70" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (1,818,181,800 samples, 11.42%)</title><rect x="169.4" y="805" width="157.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="172.37" y="815.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1037.1" y="437" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1040.12" y="447.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (121,212,120 samples, 0.76%)</title><rect x="1049.4" y="773" width="10.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1052.38" y="783.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.06%)</title><rect x="638.7" y="677" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="641.71" y="687.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="773" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1363.23" y="783.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="315.6" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="318.60" y="687.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="369.0" y="661" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="372.01" y="671.5" ></text>
+</g>
+<g >
+<title>strlen@plt (10,101,010 samples, 0.06%)</title><rect x="1210.5" y="725" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="1213.49" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="872.5" y="773" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="875.50" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="841.9" y="485" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="844.85" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="449.6" y="709" width="1.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="452.57" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="439.9" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="442.94" y="671.5" ></text>
+</g>
+<g >
+<title>_copy_to_iter (10,101,010 samples, 0.06%)</title><rect x="1358.5" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1361.48" y="607.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="315.6" y="597" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="318.60" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="450.4" y="565" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="453.44" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="643.1" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="646.08" y="719.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="27.5" y="709" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="30.51" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="484.6" y="485" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="487.59" y="495.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.06%)</title><rect x="633.5" y="565" width="0.8" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="636.45" y="575.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="263.1" y="565" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="266.06" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1115.9" y="693" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1118.93" y="703.5" ></text>
+</g>
+<g >
+<title>xas_start (10,101,010 samples, 0.06%)</title><rect x="786.7" y="549" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="789.69" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.06%)</title><rect x="646.6" y="565" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="649.59" y="575.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (10,101,010 samples, 0.06%)</title><rect x="986.3" y="517" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="989.33" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="206.1" y="517" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="209.14" y="527.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="504.7" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="507.73" y="735.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1057.3" y="565" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1060.26" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (111,111,110 samples, 0.70%)</title><rect x="1201.7" y="757" width="9.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1204.74" y="767.5" ></text>
+</g>
+<g >
+<title>iput (40,404,040 samples, 0.25%)</title><rect x="925.0" y="645" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="928.04" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.06%)</title><rect x="990.7" y="821" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="993.71" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1248.52" y="799.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="514.4" y="837" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="517.37" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (111,111,110 samples, 0.70%)</title><rect x="598.4" y="741" width="9.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="601.43" y="751.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct_nocheck (10,101,010 samples, 0.06%)</title><rect x="1035.4" y="437" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1038.37" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (232,323,230 samples, 1.46%)</title><rect x="1021.4" y="789" width="20.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1024.36" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_append (252,525,250 samples, 1.59%)</title><rect x="1156.2" y="677" width="21.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1159.21" y="687.5" >e..</text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="824.3" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="827.34" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (20,202,020 samples, 0.13%)</title><rect x="922.4" y="597" width="1.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="925.41" y="607.5" ></text>
+</g>
+<g >
+<title>server_main_thread (151,515,150 samples, 0.95%)</title><rect x="10.9" y="1013" width="13.1" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="13.88" y="1023.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="713.1" y="645" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="716.13" y="655.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1202.6" y="661" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1205.61" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="544.1" y="773" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="547.14" y="783.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="634.3" y="549" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="637.33" y="559.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="931.2" y="533" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="934.17" y="543.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="783.2" y="565" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="786.19" y="575.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (434,343,430 samples, 2.73%)</title><rect x="104.6" y="853" width="37.6" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="107.57" y="863.5" >loo..</text>
+</g>
+<g >
+<title>pipe_write (20,202,020 samples, 0.13%)</title><rect x="558.1" y="677" width="1.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="561.15" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (70,707,070 samples, 0.44%)</title><rect x="714.0" y="741" width="6.1" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="717.01" y="751.5" ></text>
+</g>
+<g >
+<title>__napi_poll (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="437" width="2.6" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1336.08" y="447.5" ></text>
+</g>
+<g >
+<title>filemap_get_folios_tag (10,101,010 samples, 0.06%)</title><rect x="672.9" y="485" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="675.86" y="495.5" ></text>
+</g>
+<g >
+<title>sbitmap_find_bit (10,101,010 samples, 0.06%)</title><rect x="1136.9" y="325" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1139.94" y="335.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1263.0" y="805" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1266.03" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="916.3" y="613" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="919.28" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (70,707,070 samples, 0.44%)</title><rect x="171.1" y="613" width="6.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="174.12" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1188.6" y="693" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1191.60" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="153.6" y="949" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="156.60" y="959.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="773" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1019.98" y="783.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="164.1" y="789" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="167.11" y="799.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (20,202,020 samples, 0.13%)</title><rect x="1133.4" y="357" width="1.8" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="1136.44" y="367.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="451.3" y="693" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="454.32" y="703.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="155.4" y="757" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="158.36" y="767.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="563.4" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="566.40" y="623.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="525.7" y="565" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="528.75" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="866.4" y="789" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="869.37" y="799.5" ></text>
+</g>
+<g >
+<title>__release_sock (60,606,060 samples, 0.38%)</title><rect x="1376.9" y="757" width="5.2" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1379.87" y="767.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="645" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1371.98" y="655.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1154.5" y="613" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1157.45" y="623.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="165.0" y="821" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="167.99" y="831.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="777.9" y="597" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="780.93" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="179.9" y="453" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="182.87" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="714.9" y="485" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="717.89" y="495.5" ></text>
+</g>
+<g >
+<title>should_failslab.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="14.4" y="725" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="17.38" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="485.5" y="757" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="488.47" y="767.5" ></text>
+</g>
+<g >
+<title>mkdtemp (111,111,110 samples, 0.70%)</title><rect x="1263.9" y="901" width="9.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1266.91" y="911.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="770.9" y="645" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="773.93" y="655.5" ></text>
+</g>
+<g >
+<title>git_remote_lookup (40,404,040 samples, 0.25%)</title><rect x="852.4" y="837" width="3.5" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="855.36" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="789" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1332.58" y="799.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="919.8" y="549" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="922.78" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="770.1" y="661" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="773.05" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (10,101,010 samples, 0.06%)</title><rect x="963.6" y="517" width="0.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="966.57" y="527.5" ></text>
+</g>
+<g >
+<title>__submit_bio (40,404,040 samples, 0.25%)</title><rect x="1136.9" y="437" width="3.5" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1139.94" y="447.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="92.3" y="869" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="95.31" y="879.5" ></text>
+</g>
+<g >
+<title>end_bio_bh_io_sync (10,101,010 samples, 0.06%)</title><rect x="1363.7" y="325" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1366.73" y="335.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="808.6" y="613" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="811.58" y="623.5" ></text>
+</g>
+<g >
+<title>fprintf (20,202,020 samples, 0.13%)</title><rect x="71.3" y="917" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="74.29" y="927.5" ></text>
+</g>
+<g >
+<title>ip_output (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="693" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1389.50" y="703.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="748.2" y="533" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="751.16" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="842.7" y="357" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="845.73" y="367.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="740.3" y="437" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="743.28" y="447.5" ></text>
+</g>
+<g >
+<title>__default_morecore (10,101,010 samples, 0.06%)</title><rect x="429.4" y="853" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="432.43" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="234.2" y="565" width="1.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="237.16" y="575.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1266.5" y="677" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1269.54" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1348.8" y="853" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1351.85" y="863.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.06%)</title><rect x="441.7" y="709" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="444.69" y="719.5" ></text>
+</g>
+<g >
+<title>do_filp_open (30,303,030 samples, 0.19%)</title><rect x="453.9" y="565" width="2.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="456.95" y="575.5" ></text>
+</g>
+<g >
+<title>__getblk_slow (10,101,010 samples, 0.06%)</title><rect x="582.7" y="549" width="0.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="585.66" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="853.2" y="645" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="856.24" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="553.8" y="661" width="1.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="556.77" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="453.9" y="613" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="456.95" y="623.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.06%)</title><rect x="977.6" y="741" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="980.58" y="751.5" ></text>
+</g>
+<g >
+<title>__find_get_block (20,202,020 samples, 0.13%)</title><rect x="675.5" y="533" width="1.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="678.48" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="395.3" y="629" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="398.28" y="639.5" ></text>
+</g>
+<g >
+<title>d_splice_alias (10,101,010 samples, 0.06%)</title><rect x="1327.0" y="693" width="0.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1329.95" y="703.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="757" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1241.52" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="447.8" y="709" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="450.82" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (30,303,030 samples, 0.19%)</title><rect x="1341.8" y="693" width="2.7" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1344.84" y="703.5" ></text>
+</g>
+<g >
+<title>mnt_want_write (10,101,010 samples, 0.06%)</title><rect x="950.4" y="581" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="953.43" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="487.2" y="693" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="490.22" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="597" width="3.5" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1091.78" y="607.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.06%)</title><rect x="1160.6" y="565" width="0.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="1163.58" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="476.7" y="597" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="479.71" y="607.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="180.7" y="293" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="183.75" y="303.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="709" width="1.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1019.98" y="719.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (20,202,020 samples, 0.13%)</title><rect x="1096.7" y="613" width="1.7" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1099.66" y="623.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct (10,101,010 samples, 0.06%)</title><rect x="792.8" y="453" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="795.82" y="463.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="924.2" y="725" width="0.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="927.16" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="805.1" y="709" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="808.08" y="719.5" ></text>
+</g>
+<g >
+<title>filemap_flush (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="581" width="5.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1102.29" y="591.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="963.6" y="501" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="966.57" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="1105.4" y="741" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1108.42" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="984.6" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="987.58" y="703.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.06%)</title><rect x="81.8" y="837" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="84.80" y="847.5" ></text>
+</g>
+<g >
+<title>__do_softirq (40,404,040 samples, 0.25%)</title><rect x="36.3" y="421" width="3.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="39.27" y="431.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (111,111,110 samples, 0.70%)</title><rect x="1263.9" y="885" width="9.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1266.91" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (101,010,100 samples, 0.63%)</title><rect x="82.7" y="805" width="8.7" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="85.68" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="184.3" y="533" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="187.25" y="543.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="936.4" y="629" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="939.42" y="639.5" ></text>
+</g>
+<g >
+<title>dput (20,202,020 samples, 0.13%)</title><rect x="1260.4" y="629" width="1.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1263.41" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="901.4" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="904.40" y="735.5" ></text>
+</g>
+<g >
+<title>git_object_lookup_prefix (40,404,040 samples, 0.25%)</title><rect x="682.5" y="837" width="3.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="685.49" y="847.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1250.8" y="581" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1253.77" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="693.0" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="695.99" y="655.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="389" width="2.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1367.61" y="399.5" ></text>
+</g>
+<g >
+<title>malloc (30,303,030 samples, 0.19%)</title><rect x="1215.7" y="645" width="2.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1218.75" y="655.5" ></text>
+</g>
+<g >
+<title>sk_destruct (10,101,010 samples, 0.06%)</title><rect x="1371.6" y="245" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="1374.61" y="255.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="373" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1040.99" y="383.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="691.2" y="629" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="694.24" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="158.9" y="869" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="161.86" y="879.5" ></text>
+</g>
+<g >
+<title>do_pipe2 (20,202,020 samples, 0.13%)</title><rect x="1321.7" y="805" width="1.8" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1324.70" y="815.5" ></text>
+</g>
+<g >
+<title>lh_table_lookup_ex (10,101,010 samples, 0.06%)</title><rect x="1351.5" y="805" width="0.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1354.47" y="815.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (10,101,010 samples, 0.06%)</title><rect x="883.9" y="693" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="886.88" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.06%)</title><rect x="772.7" y="501" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="775.68" y="511.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="892.6" y="597" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="895.64" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="783.2" y="517" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="786.19" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="324.4" y="565" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="327.35" y="575.5" ></text>
+</g>
+<g >
+<title>try_charge_memcg (10,101,010 samples, 0.06%)</title><rect x="1314.7" y="725" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1317.70" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="376.9" y="629" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="379.89" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (30,303,030 samples, 0.19%)</title><rect x="1045.0" y="581" width="2.6" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="1048.00" y="591.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.06%)</title><rect x="685.1" y="709" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="688.11" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="756.9" y="581" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="759.92" y="591.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="597" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="1197.73" y="607.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.06%)</title><rect x="805.1" y="485" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="808.08" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_chdir (30,303,030 samples, 0.19%)</title><rect x="154.5" y="853" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="157.48" y="863.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="1223.6" y="613" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1226.63" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_ext_determine_insert_hole (10,101,010 samples, 0.06%)</title><rect x="733.3" y="485" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="736.27" y="495.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="657.1" y="437" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="660.09" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="546.8" y="789" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="549.76" y="799.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="809.5" y="693" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="812.45" y="703.5" ></text>
+</g>
+<g >
+<title>uncharge_batch (10,101,010 samples, 0.06%)</title><rect x="35.4" y="293" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="38.39" y="303.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (20,202,020 samples, 0.13%)</title><rect x="1050.3" y="645" width="1.7" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="1053.25" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (40,404,040 samples, 0.25%)</title><rect x="515.2" y="661" width="3.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="518.24" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="934.7" y="645" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="937.67" y="655.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (40,404,040 samples, 0.25%)</title><rect x="15.3" y="965" width="3.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="18.25" y="975.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="986.3" y="693" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="989.33" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="329.6" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="332.61" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="958.3" y="373" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="961.31" y="383.5" ></text>
+</g>
+<g >
+<title>vfs_rename (60,606,060 samples, 0.38%)</title><rect x="466.2" y="709" width="5.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="469.21" y="719.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="496.9" y="645" width="0.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="499.85" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (919,191,910 samples, 5.77%)</title><rect x="73.9" y="1029" width="79.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="76.92" y="1039.5" >[libgit2...</text>
+</g>
+<g >
+<title>d_move (10,101,010 samples, 0.06%)</title><rect x="663.2" y="645" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="666.22" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="1202.6" y="693" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1205.61" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="797.2" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="800.20" y="575.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.06%)</title><rect x="365.5" y="693" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="368.51" y="703.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.06%)</title><rect x="319.1" y="661" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="322.10" y="671.5" ></text>
+</g>
+<g >
+<title>__napi_poll (40,404,040 samples, 0.25%)</title><rect x="36.3" y="373" width="3.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="39.27" y="383.5" ></text>
+</g>
+<g >
+<title>_raw_read_lock (10,101,010 samples, 0.06%)</title><rect x="880.4" y="453" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="883.38" y="463.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="904.0" y="565" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="907.02" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="266.6" y="613" width="2.6" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="269.56" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1264.8" y="645" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1267.78" y="655.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (50,505,050 samples, 0.32%)</title><rect x="35.4" y="597" width="4.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="38.39" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="756.0" y="725" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="759.04" y="735.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (10,101,010 samples, 0.06%)</title><rect x="930.3" y="453" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="933.29" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_end_bio (10,101,010 samples, 0.06%)</title><rect x="986.3" y="549" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="989.33" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="176.4" y="485" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="179.37" y="495.5" ></text>
+</g>
+<g >
+<title>flush_tlb_mm_range (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="709" width="0.8" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="1322.07" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="289.3" y="501" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="292.33" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_release_dir (10,101,010 samples, 0.06%)</title><rect x="327.0" y="693" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="329.98" y="703.5" ></text>
+</g>
+<g >
+<title>rename (252,525,250 samples, 1.59%)</title><rect x="1120.3" y="757" width="21.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1123.30" y="767.5" >r..</text>
+</g>
+<g >
+<title>ext4_orphan_del (20,202,020 samples, 0.13%)</title><rect x="171.1" y="517" width="1.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="174.12" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (30,303,030 samples, 0.19%)</title><rect x="634.3" y="597" width="2.7" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="637.33" y="607.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="501" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1209.99" y="511.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="709" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1241.52" y="719.5" ></text>
+</g>
+<g >
+<title>d_splice_alias (10,101,010 samples, 0.06%)</title><rect x="782.3" y="517" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="785.31" y="527.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="821" width="7.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1363.23" y="831.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="847.1" y="549" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="850.11" y="559.5" ></text>
+</g>
+<g >
+<title>__lookup_mnt (10,101,010 samples, 0.06%)</title><rect x="865.5" y="517" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="868.49" y="527.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (20,202,020 samples, 0.13%)</title><rect x="1280.5" y="693" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1283.55" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1323.5" y="821" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1326.45" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="740.3" y="613" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="743.28" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="777.1" y="709" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="780.06" y="719.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (20,202,020 samples, 0.13%)</title><rect x="675.5" y="549" width="1.7" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="678.48" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.06%)</title><rect x="541.5" y="629" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="544.51" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="735.9" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="738.90" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="929.4" y="565" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="932.42" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (20,202,020 samples, 0.13%)</title><rect x="736.8" y="693" width="1.7" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="739.78" y="703.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="924.2" y="709" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="927.16" y="719.5" ></text>
+</g>
+<g >
+<title>dput (40,404,040 samples, 0.25%)</title><rect x="786.7" y="645" width="3.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="789.69" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="17.0" y="933" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="20.01" y="943.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="206.1" y="533" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="209.14" y="543.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="677" width="5.2" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1372.86" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="768.3" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="771.30" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (30,303,030 samples, 0.19%)</title><rect x="634.3" y="613" width="2.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="637.33" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="995.1" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="998.09" y="703.5" ></text>
+</g>
+<g >
+<title>jbd2_alloc (10,101,010 samples, 0.06%)</title><rect x="791.1" y="517" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="794.07" y="527.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_synsent_state_process (30,303,030 samples, 0.19%)</title><rect x="1341.8" y="709" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1344.84" y="719.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.06%)</title><rect x="960.9" y="389" width="0.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="963.94" y="399.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.06%)</title><rect x="953.1" y="533" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="956.06" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.13%)</title><rect x="793.7" y="469" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="796.69" y="479.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="551.1" y="613" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="554.14" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1097.5" y="517" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1100.54" y="527.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (20,202,020 samples, 0.13%)</title><rect x="1344.5" y="757" width="1.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1347.47" y="767.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (10,101,010 samples, 0.06%)</title><rect x="464.5" y="613" width="0.8" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="467.45" y="623.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="524.9" y="661" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="527.87" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1116.30" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="168.5" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="171.49" y="815.5" ></text>
+</g>
+<g >
+<title>file_modified (10,101,010 samples, 0.06%)</title><rect x="449.6" y="629" width="0.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="452.57" y="639.5" ></text>
+</g>
+<g >
+<title>filename_create (20,202,020 samples, 0.13%)</title><rect x="599.3" y="677" width="1.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="602.30" y="687.5" ></text>
+</g>
+<g >
+<title>_raw_read_lock (10,101,010 samples, 0.06%)</title><rect x="1193.9" y="485" width="0.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1196.86" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="916.3" y="677" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="919.28" y="687.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (40,404,040 samples, 0.25%)</title><rect x="1036.2" y="485" width="3.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1039.24" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1011.7" y="773" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1014.73" y="783.5" ></text>
+</g>
+<g >
+<title>rmdir (60,606,060 samples, 0.38%)</title><rect x="423.3" y="837" width="5.3" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="426.30" y="847.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="663.2" y="469" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="666.22" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="929.4" y="613" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="932.42" y="623.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1183.4" y="677" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1186.35" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (50,505,050 samples, 0.32%)</title><rect x="110.7" y="805" width="4.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="113.70" y="815.5" ></text>
+</g>
+<g >
+<title>json_object_put (10,101,010 samples, 0.06%)</title><rect x="1350.6" y="837" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="1353.60" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="967.9" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="970.94" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="963.6" y="629" width="1.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="966.57" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1094.0" y="741" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1097.04" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="802.4" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="805.45" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (20,202,020 samples, 0.13%)</title><rect x="327.0" y="741" width="1.7" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="329.98" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="855.9" y="837" width="4.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="858.86" y="847.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1057.3" y="549" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1060.26" y="559.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (20,202,020 samples, 0.13%)</title><rect x="783.2" y="725" width="1.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="786.19" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="1110.7" y="549" width="0.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1113.67" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="750.8" y="725" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="753.79" y="735.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="615.9" y="629" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="618.94" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="481.1" y="773" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="484.09" y="783.5" ></text>
+</g>
+<g >
+<title>cimple-worker (15,191,919,040 samples, 95.43%)</title><rect x="73.0" y="1061" width="1317.0" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="76.05" y="1071.5" >cimple-worker</text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="548.5" y="773" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="551.52" y="783.5" ></text>
+</g>
+<g >
+<title>__perf_event_header__init_id (10,101,010 samples, 0.06%)</title><rect x="241.2" y="485" width="0.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="244.17" y="495.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="212.3" y="629" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="215.27" y="639.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.06%)</title><rect x="1200.0" y="517" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1202.99" y="527.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="447.8" y="693" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="450.82" y="703.5" ></text>
+</g>
+<g >
+<title>crc_pcl (20,202,020 samples, 0.13%)</title><rect x="349.7" y="597" width="1.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="352.75" y="607.5" ></text>
+</g>
+<g >
+<title>wait4 (20,202,020 samples, 0.13%)</title><rect x="1323.5" y="869" width="1.7" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="1326.45" y="879.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (70,707,070 samples, 0.44%)</title><rect x="1185.1" y="821" width="6.1" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1188.10" y="831.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="980.2" y="613" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="983.20" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_wait4 (20,202,020 samples, 0.13%)</title><rect x="1323.5" y="805" width="1.7" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1326.45" y="815.5" ></text>
+</g>
+<g >
+<title>rmdir (181,818,180 samples, 1.14%)</title><rect x="195.6" y="709" width="15.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="198.63" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="256.1" y="565" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="259.05" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="797.2" y="517" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="800.20" y="527.5" ></text>
+</g>
+<g >
+<title>inode_maybe_inc_iversion (10,101,010 samples, 0.06%)</title><rect x="404.0" y="645" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="407.04" y="655.5" ></text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.06%)</title><rect x="565.2" y="581" width="0.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="568.15" y="591.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.06%)</title><rect x="523.1" y="549" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="526.12" y="559.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="784.9" y="661" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="787.94" y="671.5" ></text>
+</g>
+<g >
+<title>evict (30,303,030 samples, 0.19%)</title><rect x="787.6" y="581" width="2.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="790.56" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="808.6" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="811.58" y="719.5" ></text>
+</g>
+<g >
+<title>pcre2_compile_8 (30,303,030 samples, 0.19%)</title><rect x="826.1" y="789" width="2.6" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="829.09" y="799.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (40,404,040 samples, 0.25%)</title><rect x="930.3" y="613" width="3.5" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="933.29" y="623.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1013.5" y="709" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1016.48" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1195.6" y="709" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1198.61" y="719.5" ></text>
+</g>
+<g >
+<title>__wake_up (10,101,010 samples, 0.06%)</title><rect x="344.5" y="597" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="347.49" y="607.5" ></text>
+</g>
+<g >
+<title>security_inode_unlink (10,101,010 samples, 0.06%)</title><rect x="397.9" y="677" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="400.91" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="896.1" y="629" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="899.14" y="639.5" ></text>
+</g>
+<g >
+<title>security_inode_need_killpriv (10,101,010 samples, 0.06%)</title><rect x="779.7" y="533" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="782.68" y="543.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1158.0" y="613" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1160.96" y="623.5" ></text>
+</g>
+<g >
+<title>unlink (80,808,080 samples, 0.51%)</title><rect x="170.2" y="661" width="7.0" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="173.24" y="671.5" ></text>
+</g>
+<g >
+<title>ip_output (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="613" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1336.08" y="623.5" ></text>
+</g>
+<g >
+<title>jsonrpc_notification_create (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="933" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1392.12" y="943.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (545,454,540 samples, 3.43%)</title><rect x="561.6" y="789" width="47.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="564.65" y="799.5" >[lib..</text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="488.1" y="565" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="491.10" y="575.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (70,707,070 samples, 0.44%)</title><rect x="839.2" y="645" width="6.2" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="842.23" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="292.8" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="295.83" y="559.5" ></text>
+</g>
+<g >
+<title>git_repository__cleanup (10,101,010 samples, 0.06%)</title><rect x="990.7" y="853" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="993.71" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1083.5" y="773" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1086.53" y="783.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1195.6" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1198.61" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="916.3" y="741" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="919.28" y="751.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="393.5" y="629" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="396.53" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1231.5" y="565" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1234.51" y="575.5" ></text>
+</g>
+<g >
+<title>block_write_end (20,202,020 samples, 0.13%)</title><rect x="922.4" y="581" width="1.8" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="925.41" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="738.5" y="741" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="741.53" y="751.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="482.0" y="549" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="484.97" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1036.2" y="453" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1039.24" y="463.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="595.8" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="598.80" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="741.2" y="437" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="744.15" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1147.4" y="597" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1150.45" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1257.8" y="741" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1260.78" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="784.1" y="565" width="0.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="787.06" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="439.9" y="773" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="442.94" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_ext_determine_insert_hole (10,101,010 samples, 0.06%)</title><rect x="1047.6" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1050.63" y="623.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (30,303,030 samples, 0.19%)</title><rect x="1133.4" y="501" width="2.7" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1136.44" y="511.5" ></text>
+</g>
+<g >
+<title>unlink (20,202,020 samples, 0.13%)</title><rect x="736.8" y="757" width="1.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="739.78" y="767.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.3.0] (10,101,010 samples, 0.06%)</title><rect x="1356.7" y="805" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1359.73" y="815.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1208.7" y="645" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1211.74" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="842.7" y="373" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="845.73" y="383.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="1083.5" y="597" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1086.53" y="607.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="348.0" y="613" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="350.99" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_create (60,606,060 samples, 0.38%)</title><rect x="507.4" y="661" width="5.2" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="510.36" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="896.1" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="899.14" y="655.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="637.8" y="613" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="640.83" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="892.6" y="613" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="895.64" y="623.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (40,404,040 samples, 0.25%)</title><rect x="36.3" y="405" width="3.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="39.27" y="415.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="645" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1348.34" y="655.5" ></text>
+</g>
+<g >
+<title>unlink (50,505,050 samples, 0.32%)</title><rect x="1063.4" y="805" width="4.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1066.39" y="815.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.06%)</title><rect x="1283.2" y="629" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1286.17" y="639.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="948.7" y="517" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="951.68" y="527.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.06%)</title><rect x="883.9" y="549" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="886.88" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (101,010,100 samples, 0.63%)</title><rect x="583.5" y="565" width="8.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="586.54" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (30,303,030 samples, 0.19%)</title><rect x="415.4" y="709" width="2.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="418.42" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1088.8" y="485" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1091.78" y="495.5" ></text>
+</g>
+<g >
+<title>delete_from_page_cache_batch (10,101,010 samples, 0.06%)</title><rect x="186.9" y="517" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="189.88" y="527.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="645.7" y="677" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="648.71" y="687.5" ></text>
+</g>
+<g >
+<title>__d_lookup (10,101,010 samples, 0.06%)</title><rect x="104.6" y="821" width="0.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="107.57" y="831.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="608.9" y="693" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="611.93" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (202,020,200 samples, 1.27%)</title><rect x="750.8" y="805" width="17.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="753.79" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1037.1" y="421" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1040.12" y="431.5" ></text>
+</g>
+<g >
+<title>xas_start (10,101,010 samples, 0.06%)</title><rect x="1068.6" y="597" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1071.64" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="868.1" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="871.12" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1222.8" y="645" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1225.75" y="655.5" ></text>
+</g>
+<g >
+<title>evict (40,404,040 samples, 0.25%)</title><rect x="462.7" y="645" width="3.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="465.70" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="857.6" y="741" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="860.61" y="751.5" ></text>
+</g>
+<g >
+<title>__do_sys_getcwd (10,101,010 samples, 0.06%)</title><rect x="158.0" y="821" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="160.98" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1000.3" y="581" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1003.34" y="591.5" ></text>
+</g>
+<g >
+<title>iput (141,414,140 samples, 0.89%)</title><rect x="351.5" y="661" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="354.50" y="671.5" ></text>
+</g>
+<g >
+<title>kmalloc_trace (10,101,010 samples, 0.06%)</title><rect x="334.9" y="661" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="337.86" y="671.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="449.6" y="773" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="452.57" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1272.7" y="709" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1275.66" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (40,404,040 samples, 0.25%)</title><rect x="841.0" y="565" width="3.5" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="843.98" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="862.0" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="864.99" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_find_dest_de (30,303,030 samples, 0.19%)</title><rect x="133.5" y="773" width="2.6" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="136.46" y="783.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.06%)</title><rect x="1008.2" y="517" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1011.22" y="527.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="655.3" y="517" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="658.34" y="527.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="898.8" y="613" width="1.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="901.77" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="594.9" y="677" width="2.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="597.92" y="687.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="1003.8" y="597" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1006.85" y="607.5" ></text>
+</g>
+<g >
+<title>blk_mq_submit_bio (40,404,040 samples, 0.25%)</title><rect x="1136.9" y="421" width="3.5" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1139.94" y="431.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="66.9" y="757" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="69.92" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="943.4" y="501" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="946.43" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="311.2" y="773" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="314.22" y="783.5" ></text>
+</g>
+<g >
+<title>opendir (10,101,010 samples, 0.06%)</title><rect x="883.9" y="709" width="0.9" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="886.88" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="974.1" y="485" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="977.07" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="916.3" y="725" width="5.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="919.28" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="546.8" y="757" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="549.76" y="767.5" ></text>
+</g>
+<g >
+<title>[libpcre2-8.so.0.11.2] (10,101,010 samples, 0.06%)</title><rect x="829.6" y="773" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="832.59" y="783.5" ></text>
+</g>
+<g >
+<title>schedule (20,202,020 samples, 0.13%)</title><rect x="659.7" y="453" width="1.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="662.72" y="463.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="693.0" y="629" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="695.99" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="357" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1040.99" y="367.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="882.1" y="661" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="885.13" y="671.5" ></text>
+</g>
+<g >
+<title>_raw_read_lock (10,101,010 samples, 0.06%)</title><rect x="1176.3" y="645" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1179.35" y="655.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="604.6" y="549" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="607.56" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="856.7" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="859.74" y="783.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.06%)</title><rect x="393.5" y="613" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="396.53" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="245" width="1.7" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1336.96" y="255.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="904.0" y="549" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="907.02" y="559.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (50,505,050 samples, 0.32%)</title><rect x="1186.9" y="805" width="4.3" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1189.85" y="815.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.06%)</title><rect x="718.4" y="501" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="721.39" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (20,202,020 samples, 0.13%)</title><rect x="1118.6" y="693" width="1.7" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="1121.55" y="703.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="1057.3" y="597" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1060.26" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="1092.3" y="661" width="1.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1095.28" y="671.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1012.6" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1015.60" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (60,606,060 samples, 0.38%)</title><rect x="366.4" y="725" width="5.2" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="369.38" y="735.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="69" width="1.7" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1336.96" y="79.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="645.7" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="648.71" y="703.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="979.3" y="485" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="982.33" y="495.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (20,202,020 samples, 0.13%)</title><rect x="302.5" y="597" width="1.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="305.46" y="607.5" ></text>
+</g>
+<g >
+<title>iterate_dir (30,303,030 samples, 0.19%)</title><rect x="401.4" y="741" width="2.6" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="404.41" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="883.9" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="886.88" y="671.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (70,707,070 samples, 0.44%)</title><rect x="1362.0" y="677" width="6.1" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1364.98" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="148.4" y="773" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="151.35" y="783.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.3.0] (10,101,010 samples, 0.06%)</title><rect x="10.9" y="901" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="13.88" y="911.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="517.0" y="565" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="519.99" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="770.1" y="613" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="773.05" y="623.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="538.0" y="549" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="541.01" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="337.5" y="597" width="1.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="340.49" y="607.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="197.4" y="581" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="200.39" y="591.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.06%)</title><rect x="184.3" y="485" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="187.25" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="1153.6" y="645" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1156.58" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_create (50,505,050 samples, 0.32%)</title><rect x="770.9" y="533" width="4.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="773.93" y="543.5" ></text>
+</g>
+<g >
+<title>readdir64 (20,202,020 samples, 0.13%)</title><rect x="884.8" y="709" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="887.76" y="719.5" ></text>
+</g>
+<g >
+<title>iput (10,101,010 samples, 0.06%)</title><rect x="236.8" y="613" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="239.79" y="623.5" ></text>
+</g>
+<g >
+<title>filldir64 (10,101,010 samples, 0.06%)</title><rect x="616.8" y="629" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="619.81" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="752.5" y="517" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="755.54" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="484.6" y="629" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="487.59" y="639.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="741.2" y="501" width="0.8" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="744.15" y="511.5" ></text>
+</g>
+<g >
+<title>save_fpregs_to_fpstate (10,101,010 samples, 0.06%)</title><rect x="397.0" y="565" width="0.9" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="400.03" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="203.5" y="533" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="206.52" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="552.9" y="837" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="555.89" y="847.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="403.2" y="725" width="0.8" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="406.16" y="735.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="764.8" y="517" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="767.80" y="527.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="1235.9" y="645" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1238.89" y="655.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="784.9" y="485" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="787.94" y="495.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.19%)</title><rect x="318.2" y="677" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="321.22" y="687.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="609.8" y="709" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="612.81" y="719.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.06%)</title><rect x="278.8" y="501" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="281.82" y="511.5" ></text>
+</g>
+<g >
+<title>d_lookup (10,101,010 samples, 0.06%)</title><rect x="662.3" y="629" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="665.35" y="639.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (20,202,020 samples, 0.13%)</title><rect x="358.5" y="533" width="1.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="361.50" y="543.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (30,303,030 samples, 0.19%)</title><rect x="1089.7" y="501" width="2.6" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1092.66" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="746.4" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="749.41" y="671.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="586.2" y="453" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="589.17" y="463.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="968.8" y="501" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="971.82" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="736.8" y="741" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="739.78" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="905.8" y="613" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="908.77" y="623.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (30,303,030 samples, 0.19%)</title><rect x="1083.5" y="789" width="2.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1086.53" y="799.5" ></text>
+</g>
+<g >
+<title>kernel_clone (202,020,200 samples, 1.27%)</title><rect x="45.9" y="741" width="17.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="48.90" y="751.5" ></text>
+</g>
+<g >
+<title>__blk_mq_end_request (10,101,010 samples, 0.06%)</title><rect x="663.2" y="453" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="666.22" y="463.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="92.3" y="885" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="95.31" y="895.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="853.2" y="565" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="856.24" y="575.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (20,202,020 samples, 0.13%)</title><rect x="736.8" y="677" width="1.7" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="739.78" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="895.3" y="757" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="898.27" y="767.5" ></text>
+</g>
+<g >
+<title>mas_find (20,202,020 samples, 0.13%)</title><rect x="1300.7" y="709" width="1.7" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1303.69" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="228.0" y="581" width="2.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="231.03" y="591.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="315.6" y="613" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="318.60" y="623.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="634.3" y="565" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="637.33" y="575.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="469" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1037.49" y="479.5" ></text>
+</g>
+<g >
+<title>getdents64 (20,202,020 samples, 0.13%)</title><rect x="193.0" y="725" width="1.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="196.01" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="654.5" y="549" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="657.47" y="559.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.06%)</title><rect x="754.3" y="405" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="757.29" y="415.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (30,303,030 samples, 0.19%)</title><rect x="895.3" y="789" width="2.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="898.27" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="981.1" y="661" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="984.08" y="671.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="188.6" y="533" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="191.63" y="543.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="581" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1241.52" y="591.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (30,303,030 samples, 0.19%)</title><rect x="1133.4" y="437" width="2.7" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1136.44" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_getattr (10,101,010 samples, 0.06%)</title><rect x="1256.9" y="613" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1259.90" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1083.5" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1086.53" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="740.3" y="453" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="743.28" y="463.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="155.4" y="789" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="158.36" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (40,404,040 samples, 0.25%)</title><rect x="188.6" y="565" width="3.5" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="191.63" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="984.6" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="987.58" y="735.5" ></text>
+</g>
+<g >
+<title>pipe_read (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="757" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1322.95" y="767.5" ></text>
+</g>
+<g >
+<title>file_close (10,101,010 samples, 0.06%)</title><rect x="20.5" y="949" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="23.51" y="959.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (929,292,920 samples, 5.84%)</title><rect x="559.9" y="821" width="80.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="562.90" y="831.5" >[libgit2...</text>
+</g>
+<g >
+<title>rename (151,515,150 samples, 0.95%)</title><rect x="1028.4" y="741" width="13.1" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1031.36" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="1327.0" y="709" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1329.95" y="719.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.06%)</title><rect x="665.9" y="341" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="668.85" y="351.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.06%)</title><rect x="1342.7" y="309" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1345.72" y="319.5" ></text>
+</g>
+<g >
+<title>ksys_read (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="757" width="1.7" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1361.48" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_read_block_bitmap (10,101,010 samples, 0.06%)</title><rect x="702.6" y="437" width="0.9" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="705.63" y="447.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (101,010,100 samples, 0.63%)</title><rect x="665.0" y="565" width="8.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="667.97" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="722.8" y="741" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="725.77" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="752.5" y="677" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="755.54" y="687.5" ></text>
+</g>
+<g >
+<title>request_create_start_run (20,202,020 samples, 0.13%)</title><rect x="18.8" y="981" width="1.7" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="21.76" y="991.5" ></text>
+</g>
+<g >
+<title>inet_wait_for_connect (70,707,070 samples, 0.44%)</title><rect x="1376.9" y="789" width="6.1" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1379.87" y="799.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="524.9" y="629" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="527.87" y="639.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="462.7" y="597" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="465.70" y="607.5" ></text>
+</g>
+<g >
+<title>__sbrk (10,101,010 samples, 0.06%)</title><rect x="239.4" y="709" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="242.42" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="200.0" y="565" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="203.01" y="575.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="764.8" y="485" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="767.80" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_rename (80,808,080 samples, 0.51%)</title><rect x="1034.5" y="613" width="7.0" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1037.49" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="839.2" y="581" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="842.23" y="591.5" ></text>
+</g>
+<g >
+<title>iput (101,010,100 samples, 0.63%)</title><rect x="811.2" y="629" width="8.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="814.21" y="639.5" ></text>
+</g>
+<g >
+<title>dput (101,010,100 samples, 0.63%)</title><rect x="811.2" y="677" width="8.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="814.21" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (50,505,050 samples, 0.32%)</title><rect x="35.4" y="629" width="4.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="38.39" y="639.5" ></text>
+</g>
+<g >
+<title>event_loop_run (525,252,520 samples, 3.30%)</title><rect x="24.0" y="949" width="45.5" height="15.0" fill="rgb(0,235,193)" rx="2" ry="2" />
+<text x="27.01" y="959.5" >even..</text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.06%)</title><rect x="721.0" y="661" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="724.02" y="671.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="366.4" y="661" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="369.38" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="972.3" y="517" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="975.32" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="751.7" y="613" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="754.66" y="623.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="834.8" y="629" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="837.85" y="639.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (70,707,070 samples, 0.44%)</title><rect x="1214.0" y="757" width="6.1" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1217.00" y="767.5" ></text>
+</g>
+<g >
+<title>generic_update_time (10,101,010 samples, 0.06%)</title><rect x="979.3" y="501" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="982.33" y="511.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.3.0] (10,101,010 samples, 0.06%)</title><rect x="10.9" y="885" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="13.88" y="895.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="517" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1221.38" y="527.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_pre_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="1200.0" y="549" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1202.99" y="559.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.06%)</title><rect x="187.8" y="437" width="0.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="190.75" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.19%)</title><rect x="1165.0" y="533" width="2.6" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1167.96" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (40,404,040 samples, 0.25%)</title><rect x="930.3" y="565" width="3.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="933.29" y="575.5" ></text>
+</g>
+<g >
+<title>__init_rwsem (10,101,010 samples, 0.06%)</title><rect x="573.9" y="581" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="576.91" y="591.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (20,202,020 samples, 0.13%)</title><rect x="985.5" y="821" width="1.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="988.46" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="402.3" y="661" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="405.28" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1107.2" y="677" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1110.17" y="687.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="565" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1221.38" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (20,202,020 samples, 0.13%)</title><rect x="1147.4" y="677" width="1.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1150.45" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1202.6" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1205.61" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="661" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1091.78" y="671.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="885.6" y="597" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="888.63" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="974.1" y="469" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="977.07" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="159.7" y="837" width="6.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="162.73" y="847.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (70,707,070 samples, 0.44%)</title><rect x="507.4" y="741" width="6.1" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="510.36" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_release_folio (10,101,010 samples, 0.06%)</title><rect x="818.2" y="485" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="821.21" y="495.5" ></text>
+</g>
+<g >
+<title>generic_update_time (20,202,020 samples, 0.13%)</title><rect x="337.5" y="677" width="1.7" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="340.49" y="687.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1202.6" y="613" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1205.61" y="623.5" ></text>
+</g>
+<g >
+<title>__skb_datagram_iter (10,101,010 samples, 0.06%)</title><rect x="1358.5" y="629" width="0.9" height="15.0" fill="rgb(0,229,163)" rx="2" ry="2" />
+<text x="1361.48" y="639.5" ></text>
+</g>
+<g >
+<title>realpath (20,202,020 samples, 0.13%)</title><rect x="1197.4" y="789" width="1.7" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="1200.36" y="799.5" ></text>
+</g>
+<g >
+<title>__inet_twsk_schedule (10,101,010 samples, 0.06%)</title><rect x="38.0" y="149" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="41.02" y="159.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (40,404,040 samples, 0.25%)</title><rect x="1384.7" y="757" width="3.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1387.75" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="463.6" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="466.58" y="559.5" ></text>
+</g>
+<g >
+<title>errseq_check (10,101,010 samples, 0.06%)</title><rect x="546.8" y="469" width="0.8" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="549.76" y="479.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1094.9" y="581" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1097.91" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="834.0" y="645" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="836.97" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="552.9" y="789" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="555.89" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="852.4" y="757" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="855.36" y="767.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.06%)</title><rect x="919.8" y="533" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="922.78" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_superblock_csum_set (20,202,020 samples, 0.13%)</title><rect x="349.7" y="629" width="1.8" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" />
+<text x="352.75" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="892.6" y="741" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="895.64" y="751.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (10,101,010 samples, 0.06%)</title><rect x="1342.7" y="325" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1345.72" y="335.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="1167.6" y="581" width="2.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1170.59" y="591.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="749.9" y="549" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="752.91" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mb_good_group_nolock (10,101,010 samples, 0.06%)</title><rect x="1046.8" y="549" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1049.75" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="860.2" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="863.24" y="799.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="958.3" y="325" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="961.31" y="335.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (40,404,040 samples, 0.25%)</title><rect x="188.6" y="581" width="3.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="191.63" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="979.3" y="469" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="982.33" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="548.5" y="709" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="551.52" y="719.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.06%)</title><rect x="524.0" y="629" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="527.00" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="157.1" y="869" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="160.11" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (383,838,380 samples, 2.41%)</title><rect x="438.2" y="837" width="33.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="441.19" y="847.5" >[l..</text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.13%)</title><rect x="911.0" y="741" width="1.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="914.03" y="751.5" ></text>
+</g>
+<g >
+<title>mkdir (363,636,360 samples, 2.28%)</title><rect x="563.4" y="757" width="31.5" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="566.40" y="767.5" >mk..</text>
+</g>
+<g >
+<title>ext4_do_writepages (40,404,040 samples, 0.25%)</title><rect x="930.3" y="549" width="3.5" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="933.29" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="709" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1022.61" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="1242.9" y="837" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1245.89" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="922.4" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="925.41" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="182.5" y="677" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="185.50" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1015.2" y="789" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1018.23" y="799.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="886.5" y="597" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="889.51" y="607.5" ></text>
+</g>
+<g >
+<title>memcg_list_lru_alloc (10,101,010 samples, 0.06%)</title><rect x="1080.0" y="549" width="0.9" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="1083.03" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="415.4" y="677" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="418.42" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (30,303,030 samples, 0.19%)</title><rect x="341.0" y="645" width="2.6" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="343.99" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="649.2" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="652.21" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="730.6" y="613" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="733.65" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_push (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="725" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1336.08" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1182.5" y="709" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1185.47" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="1191.2" y="789" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1194.23" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="524.9" y="709" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="527.87" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="654.5" y="517" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="657.47" y="527.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="365.5" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="368.51" y="655.5" ></text>
+</g>
+<g >
+<title>__sock_release (90,909,090 samples, 0.57%)</title><rect x="1369.0" y="789" width="7.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1371.98" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1217.5" y="613" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1220.50" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="886.5" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="889.51" y="687.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.06%)</title><rect x="989.0" y="613" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="991.96" y="623.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="789" width="0.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1322.07" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (10,101,010 samples, 0.06%)</title><rect x="463.6" y="581" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="466.58" y="591.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="254.3" y="629" width="2.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="257.30" y="639.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="661" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1116.30" y="671.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="235.0" y="469" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="238.04" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="256.1" y="581" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="259.05" y="591.5" ></text>
+</g>
+<g >
+<title>lh_table_free (10,101,010 samples, 0.06%)</title><rect x="1350.6" y="853" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1353.60" y="863.5" ></text>
+</g>
+<g >
+<title>do_filp_open (30,303,030 samples, 0.19%)</title><rect x="988.1" y="725" width="2.6" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="991.08" y="735.5" ></text>
+</g>
+<g >
+<title>security_d_instantiate (10,101,010 samples, 0.06%)</title><rect x="699.1" y="565" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="702.12" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (40,404,040 samples, 0.25%)</title><rect x="110.7" y="773" width="3.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="113.70" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (282,828,280 samples, 1.78%)</title><rect x="804.2" y="821" width="24.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="807.20" y="831.5" >[..</text>
+</g>
+<g >
+<title>perf_event_mmap_event (10,101,010 samples, 0.06%)</title><rect x="241.2" y="549" width="0.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="244.17" y="559.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="1236.8" y="661" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1239.76" y="671.5" ></text>
+</g>
+<g >
+<title>__fput (20,202,020 samples, 0.13%)</title><rect x="237.7" y="677" width="1.7" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="240.66" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="734.1" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="737.15" y="751.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="765.7" y="517" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="768.67" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (222,222,220 samples, 1.40%)</title><rect x="831.3" y="805" width="19.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="834.35" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="709" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1235.39" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (30,303,030 samples, 0.19%)</title><rect x="707.9" y="549" width="2.6" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="710.88" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="750.8" y="677" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="753.79" y="687.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="712.3" y="565" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="715.26" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="629" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1262.53" y="639.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="973.2" y="453" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="976.20" y="463.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.06%)</title><rect x="930.3" y="389" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="933.29" y="399.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="306.0" y="709" width="5.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="308.96" y="719.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="725" width="1.7" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1332.58" y="735.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.06%)</title><rect x="924.2" y="693" width="0.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="927.16" y="703.5" ></text>
+</g>
+<g >
+<title>evict (90,909,090 samples, 0.57%)</title><rect x="654.5" y="597" width="7.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="657.47" y="607.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="986.3" y="597" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="989.33" y="607.5" ></text>
+</g>
+<g >
+<title>__release_sock (30,303,030 samples, 0.19%)</title><rect x="1341.8" y="757" width="2.7" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1344.84" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (60,606,060 samples, 0.38%)</title><rect x="1006.5" y="661" width="5.2" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1009.47" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="939.9" y="405" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="942.92" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="955.7" y="517" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="958.69" y="527.5" ></text>
+</g>
+<g >
+<title>d_instantiate_new (20,202,020 samples, 0.13%)</title><rect x="126.5" y="805" width="1.7" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="129.46" y="815.5" ></text>
+</g>
+<g >
+<title>git_remote_fetch (1,555,555,540 samples, 9.77%)</title><rect x="855.9" y="869" width="134.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="858.86" y="879.5" >git_remote_fetch</text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="412.8" y="581" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="415.79" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="594.9" y="693" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="597.92" y="703.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.06%)</title><rect x="822.6" y="373" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="825.59" y="383.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1013.5" y="757" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1016.48" y="767.5" ></text>
+</g>
+<g >
+<title>inode_add_lru (10,101,010 samples, 0.06%)</title><rect x="325.2" y="581" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="328.23" y="591.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="443.4" y="597" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="446.44" y="607.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="366.4" y="629" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="369.38" y="639.5" ></text>
+</g>
+<g >
+<title>nd_jump_root (20,202,020 samples, 0.13%)</title><rect x="892.6" y="565" width="1.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="895.64" y="575.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="213" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1375.49" y="223.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="447.8" y="661" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="450.82" y="671.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1096.7" y="469" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1099.66" y="479.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="389" width="5.2" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1372.86" y="399.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="955.7" y="437" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="958.69" y="447.5" ></text>
+</g>
+<g >
+<title>end_bio_bh_io_sync (10,101,010 samples, 0.06%)</title><rect x="249.9" y="373" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="252.92" y="383.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1122.1" y="597" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1125.06" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (10,101,010 samples, 0.06%)</title><rect x="702.6" y="453" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="705.63" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.06%)</title><rect x="384.8" y="533" width="0.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="387.77" y="543.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (90,909,090 samples, 0.57%)</title><rect x="332.2" y="741" width="7.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="335.23" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="514.4" y="821" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="517.37" y="831.5" ></text>
+</g>
+<g >
+<title>do_fcntl (10,101,010 samples, 0.06%)</title><rect x="329.6" y="693" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="332.61" y="703.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (20,202,020 samples, 0.13%)</title><rect x="608.9" y="789" width="1.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="611.93" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1122.9" y="549" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1125.93" y="559.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="725.4" y="565" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="728.39" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="66.0" y="853" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="69.04" y="863.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="856.7" y="661" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="859.74" y="671.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="834.8" y="677" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="837.85" y="687.5" ></text>
+</g>
+<g >
+<title>__fput (20,202,020 samples, 0.13%)</title><rect x="868.1" y="613" width="1.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="871.12" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="882.1" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="885.13" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="752.5" y="581" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="755.54" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="154.5" y="885" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="157.48" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="426.8" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="429.80" y="575.5" ></text>
+</g>
+<g >
+<title>net_recv (30,303,030 samples, 0.19%)</title><rect x="1357.6" y="853" width="2.6" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1360.60" y="863.5" ></text>
+</g>
+<g >
+<title>block_write_end (10,101,010 samples, 0.06%)</title><rect x="1010.0" y="597" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="1012.97" y="607.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="902.3" y="581" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="905.27" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1000.3" y="565" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1003.34" y="575.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="916.3" y="581" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="919.28" y="591.5" ></text>
+</g>
+<g >
+<title>_copy_from_user (10,101,010 samples, 0.06%)</title><rect x="24.0" y="853" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="27.01" y="863.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="764.8" y="501" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="767.80" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1126.4" y="485" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1129.43" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (737,373,730 samples, 4.63%)</title><rect x="560.8" y="805" width="63.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="563.77" y="815.5" >[libgit..</text>
+</g>
+<g >
+<title>__sock_release (90,909,090 samples, 0.57%)</title><rect x="34.5" y="741" width="7.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="37.52" y="751.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="507.4" y="517" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="510.36" y="527.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="157.1" y="901" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="160.11" y="911.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="972.3" y="677" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="975.32" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.19%)</title><rect x="280.6" y="549" width="2.6" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="283.57" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_io_submit (50,505,050 samples, 0.32%)</title><rect x="1136.1" y="501" width="4.3" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="1139.07" y="511.5" ></text>
+</g>
+<g >
+<title>json_object_put (10,101,010 samples, 0.06%)</title><rect x="1350.6" y="805" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="1353.60" y="815.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="677" width="0.8" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1347.47" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.06%)</title><rect x="271.8" y="501" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="274.81" y="511.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="1092.3" y="645" width="1.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1095.28" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (40,404,040 samples, 0.25%)</title><rect x="515.2" y="677" width="3.5" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="518.24" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="547.6" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="550.64" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1263.0" y="757" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1266.03" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="974.9" y="533" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="977.95" y="543.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1375.1" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1378.11" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="864.6" y="581" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="867.62" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="862.0" y="677" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="864.99" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="805" width="1.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1322.95" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="482.0" y="677" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="484.97" y="687.5" ></text>
+</g>
+<g >
+<title>net_send_buf (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="917" width="7.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1363.23" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_append (50,505,050 samples, 0.32%)</title><rect x="701.8" y="565" width="4.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="704.75" y="575.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (20,202,020 samples, 0.13%)</title><rect x="162.4" y="773" width="1.7" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="165.36" y="783.5" ></text>
+</g>
+<g >
+<title>rename (111,111,110 samples, 0.70%)</title><rect x="925.0" y="789" width="9.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="928.04" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (20,202,020 samples, 0.13%)</title><rect x="1372.5" y="261" width="1.7" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="1375.49" y="271.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="457.4" y="741" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="460.45" y="751.5" ></text>
+</g>
+<g >
+<title>accept4 (40,404,040 samples, 0.25%)</title><rect x="66.0" y="885" width="3.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="69.04" y="895.5" ></text>
+</g>
+<g >
+<title>ip_output (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="597" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1345.72" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="714.0" y="629" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="717.01" y="639.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="1322.6" y="741" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="1325.58" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="808.6" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="811.58" y="655.5" ></text>
+</g>
+<g >
+<title>__do_softirq (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="469" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1345.72" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (20,202,020 samples, 0.13%)</title><rect x="190.4" y="549" width="1.7" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="193.38" y="559.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="907.5" y="597" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="910.53" y="607.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.06%)</title><rect x="1017.9" y="581" width="0.8" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="1020.86" y="591.5" ></text>
+</g>
+<g >
+<title>git_signature_default (30,303,030 samples, 0.19%)</title><rect x="475.0" y="837" width="2.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="477.96" y="847.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="597" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1029.61" y="607.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="663.2" y="485" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="666.22" y="495.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="151.0" y="853" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="153.98" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="412.8" y="661" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="415.79" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_bio_write_folio (10,101,010 samples, 0.06%)</title><rect x="795.4" y="437" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="798.44" y="447.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1217.5" y="565" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1220.50" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="724.5" y="757" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="727.52" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="958.3" y="405" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="961.31" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="678.1" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="681.11" y="559.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="157.1" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="160.11" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="798.9" y="693" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="801.95" y="703.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="550.3" y="565" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="553.27" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="902.3" y="677" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="905.27" y="687.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.06%)</title><rect x="163.2" y="693" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="166.24" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (50,505,050 samples, 0.32%)</title><rect x="770.9" y="629" width="4.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="773.93" y="639.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (70,707,070 samples, 0.44%)</title><rect x="171.1" y="581" width="6.1" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="174.12" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (30,303,030 samples, 0.19%)</title><rect x="1029.2" y="565" width="2.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1032.24" y="575.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="808.6" y="597" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="811.58" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="408.4" y="837" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="411.41" y="847.5" ></text>
+</g>
+<g >
+<title>d_alloc (20,202,020 samples, 0.13%)</title><rect x="1050.3" y="629" width="1.7" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1053.25" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1247.64" y="767.5" ></text>
+</g>
+<g >
+<title>sock_close (90,909,090 samples, 0.57%)</title><rect x="1369.0" y="805" width="7.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="1371.98" y="815.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="239.4" y="757" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="242.42" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1083.5" y="757" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1086.53" y="767.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (10,101,010 samples, 0.06%)</title><rect x="759.5" y="757" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="762.54" y="767.5" ></text>
+</g>
+<g >
+<title>git_config_set_int64 (212,121,210 samples, 1.33%)</title><rect x="1086.2" y="821" width="18.3" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1089.15" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (10,101,010 samples, 0.06%)</title><rect x="1349.7" y="869" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1352.72" y="879.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="905.8" y="549" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="908.77" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.13%)</title><rect x="842.7" y="453" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="845.73" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="813.8" y="565" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="816.83" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="578.3" y="613" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="581.29" y="623.5" ></text>
+</g>
+<g >
+<title>snprintf (20,202,020 samples, 0.13%)</title><rect x="436.4" y="869" width="1.8" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="439.43" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="271.8" y="549" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="274.81" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (30,303,030 samples, 0.19%)</title><rect x="332.2" y="597" width="2.7" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="335.23" y="607.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="143.1" y="901" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="146.10" y="911.5" ></text>
+</g>
+<g >
+<title>__ext4_forget (10,101,010 samples, 0.06%)</title><rect x="362.9" y="517" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="365.88" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="956.6" y="517" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="959.56" y="527.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="645" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1247.64" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="551.1" y="565" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="554.14" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (363,636,360 samples, 2.28%)</title><rect x="563.4" y="693" width="31.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="566.40" y="703.5" >__..</text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="484.6" y="645" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="487.59" y="655.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.06%)</title><rect x="373.4" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="376.39" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="408.4" y="789" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="411.41" y="799.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="249.9" y="389" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="252.92" y="399.5" ></text>
+</g>
+<g >
+<title>from_kgid (10,101,010 samples, 0.06%)</title><rect x="291.1" y="501" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="294.08" y="511.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="151.9" y="885" width="1.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="154.85" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (30,303,030 samples, 0.19%)</title><rect x="266.6" y="549" width="2.6" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="269.56" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (30,303,030 samples, 0.19%)</title><rect x="405.8" y="661" width="2.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="408.79" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1094.0" y="661" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1097.04" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="1127.3" y="421" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="1130.31" y="431.5" ></text>
+</g>
+<g >
+<title>pthread_cond_wait (20,202,020 samples, 0.13%)</title><rect x="22.3" y="965" width="1.7" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="25.26" y="975.5" ></text>
+</g>
+<g >
+<title>find_get_pid (10,101,010 samples, 0.06%)</title><rect x="1324.3" y="757" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1327.33" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="489.0" y="757" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="491.97" y="767.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="753.4" y="453" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="756.41" y="463.5" ></text>
+</g>
+<g >
+<title>evict (181,818,180 samples, 1.14%)</title><rect x="374.3" y="677" width="15.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="377.26" y="687.5" ></text>
+</g>
+<g >
+<title>os_xsave (10,101,010 samples, 0.06%)</title><rect x="397.0" y="549" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="400.03" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="73.9" y="949" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="76.92" y="959.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="752.5" y="645" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="755.54" y="655.5" ></text>
+</g>
+<g >
+<title>current_obj_cgroup (10,101,010 samples, 0.06%)</title><rect x="1309.4" y="693" width="0.9" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="1312.44" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="758.7" y="757" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="761.67" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1262.2" y="629" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1265.16" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_match (10,101,010 samples, 0.06%)</title><rect x="174.6" y="485" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="177.62" y="495.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1192.1" y="613" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1195.11" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="1126.4" y="501" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1129.43" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (50,505,050 samples, 0.32%)</title><rect x="177.2" y="581" width="4.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="180.25" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (20,202,020 samples, 0.13%)</title><rect x="418.9" y="725" width="1.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="421.92" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="974.1" y="501" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="977.07" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="456.6" y="741" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="459.57" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="773" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1248.52" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="42.4" y="901" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="45.40" y="911.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="373.4" y="613" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="376.39" y="623.5" ></text>
+</g>
+<g >
+<title>cimple-server (727,272,720 samples, 4.57%)</title><rect x="10.0" y="1061" width="63.0" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="13.00" y="1071.5" >cimple..</text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="329.6" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="332.61" y="783.5" ></text>
+</g>
+<g >
+<title>iput (181,818,180 samples, 1.14%)</title><rect x="374.3" y="693" width="15.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="377.26" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.13%)</title><rect x="1168.5" y="565" width="1.7" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1171.46" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="876.9" y="629" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="879.88" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_desc (10,101,010 samples, 0.06%)</title><rect x="1123.8" y="501" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="1126.81" y="511.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="701.8" y="517" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="704.75" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (30,303,030 samples, 0.19%)</title><rect x="1211.4" y="693" width="2.6" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1214.37" y="703.5" ></text>
+</g>
+<g >
+<title>net_connect (90,909,090 samples, 0.57%)</title><rect x="1338.3" y="949" width="7.9" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1341.34" y="959.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="290.2" y="453" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="293.20" y="463.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="604.6" y="581" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="607.56" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_read (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="773" width="1.8" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1322.95" y="783.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (20,202,020 samples, 0.13%)</title><rect x="822.6" y="469" width="1.7" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="825.59" y="479.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1108.42" y="671.5" ></text>
+</g>
+<g >
+<title>_start (14,252,525,110 samples, 89.53%)</title><rect x="154.5" y="1045" width="1235.5" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="157.48" y="1055.5" >_start</text>
+</g>
+<g >
+<title>lookup_open.isra.0 (80,808,080 samples, 0.51%)</title><rect x="996.8" y="629" width="7.0" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="999.84" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="394.4" y="629" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="397.40" y="639.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="74.8" y="853" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="77.80" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="834.0" y="565" width="0.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="836.97" y="575.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="309.5" y="597" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="312.47" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="524.0" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="527.00" y="719.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="182.5" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="185.50" y="639.5" ></text>
+</g>
+<g >
+<title>get_orlov_stats (10,101,010 samples, 0.06%)</title><rect x="1269.2" y="725" width="0.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1272.16" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="515.2" y="821" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="518.24" y="831.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1348.34" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (60,606,060 samples, 0.38%)</title><rect x="958.3" y="485" width="5.3" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="961.31" y="495.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="1314.7" y="741" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1317.70" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="955.7" y="485" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="958.69" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1226.3" y="709" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1229.26" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="153.6" y="981" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="156.60" y="991.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.13%)</title><rect x="1096.7" y="581" width="1.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1099.66" y="591.5" ></text>
+</g>
+<g >
+<title>mb_find_order_for_block (10,101,010 samples, 0.06%)</title><rect x="703.5" y="421" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="706.50" y="431.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="309.5" y="581" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="312.47" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="324.4" y="549" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="327.35" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="569.5" y="565" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="572.53" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="1248.1" y="741" width="5.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1251.15" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="911.0" y="773" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="914.03" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_connect (50,505,050 samples, 0.32%)</title><rect x="1341.8" y="869" width="4.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1344.84" y="879.5" ></text>
+</g>
+<g >
+<title>tlb_finish_mmu (10,101,010 samples, 0.06%)</title><rect x="429.4" y="693" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="432.43" y="703.5" ></text>
+</g>
+<g >
+<title>__lookup_mnt (10,101,010 samples, 0.06%)</title><rect x="916.3" y="501" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="919.28" y="511.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="80.9" y="821" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="83.93" y="831.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.06%)</title><rect x="1342.7" y="261" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1345.72" y="271.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="985.5" y="549" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="988.46" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="495.1" y="725" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="498.10" y="735.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="72.2" y="757" width="0.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="75.17" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="604.6" y="597" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="607.56" y="607.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="986.3" y="709" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="989.33" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="208.8" y="421" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="211.77" y="431.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="651.0" y="597" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="653.96" y="607.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (131,313,130 samples, 0.82%)</title><rect x="786.7" y="661" width="11.4" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="789.69" y="671.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (30,303,030 samples, 0.19%)</title><rect x="1089.7" y="485" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1092.66" y="495.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="487.2" y="645" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="490.22" y="655.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.06%)</title><rect x="979.3" y="677" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="982.33" y="687.5" ></text>
+</g>
+<g >
+<title>do_filp_open (50,505,050 samples, 0.32%)</title><rect x="770.9" y="597" width="4.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="773.93" y="607.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="550.3" y="581" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="553.27" y="591.5" ></text>
+</g>
+<g >
+<title>inflateResetKeep (10,101,010 samples, 0.06%)</title><rect x="472.3" y="725" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="475.34" y="735.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1227.1" y="581" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1230.13" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (111,111,110 samples, 0.70%)</title><rect x="144.0" y="981" width="9.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="146.97" y="991.5" ></text>
+</g>
+<g >
+<title>connect (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="933" width="12.2" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1379.87" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1125.6" y="533" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1128.56" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (70,707,070 samples, 0.44%)</title><rect x="839.2" y="597" width="6.2" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="842.23" y="607.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="373" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1345.72" y="383.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="981.1" y="677" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="984.08" y="687.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="1341.0" y="789" width="0.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="1343.96" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (20,202,020 samples, 0.13%)</title><rect x="1126.4" y="517" width="1.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1129.43" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="440.8" y="613" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="443.81" y="623.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="740.3" y="517" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="743.28" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1125.6" y="517" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1128.56" y="527.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (50,505,050 samples, 0.32%)</title><rect x="1333.1" y="741" width="4.4" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="1336.08" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.06%)</title><rect x="671.1" y="437" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="674.10" y="447.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="528.4" y="661" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="531.38" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.06%)</title><rect x="1264.8" y="597" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1267.78" y="607.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="677" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1348.34" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="348.9" y="597" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="351.87" y="607.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (40,404,040 samples, 0.25%)</title><rect x="36.3" y="341" width="3.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="39.27" y="351.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="469" width="1.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1389.50" y="479.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="309" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1140.82" y="319.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1202.6" y="565" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1205.61" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="484.6" y="469" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="487.59" y="479.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.13%)</title><rect x="906.6" y="629" width="1.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="909.65" y="639.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (90,909,090 samples, 0.57%)</title><rect x="1132.6" y="581" width="7.8" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="1135.56" y="591.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (10,101,010 samples, 0.06%)</title><rect x="1366.4" y="213" width="0.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1369.36" y="223.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="677" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1091.78" y="687.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="1199.1" y="645" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1202.11" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="248.2" y="581" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="251.17" y="591.5" ></text>
+</g>
+<g >
+<title>do_softirq (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="581" width="1.7" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1389.50" y="591.5" ></text>
+</g>
+<g >
+<title>journal_end_buffer_io_sync (10,101,010 samples, 0.06%)</title><rect x="249.9" y="357" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="252.92" y="367.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="789" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1241.52" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (808,080,800 samples, 5.08%)</title><rect x="73.9" y="1013" width="70.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="76.92" y="1023.5" >[libgit..</text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="284.1" y="565" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="287.07" y="575.5" ></text>
+</g>
+<g >
+<title>open64 (70,707,070 samples, 0.44%)</title><rect x="507.4" y="821" width="6.1" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="510.36" y="831.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="1085.3" y="725" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1088.28" y="735.5" ></text>
+</g>
+<g >
+<title>rename (90,909,090 samples, 0.57%)</title><rect x="1096.7" y="741" width="7.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1099.66" y="751.5" ></text>
+</g>
+<g >
+<title>ip_rcv (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="453" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1348.34" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (111,111,110 samples, 0.70%)</title><rect x="925.0" y="757" width="9.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="928.04" y="767.5" ></text>
+</g>
+<g >
+<title>block_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="818.2" y="517" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="821.21" y="527.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="163.2" y="725" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="166.24" y="735.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="517" width="2.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1336.08" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (90,909,090 samples, 0.57%)</title><rect x="184.3" y="629" width="7.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="187.25" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="967.9" y="581" width="1.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="970.94" y="591.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="1199.1" y="613" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="1202.11" y="623.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="939.0" y="485" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="942.05" y="495.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="956.6" y="485" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="959.56" y="495.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (10,101,010 samples, 0.06%)</title><rect x="1064.3" y="661" width="0.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1067.26" y="671.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="629" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1322.07" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="348.9" y="581" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="351.87" y="591.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="645" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1363.23" y="655.5" ></text>
+</g>
+<g >
+<title>evict (40,404,040 samples, 0.25%)</title><rect x="171.1" y="549" width="3.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="174.12" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="463.6" y="469" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="466.58" y="479.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="443.4" y="581" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="446.44" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="972.3" y="629" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="975.32" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="650.1" y="661" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="653.09" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="903.1" y="661" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="906.15" y="671.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (30,303,030 samples, 0.19%)</title><rect x="37.1" y="293" width="2.7" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="40.14" y="303.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1250.8" y="645" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1253.77" y="655.5" ></text>
+</g>
+<g >
+<title>mktime (10,101,010 samples, 0.06%)</title><rect x="984.6" y="757" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="987.58" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.57%)</title><rect x="1096.7" y="709" width="7.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1099.66" y="719.5" ></text>
+</g>
+<g >
+<title>iterate_dir (30,303,030 samples, 0.19%)</title><rect x="879.5" y="597" width="2.6" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="882.51" y="607.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="446.1" y="581" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="449.07" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="31.0" y="869" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="34.02" y="879.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="1250.8" y="565" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1253.77" y="575.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="369.0" y="645" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="372.01" y="655.5" ></text>
+</g>
+<g >
+<title>git_repository_init_ext (2,636,363,610 samples, 16.56%)</title><rect x="991.6" y="853" width="228.5" height="15.0" fill="rgb(0,235,192)" rx="2" ry="2" />
+<text x="994.59" y="863.5" >git_repository_init_ext</text>
+</g>
+<g >
+<title>__x64_sys_rename (131,313,130 samples, 0.82%)</title><rect x="786.7" y="677" width="11.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="789.69" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (20,202,020 samples, 0.13%)</title><rect x="349.7" y="613" width="1.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="352.75" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="988.1" y="805" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="991.08" y="815.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="740.3" y="533" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="743.28" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (262,626,260 samples, 1.65%)</title><rect x="1220.1" y="853" width="22.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1223.13" y="863.5" >[..</text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="495.1" y="709" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="498.10" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1349.7" y="901" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1352.72" y="911.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="471.5" y="821" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="474.46" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="153.6" y="1013" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="156.60" y="1023.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="168.5" y="757" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="171.49" y="767.5" ></text>
+</g>
+<g >
+<title>fstatat64 (80,808,080 samples, 0.51%)</title><rect x="313.8" y="789" width="7.1" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="316.85" y="799.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="192.1" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="195.13" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (30,303,030 samples, 0.19%)</title><rect x="37.1" y="245" width="2.7" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="40.14" y="255.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.13%)</title><rect x="222.8" y="613" width="1.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="225.78" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (40,404,040 samples, 0.25%)</title><rect x="960.1" y="453" width="3.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="963.06" y="463.5" ></text>
+</g>
+<g >
+<title>discard_slab (10,101,010 samples, 0.06%)</title><rect x="263.1" y="421" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="266.06" y="431.5" ></text>
+</g>
+<g >
+<title>rename (131,313,130 samples, 0.82%)</title><rect x="460.1" y="805" width="11.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="463.08" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1014.4" y="693" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1017.35" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="42.4" y="885" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="45.40" y="895.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="360.3" y="565" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="363.25" y="575.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="581" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1108.42" y="591.5" ></text>
+</g>
+<g >
+<title>link (30,303,030 samples, 0.19%)</title><rect x="974.9" y="741" width="2.7" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="977.95" y="751.5" ></text>
+</g>
+<g >
+<title>unlink (313,131,310 samples, 1.97%)</title><rect x="371.6" y="789" width="27.2" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="374.64" y="799.5" >u..</text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="749.9" y="581" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="752.91" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1122.9" y="533" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1125.93" y="543.5" ></text>
+</g>
+<g >
+<title>_copy_to_user (10,101,010 samples, 0.06%)</title><rect x="1013.5" y="677" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="1016.48" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="1341.8" y="885" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1344.84" y="895.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="749.9" y="533" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="752.91" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (20,202,020 samples, 0.13%)</title><rect x="657.1" y="533" width="1.7" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="660.09" y="543.5" ></text>
+</g>
+<g >
+<title>git_repository_open_ext (222,222,220 samples, 1.40%)</title><rect x="891.8" y="821" width="19.2" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="894.76" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1125.6" y="501" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1128.56" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="894.4" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="897.39" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (60,606,060 samples, 0.38%)</title><rect x="283.2" y="581" width="5.3" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="286.20" y="591.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="108.1" y="597" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="111.07" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="985.5" y="757" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="988.46" y="767.5" ></text>
+</g>
+<g >
+<title>do_readlinkat (20,202,020 samples, 0.13%)</title><rect x="1197.4" y="693" width="1.7" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1200.36" y="703.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="693" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1363.23" y="703.5" ></text>
+</g>
+<g >
+<title>bit_wait_io (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="517" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1014.73" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstat (10,101,010 samples, 0.06%)</title><rect x="610.7" y="709" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="613.69" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="482.8" y="693" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="485.84" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="498.6" y="773" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="501.60" y="783.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="870.7" y="565" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="873.75" y="575.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="197.4" y="549" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="200.39" y="559.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1217.00" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (202,020,200 samples, 1.27%)</title><rect x="1087.0" y="757" width="17.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1090.03" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="664.1" y="597" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="667.10" y="607.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.06%)</title><rect x="725.4" y="597" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="728.39" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="967.9" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="970.94" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1204.4" y="629" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1207.37" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.57%)</title><rect x="1041.5" y="773" width="7.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1044.50" y="783.5" ></text>
+</g>
+<g >
+<title>fsnotify (20,202,020 samples, 0.13%)</title><rect x="621.2" y="677" width="1.7" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="624.19" y="687.5" ></text>
+</g>
+<g >
+<title>__memset (20,202,020 samples, 0.13%)</title><rect x="1277.9" y="693" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1280.92" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="182.5" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="185.50" y="703.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_post_alloc_hook (20,202,020 samples, 0.13%)</title><rect x="1280.5" y="677" width="1.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1283.55" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="821.7" y="565" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="824.71" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="585.3" y="437" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="588.29" y="447.5" ></text>
+</g>
+<g >
+<title>hook_file_open (10,101,010 samples, 0.06%)</title><rect x="919.8" y="517" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="922.78" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1209.6" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1212.62" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="957.4" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="960.44" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="485.5" y="565" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="488.47" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="1257.8" y="725" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1260.78" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="132.6" y="725" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="135.59" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (30,303,030 samples, 0.19%)</title><rect x="1068.6" y="645" width="2.7" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1071.64" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="525.7" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="528.75" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.06%)</title><rect x="1096.7" y="549" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1099.66" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_link (10,101,010 samples, 0.06%)</title><rect x="721.9" y="629" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="724.89" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="685.1" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="688.11" y="687.5" ></text>
+</g>
+<g >
+<title>__x86_indirect_thunk_rax (10,101,010 samples, 0.06%)</title><rect x="736.8" y="661" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="739.78" y="671.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1181.6" y="725" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1184.60" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="892.6" y="645" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="895.64" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (10,101,010 samples, 0.06%)</title><rect x="298.1" y="469" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="301.08" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="897.9" y="725" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="900.89" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1029.2" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1032.24" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="798.9" y="677" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="801.95" y="687.5" ></text>
+</g>
+<g >
+<title>git_error_set (10,101,010 samples, 0.06%)</title><rect x="798.1" y="725" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="801.07" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="750.8" y="661" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="753.79" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1231.88" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="181.6" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="184.62" y="735.5" ></text>
+</g>
+<g >
+<title>__snprintf_chk (10,101,010 samples, 0.06%)</title><rect x="1086.2" y="805" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1089.15" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="375.1" y="645" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="378.14" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (40,404,040 samples, 0.25%)</title><rect x="937.3" y="581" width="3.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="940.30" y="591.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="263.9" y="581" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="266.93" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (171,717,170 samples, 1.08%)</title><rect x="196.5" y="693" width="14.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="199.51" y="703.5" ></text>
+</g>
+<g >
+<title>__vm_area_free (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="485" width="0.8" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="1347.47" y="495.5" ></text>
+</g>
+<g >
+<title>security_socket_sendmsg (10,101,010 samples, 0.06%)</title><rect x="1337.5" y="773" width="0.8" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="1340.46" y="783.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="364.6" y="677" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="367.63" y="687.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="985.5" y="581" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="988.46" y="591.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1172.0" y="469" width="0.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1174.97" y="479.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="677" width="2.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1336.08" y="687.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="766.5" y="549" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="769.55" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="525.7" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="528.75" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_find_goal (10,101,010 samples, 0.06%)</title><rect x="83.6" y="773" width="0.8" height="15.0" fill="rgb(0,217,113)" rx="2" ry="2" />
+<text x="86.55" y="783.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1208.7" y="613" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1211.74" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.06%)</title><rect x="658.0" y="485" width="0.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="660.97" y="495.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="988.1" y="773" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="991.08" y="783.5" ></text>
+</g>
+<g >
+<title>git_odb_read_header (40,404,040 samples, 0.25%)</title><rect x="723.6" y="789" width="3.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="726.64" y="799.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="765.7" y="549" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="768.67" y="559.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.06%)</title><rect x="854.1" y="581" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="857.11" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="407.5" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="410.54" y="639.5" ></text>
+</g>
+<g >
+<title>mnt_want_write (10,101,010 samples, 0.06%)</title><rect x="512.6" y="677" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="515.61" y="687.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1041.5" y="597" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1044.50" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (121,212,120 samples, 0.76%)</title><rect x="341.0" y="661" width="10.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="343.99" y="671.5" ></text>
+</g>
+<g >
+<title>__sbrk (20,202,020 samples, 0.13%)</title><rect x="241.2" y="693" width="1.7" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="244.17" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (20,202,020 samples, 0.13%)</title><rect x="1050.3" y="597" width="1.7" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="1053.25" y="607.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="154.5" y="821" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="157.48" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1231.88" y="735.5" ></text>
+</g>
+<g >
+<title>do_softirq (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="581" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1348.34" y="591.5" ></text>
+</g>
+<g >
+<title>git_refdb_backend_fs (40,404,040 samples, 0.25%)</title><rect x="1239.4" y="805" width="3.5" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="1242.39" y="815.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="407.5" y="549" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="410.54" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1228.0" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1231.01" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="206.1" y="453" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="209.14" y="463.5" ></text>
+</g>
+<g >
+<title>getdents64 (30,303,030 samples, 0.19%)</title><rect x="879.5" y="677" width="2.6" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="882.51" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_create_access (10,101,010 samples, 0.06%)</title><rect x="1158.8" y="629" width="0.9" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="1161.83" y="639.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="423.3" y="661" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="426.30" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (10,101,010 samples, 0.06%)</title><rect x="817.3" y="581" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="820.34" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="906.6" y="661" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="909.65" y="671.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="663.2" y="581" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="666.22" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="125.6" y="725" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="128.58" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="752.5" y="661" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="755.54" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="24.0" y="917" width="5.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="27.01" y="927.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="322.6" y="613" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="325.60" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="840.1" y="565" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="843.10" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="481.1" y="757" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="484.09" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="885" width="12.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1379.87" y="895.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="773" width="1.7" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1361.48" y="783.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="186.0" y="453" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="189.00" y="463.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.06%)</title><rect x="107.2" y="789" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="110.20" y="799.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="741.2" y="405" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="744.15" y="415.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="249.9" y="501" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="252.92" y="511.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="51.2" y="645" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="54.15" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="926.8" y="565" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="929.79" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="776.2" y="485" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="779.18" y="495.5" ></text>
+</g>
+<g >
+<title>anon_vma_clone (10,101,010 samples, 0.06%)</title><rect x="1279.7" y="693" width="0.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1282.67" y="703.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="181.6" y="629" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="184.62" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (50,505,050 samples, 0.32%)</title><rect x="177.2" y="613" width="4.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="180.25" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="757" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1019.98" y="767.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1029.61" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="875.1" y="741" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="878.13" y="751.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.06%)</title><rect x="312.1" y="709" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="315.09" y="719.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="597" width="0.8" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1322.07" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (151,515,150 samples, 0.95%)</title><rect x="874.3" y="789" width="13.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="877.25" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="645" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1243.27" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="505.6" y="741" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="508.61" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="821" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1319.45" y="831.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (10,101,010 samples, 0.06%)</title><rect x="14.4" y="741" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="17.38" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1197.73" y="767.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1231.5" y="613" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1234.51" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="636.1" y="581" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="639.08" y="591.5" ></text>
+</g>
+<g >
+<title>hook_file_open (10,101,010 samples, 0.06%)</title><rect x="523.1" y="533" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="526.12" y="543.5" ></text>
+</g>
+<g >
+<title>rwsem_down_write_slowpath (10,101,010 samples, 0.06%)</title><rect x="601.9" y="645" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="604.93" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="426.8" y="613" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="429.80" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="905.8" y="645" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="908.77" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_find_dest_de (10,101,010 samples, 0.06%)</title><rect x="580.9" y="597" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="583.91" y="607.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="603.7" y="581" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="606.68" y="591.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="1172.0" y="517" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="1174.97" y="527.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.06%)</title><rect x="1003.8" y="677" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1006.85" y="687.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="439.9" y="613" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="442.94" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1325.2" y="869" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1328.20" y="879.5" ></text>
+</g>
+<g >
+<title>new_inode (20,202,020 samples, 0.13%)</title><rect x="1151.8" y="677" width="1.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1154.83" y="687.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="965.3" y="613" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="968.32" y="623.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="863.7" y="645" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="866.74" y="655.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="501.2" y="677" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="504.23" y="687.5" ></text>
+</g>
+<g >
+<title>read (30,303,030 samples, 0.19%)</title><rect x="1357.6" y="837" width="2.6" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1360.60" y="847.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="164.1" y="805" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="167.11" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (171,717,170 samples, 1.08%)</title><rect x="811.2" y="757" width="14.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="814.21" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="958.3" y="357" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="961.31" y="367.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (171,717,170 samples, 1.08%)</title><rect x="625.6" y="741" width="14.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="628.57" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1115.1" y="741" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1118.05" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="837" width="7.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1363.23" y="847.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="543.3" y="709" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="546.26" y="719.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="442.6" y="629" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="445.56" y="639.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (30,303,030 samples, 0.19%)</title><rect x="1133.4" y="405" width="2.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1136.44" y="415.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="553.8" y="629" width="1.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="556.77" y="639.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="809.5" y="629" width="0.8" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="812.45" y="639.5" ></text>
+</g>
+<g >
+<title>__blk_mq_alloc_requests (10,101,010 samples, 0.06%)</title><rect x="1136.9" y="405" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1139.94" y="415.5" ></text>
+</g>
+<g >
+<title>___d_drop (10,101,010 samples, 0.06%)</title><rect x="1130.8" y="613" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1133.81" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1257.8" y="693" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1260.78" y="703.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="1092.3" y="597" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1095.28" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="689.5" y="581" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="692.49" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="440.8" y="501" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="443.81" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="910.2" y="789" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="913.15" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="487.2" y="709" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="490.22" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="680.7" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="683.74" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="721.9" y="565" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="724.89" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1041.5" y="677" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1044.50" y="687.5" ></text>
+</g>
+<g >
+<title>unlink (191,919,190 samples, 1.21%)</title><rect x="221.0" y="725" width="16.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="224.03" y="735.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="932.9" y="469" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="935.92" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (10,101,010 samples, 0.06%)</title><rect x="671.1" y="453" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="674.10" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="678.1" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="681.11" y="575.5" ></text>
+</g>
+<g >
+<title>__block_commit_write (10,101,010 samples, 0.06%)</title><rect x="1010.0" y="581" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1012.97" y="591.5" ></text>
+</g>
+<g >
+<title>inet_sendmsg (60,606,060 samples, 0.38%)</title><rect x="1332.2" y="773" width="5.3" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1335.21" y="783.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (20,202,020 samples, 0.13%)</title><rect x="967.9" y="565" width="1.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="970.94" y="575.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="766.5" y="533" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="769.55" y="543.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.13%)</title><rect x="765.7" y="581" width="1.7" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="768.67" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.06%)</title><rect x="713.1" y="597" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="716.13" y="607.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="939.9" y="501" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="942.92" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_write (30,303,030 samples, 0.19%)</title><rect x="707.9" y="613" width="2.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="710.88" y="623.5" ></text>
+</g>
+<g >
+<title>lockref_put_return (10,101,010 samples, 0.06%)</title><rect x="1118.6" y="645" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1121.55" y="655.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="549" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1108.42" y="559.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="938.2" y="469" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="941.17" y="479.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (40,404,040 samples, 0.25%)</title><rect x="1068.6" y="741" width="3.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1071.64" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1256.0" y="757" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1259.03" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1029.2" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1032.24" y="511.5" ></text>
+</g>
+<g >
+<title>fprintf (40,404,040 samples, 0.25%)</title><rect x="556.4" y="869" width="3.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="559.40" y="879.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (565,656,560 samples, 3.55%)</title><rect x="94.9" y="949" width="49.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="97.94" y="959.5" >x64_..</text>
+</g>
+<g >
+<title>tcp_v4_connect (70,707,070 samples, 0.44%)</title><rect x="1383.0" y="789" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1385.99" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1094.0" y="677" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1097.04" y="687.5" ></text>
+</g>
+<g >
+<title>memcg_account_kmem (10,101,010 samples, 0.06%)</title><rect x="57.3" y="661" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="60.28" y="671.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="533" width="5.2" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1372.86" y="543.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1326.1" y="789" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1329.08" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1181.6" y="805" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1184.60" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1195.6" y="693" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1198.61" y="703.5" ></text>
+</g>
+<g >
+<title>net_accept (40,404,040 samples, 0.25%)</title><rect x="66.0" y="901" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="69.04" y="911.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="661" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1098.79" y="671.5" ></text>
+</g>
+<g >
+<title>make_kprojid (10,101,010 samples, 0.06%)</title><rect x="1151.0" y="677" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1153.95" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="847.1" y="613" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="850.11" y="623.5" ></text>
+</g>
+<g >
+<title>block_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="187.8" y="485" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="190.75" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (90,909,090 samples, 0.57%)</title><rect x="292.8" y="565" width="7.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="295.83" y="575.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (20,202,020 samples, 0.13%)</title><rect x="130.0" y="741" width="1.7" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="132.96" y="751.5" ></text>
+</g>
+<g >
+<title>folio_wait_writeback (20,202,020 samples, 0.13%)</title><rect x="659.7" y="517" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="662.72" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.19%)</title><rect x="289.3" y="549" width="2.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="292.33" y="559.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="651.0" y="613" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="653.96" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1226.3" y="677" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1229.26" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="805" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1202.11" y="815.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (20,202,020 samples, 0.13%)</title><rect x="12.6" y="421" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="15.63" y="431.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="108.1" y="661" width="0.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="111.07" y="671.5" ></text>
+</g>
+<g >
+<title>write (70,707,070 samples, 0.44%)</title><rect x="1005.6" y="773" width="6.1" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1008.60" y="783.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="175.5" y="469" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="178.49" y="479.5" ></text>
+</g>
+<g >
+<title>git_remote_connect_ext (535,353,530 samples, 3.36%)</title><rect x="866.4" y="853" width="46.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="869.37" y="863.5" >git_..</text>
+</g>
+<g >
+<title>ext4_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="818.2" y="533" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="821.21" y="543.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (20,202,020 samples, 0.13%)</title><rect x="1108.9" y="501" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1111.92" y="511.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1181.6" y="709" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1184.60" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_setattr (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="677" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1014.73" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_device_unbusy (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="565" width="0.8" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="1322.07" y="575.5" ></text>
+</g>
+<g >
+<title>getdents64 (131,313,130 samples, 0.82%)</title><rect x="245.5" y="757" width="11.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="248.55" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (313,131,310 samples, 1.97%)</title><rect x="653.6" y="741" width="27.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="656.59" y="751.5" >e..</text>
+</g>
+<g >
+<title>mas_walk (10,101,010 samples, 0.06%)</title><rect x="242.0" y="565" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="245.04" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="392.7" y="613" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="395.65" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="751.7" y="597" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="754.66" y="607.5" ></text>
+</g>
+<g >
+<title>git_odb_read (20,202,020 samples, 0.13%)</title><rect x="546.8" y="853" width="1.7" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="549.76" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_es_remove_extent (20,202,020 samples, 0.13%)</title><rect x="788.4" y="517" width="1.8" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="791.44" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_da_reserve_space (10,101,010 samples, 0.06%)</title><rect x="1069.5" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1072.52" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="853" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1319.45" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1206.1" y="677" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1209.12" y="687.5" ></text>
+</g>
+<g >
+<title>write (30,303,030 samples, 0.19%)</title><rect x="433.8" y="789" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="436.81" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="415.4" y="629" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="418.42" y="639.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="692.1" y="565" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="695.12" y="575.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="980.2" y="581" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="983.20" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="514.4" y="725" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="517.37" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="542.4" y="805" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="545.39" y="815.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (40,404,040 samples, 0.25%)</title><rect x="36.3" y="501" width="3.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="39.27" y="511.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="168.5" y="789" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="171.49" y="799.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (20,202,020 samples, 0.13%)</title><rect x="12.6" y="501" width="1.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="15.63" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="894.4" y="677" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="897.39" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="688.6" y="645" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="691.62" y="655.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="495.1" y="789" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="498.10" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="485.5" y="741" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="488.47" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_good_group (10,101,010 samples, 0.06%)</title><rect x="1046.8" y="533" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="1049.75" y="543.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="523.1" y="725" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="526.12" y="735.5" ></text>
+</g>
+<g >
+<title>iterate_dir (50,505,050 samples, 0.32%)</title><rect x="418.9" y="773" width="4.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="421.92" y="783.5" ></text>
+</g>
+<g >
+<title>fstatat64 (50,505,050 samples, 0.32%)</title><rect x="548.5" y="725" width="4.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="551.52" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1083.5" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1086.53" y="687.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="101" width="1.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1336.96" y="111.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="731.5" y="533" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="734.52" y="543.5" ></text>
+</g>
+<g >
+<title>git_reference_iterator_new (50,505,050 samples, 0.32%)</title><rect x="887.4" y="789" width="4.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="890.39" y="799.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="405" width="0.8" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1390.37" y="415.5" ></text>
+</g>
+<g >
+<title>open64 (30,303,030 samples, 0.19%)</title><rect x="988.1" y="821" width="2.6" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="991.08" y="831.5" ></text>
+</g>
+<g >
+<title>idr_find (10,101,010 samples, 0.06%)</title><rect x="1324.3" y="741" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="1327.33" y="751.5" ></text>
+</g>
+<g >
+<title>__d_add (10,101,010 samples, 0.06%)</title><rect x="718.4" y="517" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="721.39" y="527.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="749.0" y="597" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="752.04" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.06%)</title><rect x="84.4" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="87.43" y="767.5" ></text>
+</g>
+<g >
+<title>libjson_set (10,101,010 samples, 0.06%)</title><rect x="1348.8" y="901" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1351.85" y="911.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.06%)</title><rect x="439.9" y="693" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="442.94" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="482.8" y="677" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="485.84" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_journal_mode (10,101,010 samples, 0.06%)</title><rect x="848.9" y="533" width="0.8" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="851.86" y="543.5" ></text>
+</g>
+<g >
+<title>__d_rehash (10,101,010 samples, 0.06%)</title><rect x="782.3" y="485" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="785.31" y="495.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="496.9" y="661" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="499.85" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (30,303,030 samples, 0.19%)</title><rect x="707.9" y="597" width="2.6" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="710.88" y="607.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="741" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1349.22" y="751.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="773" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1319.45" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="375.1" y="597" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="378.14" y="607.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="550.3" y="533" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="553.27" y="543.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="485.5" y="709" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="488.47" y="719.5" ></text>
+</g>
+<g >
+<title>ksys_write (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="629" width="3.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1091.78" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="439.9" y="741" width="5.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="442.94" y="751.5" ></text>
+</g>
+<g >
+<title>mempool_alloc_slab (10,101,010 samples, 0.06%)</title><rect x="1103.7" y="373" width="0.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="1106.67" y="383.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="709" width="1.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1332.58" y="719.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="808.6" y="629" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="811.58" y="639.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.06%)</title><rect x="918.0" y="469" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="921.03" y="479.5" ></text>
+</g>
+<g >
+<title>blk_mq_attempt_bio_merge (10,101,010 samples, 0.06%)</title><rect x="466.2" y="453" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="469.21" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (111,111,110 samples, 0.70%)</title><rect x="82.7" y="853" width="9.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="85.68" y="863.5" ></text>
+</g>
+<g >
+<title>fsnotify (10,101,010 samples, 0.06%)</title><rect x="904.0" y="501" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="907.02" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.57%)</title><rect x="184.3" y="677" width="7.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="187.25" y="687.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.13%)</title><rect x="868.1" y="709" width="1.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="871.12" y="719.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="886.5" y="629" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="889.51" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="443.4" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="446.44" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="453.9" y="677" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="456.95" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (40,404,040 samples, 0.25%)</title><rect x="852.4" y="821" width="3.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="855.36" y="831.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="976.7" y="613" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="979.70" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_clone3 (202,020,200 samples, 1.27%)</title><rect x="45.9" y="773" width="17.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="48.90" y="783.5" ></text>
+</g>
+<g >
+<title>__fput_sync (20,202,020 samples, 0.13%)</title><rect x="1015.2" y="725" width="1.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1018.23" y="735.5" ></text>
+</g>
+<g >
+<title>libjson_set_internal (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="853" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1392.12" y="863.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.06%)</title><rect x="791.1" y="453" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="794.07" y="463.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="677" width="4.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1380.74" y="687.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="886.5" y="725" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="889.51" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="757" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1022.61" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="892.6" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="895.64" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="186.0" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="189.00" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="778.8" y="645" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="781.81" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (40,404,040 samples, 0.25%)</title><rect x="11.8" y="773" width="3.5" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="14.75" y="783.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="894.4" y="789" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="897.39" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="597" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1221.38" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="366.4" y="805" width="5.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="369.38" y="815.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="725" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1022.61" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.06%)</title><rect x="362.9" y="549" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="365.88" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="759.5" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="762.54" y="735.5" ></text>
+</g>
+<g >
+<title>__tcp_ack_snd_check (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="261" width="2.6" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1367.61" y="271.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="496.0" y="677" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="498.98" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="929.4" y="629" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="932.42" y="639.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="693" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1349.22" y="703.5" ></text>
+</g>
+<g >
+<title>do_softirq (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="485" width="4.4" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1380.74" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="978.5" y="741" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="981.45" y="751.5" ></text>
+</g>
+<g >
+<title>up_write (10,101,010 samples, 0.06%)</title><rect x="679.9" y="677" width="0.8" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="682.86" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="727.1" y="677" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="730.14" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (454,545,450 samples, 2.86%)</title><rect x="265.7" y="645" width="39.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="268.69" y="655.5" >vfs..</text>
+</g>
+<g >
+<title>__socket (30,303,030 samples, 0.19%)</title><rect x="1339.2" y="933" width="2.6" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1342.21" y="943.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="287.6" y="533" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="290.58" y="543.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="428.6" y="709" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="431.55" y="719.5" ></text>
+</g>
+<g >
+<title>inflateInit2_ (20,202,020 samples, 0.13%)</title><rect x="472.3" y="741" width="1.8" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="475.34" y="751.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.06%)</title><rect x="440.8" y="565" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="443.81" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (90,909,090 samples, 0.57%)</title><rect x="1096.7" y="693" width="7.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1099.66" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="785.8" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="788.81" y="655.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="503.9" y="709" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="506.86" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="830.5" y="805" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="833.47" y="815.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="537.1" y="581" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="540.13" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="297.2" y="421" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="300.21" y="431.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="752.5" y="709" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="755.54" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (141,414,140 samples, 0.89%)</title><rect x="128.2" y="805" width="12.3" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="131.21" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="72.2" y="773" width="0.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="75.17" y="783.5" ></text>
+</g>
+<g >
+<title>request_create_finished_run (20,202,020 samples, 0.13%)</title><rect x="1348.0" y="949" width="1.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1350.97" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="394.4" y="613" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="397.40" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="857.6" y="709" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="860.61" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1227.1" y="565" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1230.13" y="575.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="1116.8" y="613" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1119.80" y="623.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="208.8" y="437" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="211.77" y="447.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (111,111,110 samples, 0.70%)</title><rect x="1201.7" y="789" width="9.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1204.74" y="799.5" ></text>
+</g>
+<g >
+<title>closedir (30,303,030 samples, 0.19%)</title><rect x="398.8" y="837" width="2.6" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="401.78" y="847.5" ></text>
+</g>
+<g >
+<title>d_instantiate_new (10,101,010 samples, 0.06%)</title><rect x="699.1" y="581" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="702.12" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="433.8" y="741" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="436.81" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (101,010,100 samples, 0.63%)</title><rect x="1264.8" y="805" width="8.7" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1267.78" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="963.6" y="661" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="966.57" y="671.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="443.4" y="645" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="446.44" y="655.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="485" width="1.7" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1389.50" y="495.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="264.8" y="597" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="267.81" y="607.5" ></text>
+</g>
+<g >
+<title>__sk_free (10,101,010 samples, 0.06%)</title><rect x="1371.6" y="261" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="1374.61" y="271.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="645.7" y="661" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="648.71" y="671.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="645" width="2.6" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1336.08" y="655.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="882.1" y="565" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="885.13" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="804.2" y="741" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="807.20" y="751.5" ></text>
+</g>
+<g >
+<title>git_error_set (10,101,010 samples, 0.06%)</title><rect x="489.0" y="773" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="491.97" y="783.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="517.9" y="629" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="520.87" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="613" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1026.98" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="485.5" y="645" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="488.47" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="764.8" y="469" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="767.80" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (434,343,430 samples, 2.73%)</title><rect x="1104.5" y="773" width="37.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1107.54" y="783.5" >[li..</text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1327.0" y="741" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1329.95" y="751.5" ></text>
+</g>
+<g >
+<title>__do_sys_wait4 (20,202,020 samples, 0.13%)</title><rect x="1323.5" y="789" width="1.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1326.45" y="799.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (60,606,060 samples, 0.38%)</title><rect x="762.2" y="693" width="5.2" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="765.17" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (343,434,340 samples, 2.16%)</title><rect x="768.3" y="773" width="29.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="771.30" y="783.5" >[l..</text>
+</g>
+<g >
+<title>sk_alloc (10,101,010 samples, 0.06%)</title><rect x="1340.1" y="789" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1343.09" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1000.3" y="549" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1003.34" y="559.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="549.4" y="581" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="552.39" y="591.5" ></text>
+</g>
+<g >
+<title>__fput (20,202,020 samples, 0.13%)</title><rect x="518.7" y="725" width="1.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="521.74" y="735.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="199.1" y="549" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="202.14" y="559.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="802.4" y="597" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="805.45" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (171,717,170 samples, 1.08%)</title><rect x="77.4" y="917" width="14.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="80.42" y="927.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="248.2" y="549" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="251.17" y="559.5" ></text>
+</g>
+<g >
+<title>tcp_push (30,303,030 samples, 0.19%)</title><rect x="11.8" y="757" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="14.75" y="767.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="565" width="5.2" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="1102.29" y="575.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1256.0" y="773" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1259.03" y="783.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.06%)</title><rect x="544.1" y="821" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="547.14" y="831.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (10,101,010 samples, 0.06%)</title><rect x="646.6" y="517" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="649.59" y="527.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (50,505,050 samples, 0.32%)</title><rect x="35.4" y="581" width="4.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="38.39" y="591.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="804.2" y="709" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="807.20" y="719.5" ></text>
+</g>
+<g >
+<title>ftrace_graph_init_task (10,101,010 samples, 0.06%)</title><rect x="62.5" y="725" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="65.54" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1154.5" y="661" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1157.45" y="671.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="754.3" y="437" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="757.29" y="447.5" ></text>
+</g>
+<g >
+<title>inet_wait_for_connect (30,303,030 samples, 0.19%)</title><rect x="1341.8" y="789" width="2.7" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1344.84" y="799.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.06%)</title><rect x="1341.0" y="757" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1343.96" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (50,505,050 samples, 0.32%)</title><rect x="940.8" y="613" width="4.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="943.80" y="623.5" ></text>
+</g>
+<g >
+<title>write (30,303,030 samples, 0.19%)</title><rect x="707.9" y="709" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="710.88" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (121,212,120 samples, 0.76%)</title><rect x="695.6" y="645" width="10.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="698.62" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="581" width="3.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1091.78" y="591.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="586.2" y="469" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="589.17" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="783.2" y="597" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="786.19" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="742.0" y="645" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="745.03" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="785.8" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="788.81" y="719.5" ></text>
+</g>
+<g >
+<title>xas_start (10,101,010 samples, 0.06%)</title><rect x="1200.0" y="501" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1202.99" y="511.5" ></text>
+</g>
+<g >
+<title>xas_start (10,101,010 samples, 0.06%)</title><rect x="248.2" y="453" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="251.17" y="463.5" ></text>
+</g>
+<g >
+<title>__tcp_ack_snd_check (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="261" width="2.6" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1336.08" y="271.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (444,444,440 samples, 2.79%)</title><rect x="1143.1" y="805" width="38.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1146.07" y="815.5" >ent..</text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="392.7" y="581" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="395.65" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="549.4" y="597" width="1.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="552.39" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="867.2" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="870.25" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="1131.7" y="613" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1134.69" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_close (70,707,070 samples, 0.44%)</title><rect x="35.4" y="693" width="6.1" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="38.39" y="703.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="944.3" y="501" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="947.30" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="355.0" y="533" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="358.00" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="756.0" y="645" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="759.04" y="655.5" ></text>
+</g>
+<g >
+<title>vmbus_on_event (10,101,010 samples, 0.06%)</title><rect x="631.7" y="533" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="634.70" y="543.5" ></text>
+</g>
+<g >
+<title>__blk_mq_free_request (10,101,010 samples, 0.06%)</title><rect x="740.3" y="357" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="743.28" y="367.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="356.8" y="597" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="359.75" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="948.7" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="951.68" y="639.5" ></text>
+</g>
+<g >
+<title>call_rcu (20,202,020 samples, 0.13%)</title><rect x="302.5" y="565" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="305.46" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1146.6" y="693" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1149.57" y="703.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (40,404,040 samples, 0.25%)</title><rect x="786.7" y="629" width="3.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="789.69" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (141,414,140 samples, 0.89%)</title><rect x="837.5" y="709" width="12.2" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="840.47" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1249.9" y="693" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1252.90" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="378.6" y="581" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="381.64" y="591.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="916.3" y="549" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="919.28" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (20,202,020 samples, 0.13%)</title><rect x="842.7" y="485" width="1.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="845.73" y="495.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="742.9" y="533" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="745.91" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (20,202,020 samples, 0.13%)</title><rect x="1061.6" y="677" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1064.64" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="113.3" y="693" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="116.32" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.06%)</title><rect x="341.9" y="565" width="0.8" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="344.87" y="575.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.06%)</title><rect x="146.6" y="789" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="149.60" y="799.5" ></text>
+</g>
+<g >
+<title>alloc_pages (10,101,010 samples, 0.06%)</title><rect x="1283.2" y="661" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1286.17" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="740.3" y="421" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="743.28" y="431.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="485.5" y="581" width="0.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="488.47" y="591.5" ></text>
+</g>
+<g >
+<title>ip_local_out (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="613" width="1.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1345.72" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="746.4" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="749.41" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (40,404,040 samples, 0.25%)</title><rect x="1068.6" y="677" width="3.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1071.64" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (40,404,040 samples, 0.25%)</title><rect x="556.4" y="853" width="3.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="559.40" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (20,202,020 samples, 0.13%)</title><rect x="1030.1" y="549" width="1.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1033.11" y="559.5" ></text>
+</g>
+<g >
+<title>filemap_get_folios_tag (10,101,010 samples, 0.06%)</title><rect x="1039.7" y="469" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1042.75" y="479.5" ></text>
+</g>
+<g >
+<title>libjson_new_object (20,202,020 samples, 0.13%)</title><rect x="18.8" y="933" width="1.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="21.76" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (60,606,060 samples, 0.38%)</title><rect x="791.9" y="597" width="5.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="794.94" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="834.0" y="757" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="836.97" y="767.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="311.2" y="709" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="314.22" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (40,404,040 samples, 0.25%)</title><rect x="171.1" y="533" width="3.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="174.12" y="543.5" ></text>
+</g>
+<g >
+<title>__close (101,010,100 samples, 0.63%)</title><rect x="1368.1" y="917" width="8.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1371.11" y="927.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.06%)</title><rect x="975.8" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="978.82" y="591.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="830.5" y="789" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="833.47" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="278.8" y="581" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="281.82" y="591.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="1040.6" y="549" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1043.62" y="559.5" ></text>
+</g>
+<g >
+<title>__block_commit_write (30,303,030 samples, 0.19%)</title><rect x="1089.7" y="517" width="2.6" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1092.66" y="527.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.06%)</title><rect x="1237.6" y="613" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1240.64" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="861.1" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="864.12" y="783.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="487.2" y="773" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="490.22" y="783.5" ></text>
+</g>
+<g >
+<title>__destroy_inode (10,101,010 samples, 0.06%)</title><rect x="351.5" y="613" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="354.50" y="623.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="693.0" y="501" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="695.99" y="511.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="581" width="1.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1345.72" y="591.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="13.5" y="245" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="16.50" y="255.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="948.7" y="565" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="951.68" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="204.4" y="469" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="207.39" y="479.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (70,707,070 samples, 0.44%)</title><rect x="1369.9" y="693" width="6.1" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1372.86" y="703.5" ></text>
+</g>
+<g >
+<title>from_kgid_munged (10,101,010 samples, 0.06%)</title><rect x="1226.3" y="613" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1229.26" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1125.6" y="485" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1128.56" y="495.5" ></text>
+</g>
+<g >
+<title>pipe_write (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="709" width="1.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1349.22" y="719.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.06%)</title><rect x="563.4" y="661" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="566.40" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_clone (464,646,460 samples, 2.92%)</title><rect x="1273.5" y="789" width="40.3" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1276.54" y="799.5" >__d..</text>
+</g>
+<g >
+<title>ext4_es_find_extent_range (10,101,010 samples, 0.06%)</title><rect x="516.1" y="549" width="0.9" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" />
+<text x="519.12" y="559.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="1083.5" y="613" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1086.53" y="623.5" ></text>
+</g>
+<g >
+<title>folio_clear_dirty_for_io (10,101,010 samples, 0.06%)</title><rect x="1038.9" y="437" width="0.8" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1041.87" y="447.5" ></text>
+</g>
+<g >
+<title>__default_morecore (10,101,010 samples, 0.06%)</title><rect x="328.7" y="757" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="331.73" y="767.5" ></text>
+</g>
+<g >
+<title>alloc_inode (50,505,050 samples, 0.32%)</title><rect x="573.9" y="597" width="4.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="576.91" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (151,515,150 samples, 0.95%)</title><rect x="1028.4" y="677" width="13.1" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1031.36" y="687.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="278.8" y="565" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="281.82" y="575.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="531.9" y="581" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="534.88" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1249.0" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1252.02" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="806.0" y="485" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="808.95" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="760.4" y="741" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="763.42" y="751.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1029.2" y="453" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1032.24" y="463.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="966.2" y="629" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="969.19" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="440.8" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="443.81" y="703.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="485" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1221.38" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.06%)</title><rect x="964.4" y="501" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="967.44" y="511.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="597" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1231.88" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (2,818,181,790 samples, 17.70%)</title><rect x="559.9" y="853" width="244.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="562.90" y="863.5" >[libgit2.so.1.7.2]</text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="856.7" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="859.74" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="451.3" y="773" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="454.32" y="783.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (171,717,170 samples, 1.08%)</title><rect x="222.8" y="645" width="14.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="225.78" y="655.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="475.8" y="581" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="478.84" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="186.0" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="189.00" y="527.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (10,101,010 samples, 0.06%)</title><rect x="930.3" y="469" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="933.29" y="479.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (121,212,120 samples, 0.76%)</title><rect x="695.6" y="661" width="10.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="698.62" y="671.5" ></text>
+</g>
+<g >
+<title>blk_mq_put_tag (10,101,010 samples, 0.06%)</title><rect x="740.3" y="341" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="743.28" y="351.5" ></text>
+</g>
+<g >
+<title>cap_inode_need_killpriv (10,101,010 samples, 0.06%)</title><rect x="515.2" y="597" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="518.24" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.06%)</title><rect x="1031.0" y="437" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1033.99" y="447.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="747.3" y="677" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="750.28" y="687.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="1226.3" y="597" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1229.26" y="607.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (20,202,020 samples, 0.13%)</title><rect x="822.6" y="485" width="1.7" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="825.59" y="495.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="979.3" y="549" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="982.33" y="559.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="714.0" y="613" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="717.01" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="240.3" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="243.29" y="735.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="784.9" y="629" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="787.94" y="639.5" ></text>
+</g>
+<g >
+<title>strchrnul@plt (10,101,010 samples, 0.06%)</title><rect x="430.3" y="821" width="0.9" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="433.30" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="1021.4" y="741" width="4.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1024.36" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (111,111,110 samples, 0.70%)</title><rect x="1201.7" y="773" width="9.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1204.74" y="783.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="1153.6" y="613" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1156.58" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="733.3" y="517" width="0.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="736.27" y="527.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1193.9" y="597" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1196.86" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="272.7" y="549" width="1.7" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="275.69" y="559.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (10,101,010 samples, 0.06%)</title><rect x="1336.6" y="709" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1339.59" y="719.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="1041.5" y="613" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1044.50" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_htree_store_dirent (10,101,010 samples, 0.06%)</title><rect x="619.4" y="613" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="622.44" y="623.5" ></text>
+</g>
+<g >
+<title>block_write_end (10,101,010 samples, 0.06%)</title><rect x="646.6" y="549" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="649.59" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="215.8" y="629" width="0.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="218.77" y="639.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.06%)</title><rect x="786.7" y="565" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="789.69" y="575.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (171,717,170 samples, 1.08%)</title><rect x="77.4" y="901" width="14.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="80.42" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="177.2" y="661" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="180.25" y="671.5" ></text>
+</g>
+<g >
+<title>[unknown] (929,292,920 samples, 5.84%)</title><rect x="73.9" y="1045" width="80.6" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="76.92" y="1055.5" >[unknown]</text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="533" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1347.47" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="965.3" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="968.32" y="687.5" ></text>
+</g>
+<g >
+<title>_find_next_zero_bit (10,101,010 samples, 0.06%)</title><rect x="1052.0" y="613" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1055.01" y="623.5" ></text>
+</g>
+<g >
+<title>evict (141,414,140 samples, 0.89%)</title><rect x="351.5" y="645" width="12.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="354.50" y="655.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.06%)</title><rect x="1208.7" y="693" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1211.74" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="1200.9" y="597" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1203.86" y="607.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="732.4" y="725" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="735.40" y="735.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (20,202,020 samples, 0.13%)</title><rect x="1108.9" y="533" width="1.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="1111.92" y="543.5" ></text>
+</g>
+<g >
+<title>inflate (10,101,010 samples, 0.06%)</title><rect x="471.5" y="741" width="0.8" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="474.46" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="81.8" y="805" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="84.80" y="815.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (30,303,030 samples, 0.19%)</title><rect x="37.1" y="277" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="40.14" y="287.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="346.2" y="629" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="349.24" y="639.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="133" width="1.7" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1336.96" y="143.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="666.7" y="341" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="669.73" y="351.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="180.7" y="325" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="183.75" y="335.5" ></text>
+</g>
+<g >
+<title>down_write (70,707,070 samples, 0.44%)</title><rect x="1293.7" y="709" width="6.1" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="1296.68" y="719.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="835.7" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="838.72" y="655.5" ></text>
+</g>
+<g >
+<title>readdir64 (30,303,030 samples, 0.19%)</title><rect x="1229.8" y="757" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1232.76" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="348.0" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="350.99" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.63%)</title><rect x="1211.4" y="789" width="8.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1214.37" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="585.3" y="469" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="588.29" y="479.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="1363.7" y="421" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1366.73" y="431.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="897.9" y="709" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="900.89" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="514.4" y="789" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="517.37" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="125.6" y="757" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="128.58" y="767.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="634.3" y="517" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="637.33" y="527.5" ></text>
+</g>
+<g >
+<title>pthread_create (232,323,230 samples, 1.46%)</title><rect x="44.1" y="869" width="20.2" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="47.15" y="879.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (40,404,040 samples, 0.25%)</title><rect x="217.5" y="677" width="3.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="220.53" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="474.1" y="629" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="477.09" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (40,404,040 samples, 0.25%)</title><rect x="941.7" y="533" width="3.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="944.68" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="1221.9" y="725" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1224.88" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.06%)</title><rect x="839.2" y="565" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="842.23" y="575.5" ></text>
+</g>
+<g >
+<title>iput (40,404,040 samples, 0.25%)</title><rect x="424.2" y="725" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="427.18" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.06%)</title><rect x="402.3" y="709" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="405.28" y="719.5" ></text>
+</g>
+<g >
+<title>mb_find_extent (10,101,010 samples, 0.06%)</title><rect x="703.5" y="437" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="706.50" y="447.5" ></text>
+</g>
+<g >
+<title>apparmor_path_unlink (10,101,010 samples, 0.06%)</title><rect x="307.7" y="645" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="310.72" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="901.4" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="904.40" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="213.1" y="741" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="216.15" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="657.1" y="453" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="660.09" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="784.1" y="597" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="787.06" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1254.3" y="773" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1257.28" y="783.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (464,646,460 samples, 2.92%)</title><rect x="102.8" y="869" width="40.3" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="105.82" y="879.5" >ope..</text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.06%)</title><rect x="426.8" y="629" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="429.80" y="639.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="883.9" y="597" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="886.88" y="607.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="493.4" y="613" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="496.35" y="623.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1183.4" y="645" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1186.35" y="655.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="180.7" y="405" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="183.75" y="415.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="929.4" y="549" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="932.42" y="559.5" ></text>
+</g>
+<g >
+<title>memchr (10,101,010 samples, 0.06%)</title><rect x="616.8" y="613" width="0.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="619.81" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_write (30,303,030 samples, 0.19%)</title><rect x="433.8" y="693" width="2.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="436.81" y="703.5" ></text>
+</g>
+<g >
+<title>server_main (565,656,560 samples, 3.55%)</title><rect x="24.0" y="981" width="49.0" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="27.01" y="991.5" >serv..</text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="613" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1217.00" y="623.5" ></text>
+</g>
+<g >
+<title>process_backlog (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="421" width="2.6" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1336.08" y="431.5" ></text>
+</g>
+<g >
+<title>lh_table_lookup_entry_w_hash (10,101,010 samples, 0.06%)</title><rect x="1351.5" y="789" width="0.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1354.47" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (20,202,020 samples, 0.13%)</title><rect x="208.8" y="453" width="1.7" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="211.77" y="463.5" ></text>
+</g>
+<g >
+<title>filemap_flush (20,202,020 samples, 0.13%)</title><rect x="848.0" y="613" width="1.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="850.98" y="623.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="806.0" y="501" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="808.95" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (90,909,090 samples, 0.57%)</title><rect x="1122.9" y="581" width="7.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1125.93" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="157.1" y="837" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="160.11" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="684.2" y="773" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="687.24" y="783.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="595.8" y="597" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="598.80" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="525.7" y="597" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="528.75" y="607.5" ></text>
+</g>
+<g >
+<title>git_reference_create_matching (505,050,500 samples, 3.17%)</title><rect x="686.0" y="821" width="43.8" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="688.99" y="831.5" >git_..</text>
+</g>
+<g >
+<title>generic_perform_write (30,303,030 samples, 0.19%)</title><rect x="1108.9" y="581" width="2.6" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="1111.92" y="591.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="840.1" y="501" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="843.10" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_xattr_set_credits (10,101,010 samples, 0.06%)</title><rect x="124.7" y="821" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="127.71" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="981.1" y="709" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="984.08" y="719.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="437" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1037.49" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (222,222,220 samples, 1.40%)</title><rect x="831.3" y="821" width="19.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="834.35" y="831.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1059.9" y="773" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1062.89" y="783.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="613" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1371.98" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (30,303,030 samples, 0.19%)</title><rect x="707.9" y="645" width="2.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="710.88" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="770.1" y="597" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="773.05" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (515,151,510 samples, 3.24%)</title><rect x="260.4" y="677" width="44.7" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="263.43" y="687.5" >__x6..</text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="241.2" y="645" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="244.17" y="655.5" ></text>
+</g>
+<g >
+<title>git_error_set (10,101,010 samples, 0.06%)</title><rect x="690.4" y="677" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="693.37" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="184.3" y="549" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="187.25" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_match (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="533" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1197.73" y="543.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="11.8" y="853" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="14.75" y="863.5" ></text>
+</g>
+<g >
+<title>inet_sock_destruct (10,101,010 samples, 0.06%)</title><rect x="1376.0" y="677" width="0.9" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="1378.99" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (30,303,030 samples, 0.19%)</title><rect x="174.6" y="533" width="2.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="177.62" y="543.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.06%)</title><rect x="856.7" y="629" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="859.74" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="356.8" y="549" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="359.75" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (30,303,030 samples, 0.19%)</title><rect x="841.9" y="549" width="2.6" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="844.85" y="559.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="953.1" y="469" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="956.06" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="520.5" y="757" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="523.49" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (50,505,050 samples, 0.32%)</title><rect x="1369.9" y="309" width="4.3" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1372.86" y="319.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="984.6" y="517" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="987.58" y="527.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="447.8" y="725" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="450.82" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1340.1" y="885" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1343.09" y="895.5" ></text>
+</g>
+<g >
+<title>make_vfsuid (10,101,010 samples, 0.06%)</title><rect x="92.3" y="805" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="95.31" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="721.9" y="549" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="724.89" y="559.5" ></text>
+</g>
+<g >
+<title>vmbus_sendpacket_mpb_desc (10,101,010 samples, 0.06%)</title><rect x="665.9" y="277" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="668.85" y="287.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="908.4" y="709" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="911.40" y="719.5" ></text>
+</g>
+<g >
+<title>read (20,202,020 samples, 0.13%)</title><rect x="533.6" y="709" width="1.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="536.63" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="546.8" y="693" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="549.76" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="842.7" y="389" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="845.73" y="399.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="868.1" y="597" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="871.12" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.06%)</title><rect x="713.1" y="565" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="716.13" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="542.4" y="789" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="545.39" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="690.4" y="661" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="693.37" y="671.5" ></text>
+</g>
+<g >
+<title>unlink_cb (90,909,090 samples, 0.57%)</title><rect x="410.2" y="853" width="7.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="413.16" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="440.8" y="645" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="443.81" y="655.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="109.8" y="773" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="112.82" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.44%)</title><rect x="171.1" y="645" width="6.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="174.12" y="655.5" ></text>
+</g>
+<g >
+<title>ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="1237.6" y="597" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1240.64" y="607.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (30,303,030 samples, 0.19%)</title><rect x="625.6" y="661" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="628.57" y="671.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="114.2" y="725" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="117.20" y="735.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (90,909,090 samples, 0.57%)</title><rect x="654.5" y="629" width="7.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="657.47" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (292,929,290 samples, 1.84%)</title><rect x="373.4" y="741" width="25.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="376.39" y="751.5" >x..</text>
+</g>
+<g >
+<title>ext4_mkdir (414,141,410 samples, 2.60%)</title><rect x="1145.7" y="709" width="35.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1148.70" y="719.5" >ext..</text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="407.5" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="410.54" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="853" width="7.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1363.23" y="863.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="531.9" y="709" width="1.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="534.88" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (10,101,010 samples, 0.06%)</title><rect x="406.7" y="629" width="0.8" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="409.66" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="433.8" y="757" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="436.81" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="689.5" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="692.49" y="655.5" ></text>
+</g>
+<g >
+<title>set_root (10,101,010 samples, 0.06%)</title><rect x="1197.4" y="597" width="0.8" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1200.36" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="737.7" y="629" width="0.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="740.65" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (151,515,150 samples, 0.95%)</title><rect x="950.4" y="677" width="13.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="953.43" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (50,505,050 samples, 0.32%)</title><rect x="940.8" y="677" width="4.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="943.80" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="802.4" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="805.45" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="1022.2" y="709" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1025.23" y="719.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.13%)</title><rect x="558.1" y="661" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="561.15" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="558.1" y="757" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="561.15" y="767.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1217.00" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.06%)</title><rect x="1237.6" y="661" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1240.64" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.63%)</title><rect x="1254.3" y="805" width="8.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1257.28" y="815.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="905.8" y="485" width="0.8" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="908.77" y="495.5" ></text>
+</g>
+<g >
+<title>should_failslab.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="183.4" y="581" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="186.38" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (262,626,260 samples, 1.65%)</title><rect x="1220.1" y="837" width="22.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1223.13" y="847.5" >[..</text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="953.1" y="485" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="956.06" y="495.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (40,404,040 samples, 0.25%)</title><rect x="36.3" y="517" width="3.5" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="39.27" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="548.5" y="837" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="551.52" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="1083.5" y="645" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1086.53" y="655.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="639.6" y="661" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="642.58" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="579.2" y="597" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="582.16" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="237.7" y="741" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="240.66" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="858.5" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="861.49" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="730.6" y="629" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="733.65" y="639.5" ></text>
+</g>
+<g >
+<title>__find_get_block (30,303,030 samples, 0.19%)</title><rect x="332.2" y="565" width="2.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="335.23" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.06%)</title><rect x="1031.0" y="469" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="1033.99" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.06%)</title><rect x="1031.0" y="485" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1033.99" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="611.6" y="741" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="614.56" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="692.1" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="695.12" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="422.4" y="709" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="425.42" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.44%)</title><rect x="714.0" y="709" width="6.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="717.01" y="719.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="645" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1248.52" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="1187.7" y="773" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1190.73" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="378.6" y="565" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="381.64" y="575.5" ></text>
+</g>
+<g >
+<title>cap_inode_need_killpriv (10,101,010 samples, 0.06%)</title><rect x="779.7" y="517" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="782.68" y="527.5" ></text>
+</g>
+<g >
+<title>worker_do_run (13,787,878,650 samples, 86.61%)</title><rect x="154.5" y="965" width="1195.2" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="157.48" y="975.5" >worker_do_run</text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="713.1" y="661" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="716.13" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1110.7" y="501" width="0.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1113.67" y="511.5" ></text>
+</g>
+<g >
+<title>mb_find_extent (10,101,010 samples, 0.06%)</title><rect x="590.5" y="485" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="593.55" y="495.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="1219.3" y="581" width="0.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1222.25" y="591.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.06%)</title><rect x="917.2" y="549" width="0.8" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="920.16" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1181.6" y="821" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1184.60" y="831.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (20,202,020 samples, 0.13%)</title><rect x="988.1" y="677" width="1.7" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="991.08" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_rename (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="645" width="5.2" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1102.29" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="864.6" y="597" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="867.62" y="607.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="619.4" y="597" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="622.44" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="724.5" y="741" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="727.52" y="751.5" ></text>
+</g>
+<g >
+<title>__schedule (20,202,020 samples, 0.13%)</title><rect x="659.7" y="437" width="1.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="662.72" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="204.4" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="207.39" y="495.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="580.9" y="517" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="583.91" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="475.0" y="757" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="477.96" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (20,202,020 samples, 0.13%)</title><rect x="606.3" y="629" width="1.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="609.31" y="639.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="725.4" y="533" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="728.39" y="543.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="163.2" y="709" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="166.24" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (30,303,030 samples, 0.19%)</title><rect x="702.6" y="501" width="2.7" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="705.63" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="939.9" y="437" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="942.92" y="447.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="765.7" y="645" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="768.67" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="206.1" y="501" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="209.14" y="511.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1003.8" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1006.85" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (141,414,140 samples, 0.89%)</title><rect x="951.3" y="581" width="12.3" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="954.31" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="586.2" y="485" width="0.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="589.17" y="495.5" ></text>
+</g>
+<g >
+<title>read_tsc (10,101,010 samples, 0.06%)</title><rect x="1099.3" y="421" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1102.29" y="431.5" ></text>
+</g>
+<g >
+<title>__x64_sys_readlink (20,202,020 samples, 0.13%)</title><rect x="1197.4" y="709" width="1.7" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="1200.36" y="719.5" ></text>
+</g>
+<g >
+<title>do_rmdir (50,505,050 samples, 0.32%)</title><rect x="177.2" y="597" width="4.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="180.25" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1147.4" y="661" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1150.45" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (141,414,140 samples, 0.89%)</title><rect x="837.5" y="757" width="12.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="840.47" y="767.5" ></text>
+</g>
+<g >
+<title>net_rx_action (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="453" width="2.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1367.61" y="463.5" ></text>
+</g>
+<g >
+<title>git_signature_now (20,202,020 samples, 0.13%)</title><rect x="801.6" y="773" width="1.7" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="804.57" y="783.5" ></text>
+</g>
+<g >
+<title>do_arch_prctl_64 (10,101,010 samples, 0.06%)</title><rect x="53.8" y="693" width="0.9" height="15.0" fill="rgb(0,238,205)" rx="2" ry="2" />
+<text x="56.78" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_bio_write_folio (30,303,030 samples, 0.19%)</title><rect x="1101.9" y="437" width="2.6" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1104.92" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="975.8" y="549" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="978.82" y="559.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="1048.5" y="629" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1051.50" y="639.5" ></text>
+</g>
+<g >
+<title>path_openat (90,909,090 samples, 0.57%)</title><rect x="996.0" y="661" width="7.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="998.96" y="671.5" ></text>
+</g>
+<g >
+<title>from_kgid (10,101,010 samples, 0.06%)</title><rect x="282.3" y="517" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="285.32" y="527.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.06%)</title><rect x="197.4" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="200.39" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="446.1" y="629" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="449.07" y="639.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="167.6" y="757" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="170.61" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (101,010,100 samples, 0.63%)</title><rect x="82.7" y="789" width="8.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="85.68" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (20,202,020 samples, 0.13%)</title><rect x="842.7" y="533" width="1.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="845.73" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="730.6" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="733.65" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (363,636,360 samples, 2.28%)</title><rect x="563.4" y="709" width="31.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="566.40" y="719.5" >x6..</text>
+</g>
+<g >
+<title>__filemap_get_folio (20,202,020 samples, 0.13%)</title><rect x="333.1" y="533" width="1.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="336.11" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="758.7" y="645" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="761.67" y="655.5" ></text>
+</g>
+<g >
+<title>opendir (10,101,010 samples, 0.06%)</title><rect x="504.7" y="789" width="0.9" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="507.73" y="799.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (20,202,020 samples, 0.13%)</title><rect x="780.6" y="581" width="1.7" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="783.56" y="591.5" ></text>
+</g>
+<g >
+<title>folio_alloc (20,202,020 samples, 0.13%)</title><rect x="1007.3" y="565" width="1.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1010.35" y="575.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.06%)</title><rect x="1292.8" y="661" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1295.80" y="671.5" ></text>
+</g>
+<g >
+<title>__sys_socket (20,202,020 samples, 0.13%)</title><rect x="1340.1" y="853" width="1.7" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="1343.09" y="863.5" ></text>
+</g>
+<g >
+<title>__file_remove_privs (10,101,010 samples, 0.06%)</title><rect x="449.6" y="613" width="0.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="452.57" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="439.9" y="725" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="442.94" y="735.5" ></text>
+</g>
+<g >
+<title>kmalloc_reserve (10,101,010 samples, 0.06%)</title><rect x="1365.5" y="197" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1368.48" y="207.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="707.0" y="549" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="710.01" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (30,303,030 samples, 0.19%)</title><rect x="415.4" y="693" width="2.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="418.42" y="703.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_send (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="949" width="6.1" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1335.21" y="959.5" ></text>
+</g>
+<g >
+<title>d_instantiate (10,101,010 samples, 0.06%)</title><rect x="605.4" y="629" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="608.43" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (10,101,010 samples, 0.06%)</title><rect x="680.7" y="741" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="683.74" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="398.8" y="709" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="401.78" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (50,505,050 samples, 0.32%)</title><rect x="332.2" y="677" width="4.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="335.23" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.13%)</title><rect x="1176.3" y="661" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1179.35" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (30,303,030 samples, 0.19%)</title><rect x="398.8" y="805" width="2.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="401.78" y="815.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="313.0" y="709" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="315.97" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="951.3" y="549" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="954.31" y="559.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.06%)</title><rect x="369.9" y="693" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="372.89" y="703.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.06%)</title><rect x="1283.2" y="597" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1286.17" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="802.4" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="805.45" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.13%)</title><rect x="468.0" y="517" width="1.7" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="470.96" y="527.5" ></text>
+</g>
+<g >
+<title>readdir64 (30,303,030 samples, 0.19%)</title><rect x="401.4" y="837" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="404.41" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1013.5" y="725" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1016.48" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="821" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1322.95" y="831.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct (10,101,010 samples, 0.06%)</title><rect x="1099.3" y="453" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="1102.29" y="463.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="563.4" y="597" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="566.40" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="948.7" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="951.68" y="671.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="1049.4" y="677" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1052.38" y="687.5" ></text>
+</g>
+<g >
+<title>net_send (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="901" width="7.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1363.23" y="911.5" ></text>
+</g>
+<g >
+<title>vfs_rename (90,909,090 samples, 0.57%)</title><rect x="1033.6" y="645" width="7.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1036.62" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_push (70,707,070 samples, 0.44%)</title><rect x="1362.0" y="725" width="6.1" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1364.98" y="735.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="726.3" y="645" width="0.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="729.27" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="770.1" y="549" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="773.05" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="1214.9" y="709" width="5.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1217.87" y="719.5" ></text>
+</g>
+<g >
+<title>unlink (20,202,020 samples, 0.13%)</title><rect x="545.0" y="821" width="1.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="548.01" y="831.5" ></text>
+</g>
+<g >
+<title>log_entry_start (50,505,050 samples, 0.32%)</title><rect x="1327.8" y="917" width="4.4" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1330.83" y="927.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.63%)</title><rect x="729.8" y="805" width="8.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="732.77" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="776.2" y="517" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="779.18" y="527.5" ></text>
+</g>
+<g >
+<title>pipe_write (30,303,030 samples, 0.19%)</title><rect x="433.8" y="677" width="2.6" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="436.81" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (464,646,460 samples, 2.92%)</title><rect x="640.5" y="821" width="40.2" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="643.46" y="831.5" >git..</text>
+</g>
+<g >
+<title>path_parentat (20,202,020 samples, 0.13%)</title><rect x="837.5" y="661" width="1.7" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="840.47" y="671.5" ></text>
+</g>
+<g >
+<title>elv_merge (10,101,010 samples, 0.06%)</title><rect x="466.2" y="389" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="469.21" y="399.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="1083.5" y="629" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1086.53" y="639.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="552.0" y="565" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="555.02" y="575.5" ></text>
+</g>
+<g >
+<title>file_close (111,111,110 samples, 0.70%)</title><rect x="32.8" y="885" width="9.6" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="35.77" y="895.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="1193.0" y="629" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1195.98" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="440.8" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="443.81" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="475.8" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="478.84" y="751.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="549" width="0.8" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1347.47" y="559.5" ></text>
+</g>
+<g >
+<title>tcp_v6_syn_recv_sock (10,101,010 samples, 0.06%)</title><rect x="1377.7" y="261" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1380.74" y="271.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="892.6" y="661" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="895.64" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="1147.4" y="629" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1150.45" y="639.5" ></text>
+</g>
+<g >
+<title>opendir (20,202,020 samples, 0.13%)</title><rect x="1235.0" y="773" width="1.8" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="1238.01" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (20,202,020 samples, 0.13%)</title><rect x="793.7" y="437" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="796.69" y="447.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1227.1" y="629" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1230.13" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1257.8" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1260.78" y="687.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="565" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1347.47" y="575.5" ></text>
+</g>
+<g >
+<title>link (30,303,030 samples, 0.19%)</title><rect x="1117.7" y="757" width="2.6" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1120.68" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="876.9" y="613" width="1.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="879.88" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (30,303,030 samples, 0.19%)</title><rect x="332.2" y="661" width="2.7" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="335.23" y="671.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (40,404,040 samples, 0.25%)</title><rect x="1077.4" y="629" width="3.5" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="1080.40" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="963.6" y="645" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="966.57" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="443.4" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="446.44" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="607.2" y="565" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="610.18" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1026.98" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (30,303,030 samples, 0.19%)</title><rect x="433.8" y="725" width="2.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="436.81" y="735.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="278.8" y="469" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="281.82" y="479.5" ></text>
+</g>
+<g >
+<title>new_inode (10,101,010 samples, 0.06%)</title><rect x="989.0" y="629" width="0.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="991.96" y="639.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="373" width="4.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1380.74" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="348.9" y="565" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="351.87" y="575.5" ></text>
+</g>
+<g >
+<title>log_entry_start (40,404,040 samples, 0.25%)</title><rect x="15.3" y="981" width="3.5" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="18.25" y="991.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="449.6" y="645" width="1.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="452.57" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="486.3" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="489.35" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="125.6" y="789" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="128.58" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (545,454,540 samples, 3.43%)</title><rect x="480.2" y="853" width="47.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="483.22" y="863.5" >[lib..</text>
+</g>
+<g >
+<title>pagecache_get_page (10,101,010 samples, 0.06%)</title><rect x="384.8" y="517" width="0.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="387.77" y="527.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="661" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1231.88" y="671.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (30,303,030 samples, 0.19%)</title><rect x="1313.8" y="837" width="2.6" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1316.82" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (20,202,020 samples, 0.13%)</title><rect x="1096.7" y="565" width="1.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1099.66" y="575.5" ></text>
+</g>
+<g >
+<title>from_kgid_munged (10,101,010 samples, 0.06%)</title><rect x="548.5" y="613" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="551.52" y="623.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="167.6" y="741" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="170.61" y="751.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="785.8" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="788.81" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1115.9" y="613" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1118.93" y="623.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (50,505,050 samples, 0.32%)</title><rect x="940.8" y="597" width="4.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="943.80" y="607.5" ></text>
+</g>
+<g >
+<title>tasklet_action_common.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="581" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1371.98" y="591.5" ></text>
+</g>
+<g >
+<title>is_vmalloc_addr (10,101,010 samples, 0.06%)</title><rect x="483.7" y="549" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="486.72" y="559.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="730.6" y="725" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="733.65" y="735.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="397.0" y="597" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="400.03" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.06%)</title><rect x="721.9" y="517" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="724.89" y="527.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="442.6" y="725" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="445.56" y="735.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="932.0" y="421" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="935.04" y="431.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="966.2" y="613" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="969.19" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="725.4" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="728.39" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (20,202,020 samples, 0.13%)</title><rect x="12.6" y="341" width="1.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="15.63" y="351.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="133" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1375.49" y="143.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.06%)</title><rect x="35.4" y="405" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="38.39" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.06%)</title><rect x="362.9" y="533" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="365.88" y="543.5" ></text>
+</g>
+<g >
+<title>mnt_want_write (10,101,010 samples, 0.06%)</title><rect x="1032.7" y="645" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1035.74" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="730.6" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="733.65" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="353.2" y="613" width="2.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="356.25" y="623.5" ></text>
+</g>
+<g >
+<title>opendir (10,101,010 samples, 0.06%)</title><rect x="803.3" y="837" width="0.9" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="806.32" y="847.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="309.5" y="613" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="312.47" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (101,010,100 samples, 0.63%)</title><rect x="1264.8" y="837" width="8.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1267.78" y="847.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_set_param_int (10,101,010 samples, 0.06%)</title><rect x="1348.8" y="933" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1351.85" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.06%)</title><rect x="817.3" y="485" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="820.34" y="495.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="639.6" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="642.58" y="687.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="597" width="2.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1336.08" y="607.5" ></text>
+</g>
+<g >
+<title>_find_next_bit (10,101,010 samples, 0.06%)</title><rect x="1133.4" y="293" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1136.44" y="303.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="501.2" y="613" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="504.23" y="623.5" ></text>
+</g>
+<g >
+<title>signalfd_poll (10,101,010 samples, 0.06%)</title><rect x="1349.7" y="821" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1352.72" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (171,717,170 samples, 1.08%)</title><rect x="222.8" y="661" width="14.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="225.78" y="671.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.06%)</title><rect x="749.9" y="613" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="752.91" y="623.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="468.0" y="485" width="0.8" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="470.96" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (111,111,110 samples, 0.70%)</title><rect x="996.0" y="741" width="9.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="998.96" y="751.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1010.0" y="549" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1012.97" y="559.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="742.9" y="517" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="745.91" y="527.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="428.6" y="789" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="431.55" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_bio_write_folio (10,101,010 samples, 0.06%)</title><rect x="848.0" y="469" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="850.98" y="479.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.13%)</title><rect x="911.0" y="821" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="914.03" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="804.2" y="773" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="807.20" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="469.7" y="645" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="472.71" y="655.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_begin_ordered_truncate (10,101,010 samples, 0.06%)</title><rect x="465.3" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="468.33" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="73.0" y="1045" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="76.05" y="1055.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="269.2" y="597" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="272.19" y="607.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (40,404,040 samples, 0.25%)</title><rect x="248.2" y="613" width="3.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="251.17" y="623.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (30,303,030 samples, 0.19%)</title><rect x="467.1" y="549" width="2.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="470.08" y="559.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="741" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1363.23" y="751.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (10,101,010 samples, 0.06%)</title><rect x="962.7" y="421" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="965.69" y="431.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="205.3" y="501" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="208.27" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (121,212,120 samples, 0.76%)</title><rect x="529.3" y="821" width="10.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="532.25" y="831.5" ></text>
+</g>
+<g >
+<title>lockref_put_return (10,101,010 samples, 0.06%)</title><rect x="211.4" y="613" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="214.40" y="623.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="856.7" y="709" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="859.74" y="719.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="553.8" y="725" width="1.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="556.77" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1026.98" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="975.8" y="501" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="978.82" y="511.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.06%)</title><rect x="450.4" y="629" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="453.44" y="639.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="1172.0" y="485" width="0.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1174.97" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="346.2" y="613" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="349.24" y="623.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (50,505,050 samples, 0.32%)</title><rect x="770.9" y="613" width="4.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="773.93" y="623.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.06%)</title><rect x="248.2" y="517" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="251.17" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="227.2" y="565" width="0.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="230.16" y="575.5" ></text>
+</g>
+<g >
+<title>libgit_clone_to_tmp (8,232,323,150 samples, 51.71%)</title><rect x="559.9" y="917" width="713.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="562.90" y="927.5" >libgit_clone_to_tmp</text>
+</g>
+<g >
+<title>worker_get_run (464,646,460 samples, 2.92%)</title><rect x="1349.7" y="965" width="40.3" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1352.72" y="975.5" >wor..</text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="894.4" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="897.39" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_es_free_extent (10,101,010 samples, 0.06%)</title><rect x="414.5" y="613" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="417.54" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (30,303,030 samples, 0.19%)</title><rect x="415.4" y="725" width="2.6" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="418.42" y="735.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="206.1" y="437" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="209.14" y="447.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="489.0" y="709" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="491.97" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="685.1" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="688.11" y="735.5" ></text>
+</g>
+<g >
+<title>git_repository_is_empty (262,626,260 samples, 1.65%)</title><rect x="1220.1" y="869" width="22.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1223.13" y="879.5" >g..</text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="155.4" y="773" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="158.36" y="783.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1182.5" y="725" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1185.47" y="735.5" ></text>
+</g>
+<g >
+<title>readdir64 (20,202,020 samples, 0.13%)</title><rect x="505.6" y="789" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="508.61" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="570.4" y="581" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="573.41" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (292,929,290 samples, 1.84%)</title><rect x="1155.3" y="693" width="25.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1158.33" y="703.5" >e..</text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1262.53" y="687.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1262.2" y="597" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1265.16" y="607.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="181" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1375.49" y="191.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="738.5" y="725" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="741.53" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_read_inode_bitmap (10,101,010 samples, 0.06%)</title><rect x="571.3" y="613" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="574.28" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1001.2" y="517" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1004.22" y="527.5" ></text>
+</g>
+<g >
+<title>[libz.so.1.3] (10,101,010 samples, 0.06%)</title><rect x="471.5" y="725" width="0.8" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="474.46" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="158.0" y="853" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="160.98" y="863.5" ></text>
+</g>
+<g >
+<title>tcp_stream_alloc_skb (10,101,010 samples, 0.06%)</title><rect x="1388.2" y="757" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1391.25" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="750.8" y="693" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="753.79" y="703.5" ></text>
+</g>
+<g >
+<title>set_root (20,202,020 samples, 0.13%)</title><rect x="892.6" y="549" width="1.8" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="895.64" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_append (111,111,110 samples, 0.70%)</title><rect x="82.7" y="837" width="9.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="85.68" y="847.5" ></text>
+</g>
+<g >
+<title>malloc (20,202,020 samples, 0.13%)</title><rect x="760.4" y="661" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="763.42" y="671.5" ></text>
+</g>
+<g >
+<title>mnt_put_write_access (10,101,010 samples, 0.06%)</title><rect x="859.4" y="645" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="862.37" y="655.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (20,202,020 samples, 0.13%)</title><rect x="963.6" y="549" width="1.7" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="966.57" y="559.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="570.4" y="517" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="573.41" y="527.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.06%)</title><rect x="930.3" y="437" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="933.29" y="447.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="727.1" y="661" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="730.14" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="791.9" y="485" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="794.94" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="883.9" y="629" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="886.88" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="886.5" y="581" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="889.51" y="591.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (10,101,010 samples, 0.06%)</title><rect x="962.7" y="405" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="965.69" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.13%)</title><rect x="296.3" y="453" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="299.33" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="675.5" y="597" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="678.48" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_journal_mode (10,101,010 samples, 0.06%)</title><rect x="999.5" y="581" width="0.8" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="1002.47" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="972.3" y="661" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="975.32" y="671.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="1223.6" y="709" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1226.63" y="719.5" ></text>
+</g>
+<g >
+<title>unlink_cb (70,707,070 samples, 0.44%)</title><rect x="320.9" y="789" width="6.1" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="323.85" y="799.5" ></text>
+</g>
+<g >
+<title>do_writepages (40,404,040 samples, 0.25%)</title><rect x="466.2" y="597" width="3.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="469.21" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1122.9" y="517" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1125.93" y="527.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="75.7" y="805" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="78.67" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="688.6" y="693" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="691.62" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="357.6" y="517" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="360.63" y="527.5" ></text>
+</g>
+<g >
+<title>filename_lookup (40,404,040 samples, 0.25%)</title><rect x="937.3" y="533" width="3.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="940.30" y="543.5" ></text>
+</g>
+<g >
+<title>__es_delayed_clu (10,101,010 samples, 0.06%)</title><rect x="584.4" y="517" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="587.42" y="527.5" ></text>
+</g>
+<g >
+<title>walk_component (30,303,030 samples, 0.19%)</title><rect x="942.6" y="517" width="2.6" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="945.55" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="1063.4" y="789" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1066.39" y="799.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="538.0" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="541.01" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (464,646,460 samples, 2.92%)</title><rect x="438.2" y="901" width="40.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="441.19" y="911.5" >[li..</text>
+</g>
+<g >
+<title>__filename_parentat (20,202,020 samples, 0.13%)</title><rect x="837.5" y="677" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="840.47" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="193.0" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="196.01" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="847.1" y="581" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="850.11" y="591.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="937.3" y="501" width="1.7" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="940.30" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (20,202,020 samples, 0.13%)</title><rect x="1126.4" y="533" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1129.43" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.06%)</title><rect x="779.7" y="597" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="782.68" y="607.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="916.3" y="533" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="919.28" y="543.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (30,303,030 samples, 0.19%)</title><rect x="579.2" y="613" width="2.6" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="582.16" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (171,717,170 samples, 1.08%)</title><rect x="625.6" y="709" width="14.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="628.57" y="719.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="73.9" y="933" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="76.92" y="943.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="973.2" y="469" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="976.20" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (30,303,030 samples, 0.19%)</title><rect x="207.9" y="469" width="2.6" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="210.89" y="479.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="851.5" y="613" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="854.48" y="623.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="883.9" y="565" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="886.88" y="575.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="883.0" y="677" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="886.01" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (171,717,170 samples, 1.08%)</title><rect x="375.1" y="661" width="14.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="378.14" y="671.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="781.4" y="565" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="784.43" y="575.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="632.6" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="635.58" y="639.5" ></text>
+</g>
+<g >
+<title>kernel_wait4 (20,202,020 samples, 0.13%)</title><rect x="1323.5" y="773" width="1.7" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="1326.45" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="208.8" y="325" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="211.77" y="335.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="963.6" y="693" width="1.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="966.57" y="703.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="167.6" y="725" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="170.61" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.06%)</title><rect x="1230.6" y="613" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1233.63" y="623.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="725.4" y="693" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="728.39" y="703.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="661" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1114.55" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1263.0" y="789" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1266.03" y="799.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (10,101,010 samples, 0.06%)</title><rect x="1283.2" y="645" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1286.17" y="655.5" ></text>
+</g>
+<g >
+<title>truncate_cleanup_folio (10,101,010 samples, 0.06%)</title><rect x="187.8" y="517" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="190.75" y="527.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_ipv4 (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="661" width="0.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1347.47" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.06%)</title><rect x="797.2" y="597" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="800.20" y="607.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.06%)</title><rect x="980.2" y="709" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="983.20" y="719.5" ></text>
+</g>
+<g >
+<title>__napi_poll (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="517" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1348.34" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="866.4" y="773" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="869.37" y="783.5" ></text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.06%)</title><rect x="407.5" y="565" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="410.54" y="575.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (20,202,020 samples, 0.13%)</title><rect x="848.0" y="581" width="1.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="850.98" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="456.6" y="725" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="459.57" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (313,131,310 samples, 1.97%)</title><rect x="653.6" y="725" width="27.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="656.59" y="735.5" >d..</text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="904.9" y="613" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="907.90" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="552.9" y="821" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="555.89" y="831.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="948.7" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="951.68" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (494,949,490 samples, 3.11%)</title><rect x="170.2" y="757" width="42.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="173.24" y="767.5" >[lib..</text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="252.6" y="645" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="255.55" y="655.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="663.2" y="533" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="666.22" y="543.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="597" width="5.2" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1372.86" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="791.1" y="565" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="794.07" y="575.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.06%)</title><rect x="856.7" y="805" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="859.74" y="815.5" ></text>
+</g>
+<g >
+<title>unlink (90,909,090 samples, 0.57%)</title><rect x="410.2" y="821" width="7.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="413.16" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="942.6" y="421" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="945.55" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (20,202,020 samples, 0.13%)</title><rect x="116.0" y="805" width="1.7" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="118.95" y="815.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="357" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1140.82" y="367.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (80,808,080 samples, 0.51%)</title><rect x="1034.5" y="629" width="7.0" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1037.49" y="639.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.06%)</title><rect x="716.6" y="581" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="719.64" y="591.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1183.4" y="693" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1186.35" y="703.5" ></text>
+</g>
+<g >
+<title>sock_read_iter (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="725" width="1.7" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1361.48" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="894.4" y="709" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="897.39" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="980.2" y="645" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="983.20" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (2,191,919,170 samples, 13.77%)</title><rect x="991.6" y="837" width="190.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="994.59" y="847.5" >[libgit2.so.1.7.2]</text>
+</g>
+<g >
+<title>git_reference_type (10,101,010 samples, 0.06%)</title><rect x="873.4" y="805" width="0.9" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="876.38" y="815.5" ></text>
+</g>
+<g >
+<title>do_softirq (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="501" width="2.6" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1336.08" y="511.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="861.1" y="789" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="864.12" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="813.8" y="549" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="816.83" y="559.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="749.0" y="581" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="752.04" y="591.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="719.3" y="565" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="722.26" y="575.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (20,202,020 samples, 0.13%)</title><rect x="822.6" y="501" width="1.7" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="825.59" y="511.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="517" width="4.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1380.74" y="527.5" ></text>
+</g>
+<g >
+<title>do_softirq (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="501" width="5.2" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1372.86" y="511.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="883.0" y="645" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="886.01" y="655.5" ></text>
+</g>
+<g >
+<title>check_stack_object (10,101,010 samples, 0.06%)</title><rect x="976.7" y="597" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="979.70" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (3,010,100,980 samples, 18.91%)</title><rect x="169.4" y="901" width="260.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="172.37" y="911.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>do_softirq (40,404,040 samples, 0.25%)</title><rect x="36.3" y="437" width="3.5" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="39.27" y="447.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="613" width="0.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1347.47" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (30,303,030 samples, 0.19%)</title><rect x="1065.1" y="709" width="2.7" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="1068.14" y="719.5" ></text>
+</g>
+<g >
+<title>__sbrk (10,101,010 samples, 0.06%)</title><rect x="328.7" y="741" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="331.73" y="751.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="740.3" y="485" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="743.28" y="495.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (222,222,220 samples, 1.40%)</title><rect x="44.1" y="853" width="19.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="47.15" y="863.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="629" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1371.98" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="322.6" y="741" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="325.60" y="751.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.06%)</title><rect x="989.0" y="549" width="0.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="991.96" y="559.5" ></text>
+</g>
+<g >
+<title>eventfd (20,202,020 samples, 0.13%)</title><rect x="64.3" y="885" width="1.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="67.29" y="895.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="1172.0" y="501" width="0.8" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1174.97" y="511.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="981.1" y="629" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="984.08" y="639.5" ></text>
+</g>
+<g >
+<title>sock_close (90,909,090 samples, 0.57%)</title><rect x="34.5" y="757" width="7.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="37.52" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="667.6" y="421" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="670.60" y="431.5" ></text>
+</g>
+<g >
+<title>shrink_dentry_list (10,101,010 samples, 0.06%)</title><rect x="363.8" y="645" width="0.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="366.76" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="905.8" y="581" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="908.77" y="591.5" ></text>
+</g>
+<g >
+<title>__get_free_pages (10,101,010 samples, 0.06%)</title><rect x="926.8" y="501" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="929.79" y="511.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (131,313,130 samples, 0.82%)</title><rect x="245.5" y="709" width="11.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="248.55" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1100.2" y="469" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1103.16" y="479.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.06%)</title><rect x="1038.9" y="469" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1041.87" y="479.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="661" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1235.39" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (242,424,240 samples, 1.52%)</title><rect x="1121.2" y="725" width="21.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1124.18" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="809.5" y="677" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="812.45" y="687.5" ></text>
+</g>
+<g >
+<title>process_backlog (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="421" width="2.6" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1367.61" y="431.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="615.9" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="618.94" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (30,303,030 samples, 0.19%)</title><rect x="332.2" y="629" width="2.7" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="335.23" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="981.1" y="645" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="984.08" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="756.0" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="759.04" y="687.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="905.8" y="469" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="908.77" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="256.1" y="597" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="259.05" y="607.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="419.8" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="422.80" y="687.5" ></text>
+</g>
+<g >
+<title>__free_slab (10,101,010 samples, 0.06%)</title><rect x="263.1" y="389" width="0.8" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="266.06" y="399.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="634.3" y="581" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="637.33" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="477.6" y="821" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="480.59" y="831.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (10,101,010 samples, 0.06%)</title><rect x="930.3" y="517" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="933.29" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (565,656,560 samples, 3.55%)</title><rect x="94.9" y="981" width="49.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="97.94" y="991.5" >entr..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="237.7" y="757" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="240.66" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1256.0" y="741" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1259.03" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="870.7" y="581" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="873.75" y="591.5" ></text>
+</g>
+<g >
+<title>destroy_inode (10,101,010 samples, 0.06%)</title><rect x="811.2" y="597" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="814.21" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="1068.6" y="773" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1071.64" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.13%)</title><rect x="341.9" y="597" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="344.87" y="607.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="504.7" y="629" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="507.73" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="11.8" y="885" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="14.75" y="895.5" ></text>
+</g>
+<g >
+<title>zap_pmd_range.isra.0 (20,202,020 samples, 0.13%)</title><rect x="399.7" y="581" width="1.7" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="402.66" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="548.5" y="741" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="551.52" y="751.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="1041.5" y="629" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1044.50" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="894.4" y="741" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="897.39" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.06%)</title><rect x="180.7" y="453" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="183.75" y="463.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="958.3" y="437" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="961.31" y="447.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="412.8" y="677" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="415.79" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="853.2" y="629" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="856.24" y="639.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="693.0" y="581" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="695.99" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="581.8" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="584.79" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_xattr_ibody_get (10,101,010 samples, 0.06%)</title><rect x="779.7" y="469" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="782.68" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="521.4" y="741" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="524.37" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="415.4" y="661" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="418.42" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="934.7" y="677" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="937.67" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="691.2" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="694.24" y="671.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="1074.8" y="661" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1077.77" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="360.3" y="517" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="363.25" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="773" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1258.15" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1197.73" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="837.5" y="645" width="1.7" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="840.47" y="655.5" ></text>
+</g>
+<g >
+<title>file_close (20,202,020 samples, 0.13%)</title><rect x="31.0" y="901" width="1.8" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="34.02" y="911.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="902.3" y="629" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="905.27" y="639.5" ></text>
+</g>
+<g >
+<title>git_refdb_open (30,303,030 samples, 0.19%)</title><rect x="752.5" y="741" width="2.7" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="755.54" y="751.5" ></text>
+</g>
+<g >
+<title>mkdir (131,313,130 samples, 0.82%)</title><rect x="694.7" y="709" width="11.4" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="697.75" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="74.8" y="837" width="1.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="77.80" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_htree_store_dirent (10,101,010 samples, 0.06%)</title><rect x="419.8" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="422.80" y="703.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="249.9" y="469" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="252.92" y="479.5" ></text>
+</g>
+<g >
+<title>generic_update_time (10,101,010 samples, 0.06%)</title><rect x="484.6" y="565" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="487.59" y="575.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="453" width="1.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1345.72" y="463.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="965.3" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="968.32" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="570.4" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="573.41" y="607.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.06%)</title><rect x="536.3" y="645" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="539.26" y="655.5" ></text>
+</g>
+<g >
+<title>git_error_set (10,101,010 samples, 0.06%)</title><rect x="1205.2" y="677" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1208.24" y="687.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="263.9" y="597" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="266.93" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="760.4" y="693" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="763.42" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="888.3" y="613" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="891.26" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_htree_store_dirent (10,101,010 samples, 0.06%)</title><rect x="881.3" y="517" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="884.26" y="527.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1366.4" y="197" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1369.36" y="207.5" ></text>
+</g>
+<g >
+<title>__es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="323.5" y="565" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="326.48" y="575.5" ></text>
+</g>
+<g >
+<title>git_reference_create (585,858,580 samples, 3.68%)</title><rect x="934.7" y="821" width="50.8" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="937.67" y="831.5" >git_r..</text>
+</g>
+<g >
+<title>current_obj_cgroup (10,101,010 samples, 0.06%)</title><rect x="730.6" y="469" width="0.9" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="733.65" y="479.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="258.7" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="261.68" y="735.5" ></text>
+</g>
+<g >
+<title>__sk_destruct (10,101,010 samples, 0.06%)</title><rect x="1376.0" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1378.99" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (30,303,030 samples, 0.19%)</title><rect x="1341.8" y="741" width="2.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1344.84" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (111,111,110 samples, 0.70%)</title><rect x="996.0" y="709" width="9.6" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="998.96" y="719.5" ></text>
+</g>
+<g >
+<title>brk (10,101,010 samples, 0.06%)</title><rect x="429.4" y="821" width="0.9" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="432.43" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="780.6" y="677" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="783.56" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="489.0" y="677" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="491.97" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1098.79" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="84.4" y="725" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="87.43" y="735.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.06%)</title><rect x="918.0" y="453" width="0.9" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="921.03" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="756.0" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="759.04" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="72.2" y="885" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="75.17" y="895.5" ></text>
+</g>
+<g >
+<title>touch_atime (30,303,030 samples, 0.19%)</title><rect x="336.6" y="693" width="2.6" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="339.61" y="703.5" ></text>
+</g>
+<g >
+<title>security_inode_alloc (10,101,010 samples, 0.06%)</title><rect x="123.0" y="757" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="125.96" y="767.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="75.7" y="789" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="78.67" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="610.7" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="613.69" y="767.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (30,303,030 samples, 0.19%)</title><rect x="1313.8" y="853" width="2.6" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1316.82" y="863.5" ></text>
+</g>
+<g >
+<title>apparmor_socket_sendmsg (10,101,010 samples, 0.06%)</title><rect x="1337.5" y="757" width="0.8" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="1340.46" y="767.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (50,505,050 samples, 0.32%)</title><rect x="1063.4" y="725" width="4.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1066.39" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="1065.1" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1068.14" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (70,707,070 samples, 0.44%)</title><rect x="391.8" y="677" width="6.1" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="394.78" y="687.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="458.3" y="709" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="461.32" y="719.5" ></text>
+</g>
+<g >
+<title>inet_stream_connect (50,505,050 samples, 0.32%)</title><rect x="1341.8" y="821" width="4.4" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1344.84" y="831.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="940.8" y="517" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="943.80" y="527.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (70,707,070 samples, 0.44%)</title><rect x="507.4" y="693" width="6.1" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="510.36" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="773" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1349.22" y="783.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="1361.1" y="709" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1364.10" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (40,404,040 samples, 0.25%)</title><rect x="578.3" y="629" width="3.5" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="581.29" y="639.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="725" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1363.23" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_rmdir (50,505,050 samples, 0.32%)</title><rect x="404.0" y="709" width="4.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="407.04" y="719.5" ></text>
+</g>
+<g >
+<title>file_modified (10,101,010 samples, 0.06%)</title><rect x="515.2" y="645" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="518.24" y="655.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="763.9" y="613" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="766.92" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_fname_free_filename (10,101,010 samples, 0.06%)</title><rect x="235.9" y="597" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="238.91" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_clone (464,646,460 samples, 2.92%)</title><rect x="1273.5" y="805" width="40.3" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1276.54" y="815.5" >__x..</text>
+</g>
+<g >
+<title>jsonrpc_request_create_params (20,202,020 samples, 0.13%)</title><rect x="18.8" y="949" width="1.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="21.76" y="959.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="347.1" y="581" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="350.12" y="591.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="212.3" y="613" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="215.27" y="623.5" ></text>
+</g>
+<g >
+<title>io_schedule (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="501" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1014.73" y="511.5" ></text>
+</g>
+<g >
+<title>get_current_dir_name (20,202,020 samples, 0.13%)</title><rect x="157.1" y="917" width="1.8" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="160.11" y="927.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="261" width="0.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1390.37" y="271.5" ></text>
+</g>
+<g >
+<title>tcp_inbound_hash.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="37.1" y="229" width="0.9" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="40.14" y="239.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="884.8" y="677" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="887.76" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="482.0" y="725" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="484.97" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (131,313,130 samples, 0.82%)</title><rect x="266.6" y="629" width="11.3" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="269.56" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="408.4" y="805" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="411.41" y="815.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="1183.4" y="709" width="1.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1186.35" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="693" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1116.30" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="60.8" y="693" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="63.79" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="741" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1247.64" y="751.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.06%)</title><rect x="979.3" y="533" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="982.33" y="543.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="528.4" y="645" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="531.38" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="1165.8" y="501" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1168.84" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (80,808,080 samples, 0.51%)</title><rect x="332.2" y="725" width="7.0" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="335.23" y="735.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.06%)</title><rect x="795.4" y="469" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="798.44" y="479.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="484.6" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="487.59" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (20,202,020 samples, 0.13%)</title><rect x="108.9" y="805" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="111.95" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (40,404,040 samples, 0.25%)</title><rect x="586.2" y="517" width="3.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="589.17" y="527.5" ></text>
+</g>
+<g >
+<title>put_unused_fd (10,101,010 samples, 0.06%)</title><rect x="946.1" y="581" width="0.8" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="949.05" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.06%)</title><rect x="965.3" y="565" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="968.32" y="575.5" ></text>
+</g>
+<g >
+<title>dquot_initialize (10,101,010 samples, 0.06%)</title><rect x="1052.9" y="613" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1055.88" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="967.9" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="970.94" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="725" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1243.27" y="735.5" ></text>
+</g>
+<g >
+<title>[libz.so.1.3] (10,101,010 samples, 0.06%)</title><rect x="531.0" y="693" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="534.00" y="703.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.06%)</title><rect x="1109.8" y="469" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1112.80" y="479.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (40,404,040 samples, 0.25%)</title><rect x="930.3" y="597" width="3.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="933.29" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (121,212,120 samples, 0.76%)</title><rect x="1073.0" y="821" width="10.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1076.02" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="256.1" y="549" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="259.05" y="559.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (10,101,010 samples, 0.06%)</title><rect x="311.2" y="677" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="314.22" y="687.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="548.5" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="551.52" y="639.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="607.2" y="549" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="610.18" y="559.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="27.5" y="741" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="30.51" y="751.5" ></text>
+</g>
+<g >
+<title>__fput_sync (20,202,020 samples, 0.13%)</title><rect x="327.0" y="725" width="1.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="329.98" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="191.3" y="485" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="194.26" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (40,404,040 samples, 0.25%)</title><rect x="617.7" y="645" width="3.5" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="620.69" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="546.8" y="517" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="549.76" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (10,101,010 samples, 0.06%)</title><rect x="423.3" y="725" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="426.30" y="735.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="677" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1188.98" y="687.5" ></text>
+</g>
+<g >
+<title>do_filp_open (90,909,090 samples, 0.57%)</title><rect x="996.0" y="677" width="7.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="998.96" y="687.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="533" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1221.38" y="543.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="967.9" y="629" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="970.94" y="639.5" ></text>
+</g>
+<g >
+<title>iput (30,303,030 samples, 0.19%)</title><rect x="787.6" y="597" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="790.56" y="607.5" ></text>
+</g>
+<g >
+<title>__inet_stream_connect (50,505,050 samples, 0.32%)</title><rect x="1341.8" y="805" width="4.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1344.84" y="815.5" ></text>
+</g>
+<g >
+<title>iput (40,404,040 samples, 0.25%)</title><rect x="322.6" y="661" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="325.60" y="671.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="629" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1258.15" y="639.5" ></text>
+</g>
+<g >
+<title>path_get (10,101,010 samples, 0.06%)</title><rect x="611.6" y="597" width="0.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="614.56" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="442.6" y="709" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="445.56" y="719.5" ></text>
+</g>
+<g >
+<title>storvsc_do_io (10,101,010 samples, 0.06%)</title><rect x="665.9" y="293" width="0.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="668.85" y="303.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="511.7" y="597" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="514.74" y="607.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (121,212,120 samples, 0.76%)</title><rect x="129.1" y="789" width="10.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="132.09" y="799.5" ></text>
+</g>
+<g >
+<title>unlink_cb (212,121,210 samples, 1.33%)</title><rect x="194.8" y="741" width="18.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="197.76" y="751.5" ></text>
+</g>
+<g >
+<title>net_rx_action (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="437" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1345.72" y="447.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1022.2" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1025.23" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="311.2" y="757" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="314.22" y="767.5" ></text>
+</g>
+<g >
+<title>__anon_inode_getfile (20,202,020 samples, 0.13%)</title><rect x="64.3" y="773" width="1.7" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="67.29" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="870.7" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="873.75" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="1001.2" y="549" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1004.22" y="559.5" ></text>
+</g>
+<g >
+<title>d_instantiate_new (10,101,010 samples, 0.06%)</title><rect x="954.8" y="565" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="957.81" y="575.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="325" width="2.6" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1336.08" y="335.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="423.3" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="426.30" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.19%)</title><rect x="611.6" y="709" width="2.6" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="614.56" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1187.7" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1190.73" y="719.5" ></text>
+</g>
+<g >
+<title>path_lookupat (101,010,100 samples, 0.63%)</title><rect x="1074.8" y="677" width="8.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1077.77" y="687.5" ></text>
+</g>
+<g >
+<title>copy_pte_range (101,010,100 samples, 0.63%)</title><rect x="1284.9" y="677" width="8.8" height="15.0" fill="rgb(0,192,11)" rx="2" ry="2" />
+<text x="1287.92" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="125.6" y="773" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="128.58" y="783.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="514.4" y="693" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="517.37" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1236.8" y="709" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1239.76" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1339.2" y="901" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1342.21" y="911.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1349.7" y="917" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1352.72" y="927.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="778.8" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="781.81" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (464,646,460 samples, 2.92%)</title><rect x="640.5" y="805" width="40.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="643.46" y="815.5" >[li..</text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="775.3" y="629" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="778.30" y="639.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="275.3" y="549" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="278.32" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="64.3" y="869" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="67.29" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="882.1" y="645" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="885.13" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_link (10,101,010 samples, 0.06%)</title><rect x="721.9" y="661" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="724.89" y="671.5" ></text>
+</g>
+<g >
+<title>dd_dispatch_request (10,101,010 samples, 0.06%)</title><rect x="823.5" y="373" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="826.46" y="383.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="596.7" y="645" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="599.68" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (191,919,190 samples, 1.21%)</title><rect x="108.1" y="821" width="16.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="111.07" y="831.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="715.8" y="549" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="718.76" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (171,717,170 samples, 1.08%)</title><rect x="222.8" y="693" width="14.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="225.78" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,757,575,730 samples, 17.32%)</title><rect x="169.4" y="853" width="239.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="172.37" y="863.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>ext4_dx_readdir (20,202,020 samples, 0.13%)</title><rect x="418.9" y="741" width="1.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="421.92" y="751.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="986.3" y="501" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="989.33" y="511.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (10,101,010 samples, 0.06%)</title><rect x="591.4" y="485" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="594.42" y="495.5" ></text>
+</g>
+<g >
+<title>__getpagesize (10,101,010 samples, 0.06%)</title><rect x="63.4" y="853" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="66.41" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="985.5" y="741" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="988.46" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="533.6" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="536.63" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.06%)</title><rect x="570.4" y="613" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="573.41" y="623.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.06%)</title><rect x="428.6" y="757" width="0.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="431.55" y="767.5" ></text>
+</g>
+<g >
+<title>do_rmdir (272,727,270 samples, 1.71%)</title><rect x="341.0" y="693" width="23.6" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="343.99" y="703.5" >d..</text>
+</g>
+<g >
+<title>fscrypt_match_name (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="517" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1197.73" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="423.3" y="709" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="426.30" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="769.2" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="772.18" y="671.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="248.2" y="501" width="0.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="251.17" y="511.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="742.9" y="549" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="745.91" y="559.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1355.0" y="805" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1357.97" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (131,313,130 samples, 0.82%)</title><rect x="756.0" y="773" width="11.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="759.04" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="218.4" y="661" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="221.40" y="671.5" ></text>
+</g>
+<g >
+<title>ci_run (676,767,670 samples, 4.25%)</title><rect x="1273.5" y="933" width="58.7" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="1276.54" y="943.5" >ci_run</text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="31.9" y="821" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="34.89" y="831.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="71.3" y="901" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="74.29" y="911.5" ></text>
+</g>
+<g >
+<title>sbitmap_queue_clear (10,101,010 samples, 0.06%)</title><rect x="740.3" y="325" width="0.9" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="743.28" y="335.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.06%)</title><rect x="918.0" y="485" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="921.03" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="92.3" y="933" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="95.31" y="943.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="631.7" y="629" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="634.70" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1088.8" y="501" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="1091.78" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="548.5" y="757" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="551.52" y="767.5" ></text>
+</g>
+<g >
+<title>ip_local_out (40,404,040 samples, 0.25%)</title><rect x="1384.7" y="709" width="3.5" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1387.75" y="719.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct_nocheck (10,101,010 samples, 0.06%)</title><rect x="466.2" y="501" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="469.21" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.06%)</title><rect x="87.1" y="741" width="0.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="90.06" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1183.4" y="757" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1186.35" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.70%)</title><rect x="925.0" y="773" width="9.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="928.04" y="783.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="453" width="4.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1380.74" y="463.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="474.1" y="597" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="477.09" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="732.4" y="693" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="735.40" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_link (50,505,050 samples, 0.32%)</title><rect x="603.7" y="645" width="4.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="606.68" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1205.2" y="645" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1208.24" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1226.3" y="661" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1229.26" y="671.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="963.6" y="581" width="1.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="966.57" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1029.61" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="484.6" y="677" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="487.59" y="687.5" ></text>
+</g>
+<g >
+<title>getdents64 (121,212,120 samples, 0.76%)</title><rect x="614.2" y="773" width="10.5" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="617.19" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1226.3" y="693" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1229.26" y="703.5" ></text>
+</g>
+<g >
+<title>free_pipe_info (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="741" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1319.45" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="1341.8" y="917" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1344.84" y="927.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="693.0" y="613" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="695.99" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (282,828,280 samples, 1.78%)</title><rect x="804.2" y="805" width="24.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="807.20" y="815.5" >[..</text>
+</g>
+<g >
+<title>__send (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="869" width="7.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="1363.23" y="879.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="972.3" y="469" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="975.32" y="479.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited (10,101,010 samples, 0.06%)</title><rect x="967.9" y="549" width="0.9" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="970.94" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="345.4" y="645" width="2.6" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="348.37" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="439.1" y="789" width="12.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="442.06" y="799.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="553.8" y="645" width="1.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="556.77" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (30,303,030 samples, 0.19%)</title><rect x="289.3" y="517" width="2.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="292.33" y="527.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="421" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1037.49" y="431.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="773" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1332.58" y="783.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="613" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1197.73" y="623.5" ></text>
+</g>
+<g >
+<title>ci_run_script (595,959,590 samples, 3.74%)</title><rect x="1273.5" y="917" width="51.7" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1276.54" y="927.5" >ci_ru..</text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="798.9" y="709" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="801.95" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="784.1" y="613" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="787.06" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.13%)</title><rect x="765.7" y="597" width="1.7" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="768.67" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="688.6" y="709" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="691.62" y="719.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (10,101,010 samples, 0.06%)</title><rect x="1010.0" y="565" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1012.97" y="575.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="677" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1241.52" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="471.5" y="773" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="474.46" y="783.5" ></text>
+</g>
+<g >
+<title>tlb_batch_pages_flush (10,101,010 samples, 0.06%)</title><rect x="429.4" y="677" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="432.43" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_connect (20,202,020 samples, 0.13%)</title><rect x="1344.5" y="773" width="1.7" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1347.47" y="783.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="1219.3" y="597" width="0.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1222.25" y="607.5" ></text>
+</g>
+<g >
+<title>d_lru_add (10,101,010 samples, 0.06%)</title><rect x="75.7" y="773" width="0.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="78.67" y="783.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.13%)</title><rect x="906.6" y="693" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="909.65" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1169.3" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1172.34" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="824.3" y="565" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="827.34" y="575.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="249.9" y="565" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="252.92" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="756.0" y="613" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="759.04" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="936.4" y="661" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="939.42" y="671.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (90,909,090 samples, 0.57%)</title><rect x="1050.3" y="661" width="7.8" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="1053.25" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="979.3" y="581" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="982.33" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (171,717,170 samples, 1.08%)</title><rect x="222.8" y="709" width="14.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="225.78" y="719.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_send (50,505,050 samples, 0.32%)</title><rect x="10.9" y="981" width="4.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="13.88" y="991.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="985.5" y="693" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="988.46" y="703.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="85" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1375.49" y="95.5" ></text>
+</g>
+<g >
+<title>new_inode (50,505,050 samples, 0.32%)</title><rect x="573.9" y="613" width="4.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="576.91" y="623.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="858.5" y="741" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="861.49" y="751.5" ></text>
+</g>
+<g >
+<title>git_object_peel (20,202,020 samples, 0.13%)</title><rect x="546.8" y="885" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="549.76" y="895.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="1213.1" y="597" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1216.12" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="594.9" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="597.92" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="357.6" y="501" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="360.63" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="425.9" y="549" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="428.93" y="559.5" ></text>
+</g>
+<g >
+<title>str2hashbuf_signed (10,101,010 samples, 0.06%)</title><rect x="505.6" y="581" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="508.61" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_connect (50,505,050 samples, 0.32%)</title><rect x="1384.7" y="773" width="4.4" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1387.75" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (20,202,020 samples, 0.13%)</title><rect x="1171.1" y="565" width="1.7" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1174.09" y="575.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="320.0" y="645" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="322.97" y="655.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="615.9" y="661" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="618.94" y="671.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (20,202,020 samples, 0.13%)</title><rect x="1007.3" y="581" width="1.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="1010.35" y="591.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="249.9" y="533" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="252.92" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (60,606,060 samples, 0.38%)</title><rect x="423.3" y="773" width="5.3" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="426.30" y="783.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="692.1" y="517" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="695.12" y="527.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="689.5" y="565" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="692.49" y="575.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.06%)</title><rect x="192.1" y="741" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="195.13" y="751.5" ></text>
+</g>
+<g >
+<title>may_open (10,101,010 samples, 0.06%)</title><rect x="99.3" y="853" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="102.31" y="863.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="440.8" y="469" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="443.81" y="479.5" ></text>
+</g>
+<g >
+<title>may_delete (10,101,010 samples, 0.06%)</title><rect x="310.3" y="629" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="313.34" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="327.0" y="789" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="329.98" y="799.5" ></text>
+</g>
+<g >
+<title>schedule (30,303,030 samples, 0.19%)</title><rect x="25.8" y="789" width="2.6" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="28.76" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (30,303,030 samples, 0.19%)</title><rect x="1178.1" y="677" width="2.6" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1181.10" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="841.9" y="533" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="844.85" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1025.7" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1028.74" y="719.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (70,707,070 samples, 0.44%)</title><rect x="1369.9" y="709" width="6.1" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1372.86" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (30,303,030 samples, 0.19%)</title><rect x="787.6" y="565" width="2.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="790.56" y="575.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="863.7" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="866.74" y="607.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.06%)</title><rect x="693.0" y="549" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="695.99" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="802.4" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="805.45" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="1147.4" y="613" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1150.45" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="856.7" y="741" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="859.74" y="751.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="524.0" y="741" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="527.00" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="189.5" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="192.51" y="543.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="808.6" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="811.58" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="383.0" y="517" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="386.02" y="527.5" ></text>
+</g>
+<g >
+<title>call_filldir (10,101,010 samples, 0.06%)</title><rect x="247.3" y="629" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="250.30" y="639.5" ></text>
+</g>
+<g >
+<title>generic_update_time (10,101,010 samples, 0.06%)</title><rect x="1231.5" y="629" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1234.51" y="639.5" ></text>
+</g>
+<g >
+<title>walk_component (60,606,060 samples, 0.38%)</title><rect x="633.5" y="645" width="5.2" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="636.45" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="292.0" y="549" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="294.95" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="896.1" y="693" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="899.14" y="703.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="980.2" y="629" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="983.20" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="972.3" y="581" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="975.32" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (20,202,020 samples, 0.13%)</title><rect x="617.7" y="581" width="1.7" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="620.69" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.06%)</title><rect x="186.0" y="549" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="189.00" y="559.5" ></text>
+</g>
+<g >
+<title>ip_output (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="149" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1336.96" y="159.5" ></text>
+</g>
+<g >
+<title>ipv6_sock_mc_close (10,101,010 samples, 0.06%)</title><rect x="41.5" y="709" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="44.52" y="719.5" ></text>
+</g>
+<g >
+<title>path_openat (30,303,030 samples, 0.19%)</title><rect x="453.9" y="549" width="2.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="456.95" y="559.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (20,202,020 samples, 0.13%)</title><rect x="69.5" y="933" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="72.54" y="943.5" ></text>
+</g>
+<g >
+<title>opendir (40,404,040 samples, 0.25%)</title><rect x="610.7" y="789" width="3.5" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="613.69" y="799.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1119.4" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1122.43" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="981.1" y="725" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="984.08" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (191,919,190 samples, 1.21%)</title><rect x="891.8" y="805" width="16.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="894.76" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_rename (60,606,060 samples, 0.38%)</title><rect x="820.8" y="677" width="5.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="823.84" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1196.5" y="661" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1199.48" y="671.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (30,303,030 samples, 0.19%)</title><rect x="433.8" y="805" width="2.6" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="436.81" y="815.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="404.0" y="757" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="407.04" y="767.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="92.3" y="837" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="95.31" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (50,505,050 samples, 0.32%)</title><rect x="742.0" y="613" width="4.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="745.03" y="623.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (10,101,010 samples, 0.06%)</title><rect x="732.4" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="735.40" y="511.5" ></text>
+</g>
+<g >
+<title>kfree (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="725" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="1319.45" y="735.5" ></text>
+</g>
+<g >
+<title>mkdir (444,444,440 samples, 2.79%)</title><rect x="1143.1" y="821" width="38.5" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1146.07" y="831.5" >mkdir</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="311.2" y="789" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="314.22" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="1219.3" y="613" width="0.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1222.25" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="611.6" y="629" width="0.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="614.56" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="568.7" y="613" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="571.65" y="623.5" ></text>
+</g>
+<g >
+<title>expand_files (10,101,010 samples, 0.06%)</title><rect x="1059.0" y="693" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1062.01" y="703.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.06%)</title><rect x="633.5" y="613" width="0.8" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="636.45" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (111,111,110 samples, 0.70%)</title><rect x="144.0" y="965" width="9.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="146.97" y="975.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (10,101,010 samples, 0.06%)</title><rect x="930.3" y="533" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="933.29" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1205.2" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1208.24" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="1177.2" y="613" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1180.22" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="916.3" y="645" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="919.28" y="655.5" ></text>
+</g>
+<g >
+<title>sk_free (10,101,010 samples, 0.06%)</title><rect x="1371.6" y="277" width="0.9" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="1374.61" y="287.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="473.2" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="476.21" y="719.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (10,101,010 samples, 0.06%)</title><rect x="418.0" y="869" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="421.05" y="879.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="661" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1188.98" y="671.5" ></text>
+</g>
+<g >
+<title>xas_find (10,101,010 samples, 0.06%)</title><rect x="388.3" y="597" width="0.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="391.27" y="607.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="986.3" y="645" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="989.33" y="655.5" ></text>
+</g>
+<g >
+<title>memcmp (10,101,010 samples, 0.06%)</title><rect x="469.7" y="597" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="472.71" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="741" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1235.39" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="506.5" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="509.48" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="706.1" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="709.13" y="687.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1334.8" y="37" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1337.84" y="47.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="1192.1" y="661" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1195.11" y="671.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.06%)</title><rect x="576.5" y="533" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="579.54" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (30,303,030 samples, 0.19%)</title><rect x="207.9" y="485" width="2.6" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="210.89" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="357.6" y="549" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="360.63" y="559.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1025.7" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1028.74" y="703.5" ></text>
+</g>
+<g >
+<title>__default_morecore (10,101,010 samples, 0.06%)</title><rect x="239.4" y="725" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="242.42" y="735.5" ></text>
+</g>
+<g >
+<title>wp_page_copy (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="741" width="0.8" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1322.07" y="751.5" ></text>
+</g>
+<g >
+<title>call_filldir (10,101,010 samples, 0.06%)</title><rect x="616.8" y="645" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="619.81" y="655.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="68.7" y="709" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="71.67" y="719.5" ></text>
+</g>
+<g >
+<title>pipe_write (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="693" width="1.7" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1332.58" y="703.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (10,101,010 samples, 0.06%)</title><rect x="427.7" y="725" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="430.68" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="692.1" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="695.12" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (40,404,040 samples, 0.25%)</title><rect x="841.0" y="581" width="3.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="843.98" y="591.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (70,707,070 samples, 0.44%)</title><rect x="1362.0" y="661" width="6.1" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1364.98" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1108.42" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (383,838,380 samples, 2.41%)</title><rect x="686.9" y="757" width="33.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="689.87" y="767.5" >[l..</text>
+</g>
+<g >
+<title>mempool_alloc (10,101,010 samples, 0.06%)</title><rect x="795.4" y="389" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="798.44" y="399.5" ></text>
+</g>
+<g >
+<title>__slab_free (10,101,010 samples, 0.06%)</title><rect x="31.9" y="757" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="34.89" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1235.9" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1238.89" y="735.5" ></text>
+</g>
+<g >
+<title>mnt_want_write (10,101,010 samples, 0.06%)</title><rect x="309.5" y="645" width="0.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="312.47" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="229" width="0.9" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1375.49" y="239.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="908.4" y="773" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="911.40" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.57%)</title><rect x="1191.2" y="805" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1194.23" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1202.6" y="645" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1205.61" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="747.3" y="629" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="750.28" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="80.1" y="789" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="83.05" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="737.7" y="613" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="740.65" y="623.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="809.5" y="645" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="812.45" y="655.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="373" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1037.49" y="383.5" ></text>
+</g>
+<g >
+<title>perf_iterate_ctx (10,101,010 samples, 0.06%)</title><rect x="241.2" y="517" width="0.8" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="244.17" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="273.6" y="517" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="276.57" y="527.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_plug_list (20,202,020 samples, 0.13%)</title><rect x="822.6" y="453" width="1.7" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="825.59" y="463.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="783.2" y="613" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="786.19" y="623.5" ></text>
+</g>
+<g >
+<title>__es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="467.1" y="501" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="470.08" y="511.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="998.6" y="565" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1001.59" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (20,202,020 samples, 0.13%)</title><rect x="1063.4" y="677" width="1.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1066.39" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="857.6" y="757" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="860.61" y="767.5" ></text>
+</g>
+<g >
+<title>realpath (10,101,010 samples, 0.06%)</title><rect x="757.8" y="741" width="0.9" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="760.79" y="751.5" ></text>
+</g>
+<g >
+<title>block_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="661.5" y="485" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="664.47" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (20,202,020 samples, 0.13%)</title><rect x="932.0" y="485" width="1.8" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="935.04" y="495.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="597" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1098.79" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="896.1" y="677" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="899.14" y="687.5" ></text>
+</g>
+<g >
+<title>git_revparse_ext (30,303,030 samples, 0.19%)</title><rect x="552.9" y="885" width="2.6" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="555.89" y="895.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="979.3" y="597" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="982.33" y="607.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.06%)</title><rect x="785.8" y="741" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="788.81" y="751.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (20,202,020 samples, 0.13%)</title><rect x="963.6" y="565" width="1.7" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="966.57" y="575.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="548.5" y="597" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="551.52" y="607.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1202.6" y="597" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1205.61" y="607.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="725" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1202.11" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="1183.4" y="821" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1186.35" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (30,303,030 samples, 0.19%)</title><rect x="589.7" y="517" width="2.6" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="592.67" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="775.3" y="677" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="778.30" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="775.3" y="597" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="778.30" y="607.5" ></text>
+</g>
+<g >
+<title>iput (40,404,040 samples, 0.25%)</title><rect x="171.1" y="565" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="174.12" y="575.5" ></text>
+</g>
+<g >
+<title>copy_present_pte (50,505,050 samples, 0.32%)</title><rect x="1288.4" y="661" width="4.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1291.43" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="74.8" y="773" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="77.80" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="484.6" y="501" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="487.59" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="240.3" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="243.29" y="751.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="857.6" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="860.61" y="687.5" ></text>
+</g>
+<g >
+<title>git_repository_init (2,636,363,610 samples, 16.56%)</title><rect x="991.6" y="869" width="228.5" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="994.59" y="879.5" >git_repository_init</text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="946.9" y="693" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="949.93" y="703.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.06%)</title><rect x="365.5" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="368.51" y="687.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="279.7" y="549" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="282.70" y="559.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="277" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1348.34" y="287.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1154.5" y="629" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1157.45" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_v4_conn_request (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="325" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1348.34" y="335.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="171.1" y="501" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="174.12" y="511.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="650.1" y="629" width="1.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="653.09" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (50,505,050 samples, 0.32%)</title><rect x="548.5" y="645" width="4.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="551.52" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.06%)</title><rect x="817.3" y="533" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="820.34" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="862.9" y="709" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="865.87" y="719.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="867.2" y="613" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="870.25" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="23.1" y="917" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="26.13" y="927.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="72.2" y="709" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="75.17" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="862.0" y="693" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="864.99" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1197.73" y="671.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="587.0" y="437" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="590.04" y="447.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.06%)</title><rect x="1076.5" y="661" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="1079.52" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="797.2" y="533" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="800.20" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="292.8" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="295.83" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="688.6" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="691.62" y="671.5" ></text>
+</g>
+<g >
+<title>__fdget_pos (10,101,010 samples, 0.06%)</title><rect x="245.5" y="677" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="248.55" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="677.2" y="581" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="680.23" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="158.9" y="853" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="161.86" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="780.6" y="629" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="783.56" y="639.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="107.2" y="805" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="110.20" y="815.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.06%)</title><rect x="672.0" y="485" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="674.98" y="495.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1236.8" y="613" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1239.76" y="623.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (30,303,030 samples, 0.19%)</title><rect x="492.5" y="661" width="2.6" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="495.47" y="671.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.06%)</title><rect x="680.7" y="661" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="683.74" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="365.5" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="368.51" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="409.3" y="741" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="412.29" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (10,101,010 samples, 0.06%)</title><rect x="1127.3" y="501" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="1130.31" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="383.9" y="485" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="386.90" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="292.8" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="295.83" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="72.2" y="805" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="75.17" y="815.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (20,202,020 samples, 0.13%)</title><rect x="186.9" y="549" width="1.7" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="189.88" y="559.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="953.1" y="517" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="956.06" y="527.5" ></text>
+</g>
+<g >
+<title>vmbus_setevent (10,101,010 samples, 0.06%)</title><rect x="665.9" y="245" width="0.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="668.85" y="255.5" ></text>
+</g>
+<g >
+<title>ext4_es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="841.0" y="549" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="843.98" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="198.3" y="581" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="201.26" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="693" width="2.6" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1202.11" y="703.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="458.3" y="725" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="461.32" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="157.1" y="821" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="160.11" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="974.9" y="709" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="977.95" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="66.0" y="869" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="69.04" y="879.5" ></text>
+</g>
+<g >
+<title>remove (313,131,310 samples, 1.97%)</title><rect x="371.6" y="805" width="27.2" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="374.64" y="815.5" >r..</text>
+</g>
+<g >
+<title>readdir64 (121,212,120 samples, 0.76%)</title><rect x="614.2" y="789" width="10.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="617.19" y="799.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="551.1" y="581" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="554.14" y="591.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="661" width="5.2" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1372.86" y="671.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1234.1" y="741" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1237.14" y="751.5" ></text>
+</g>
+<g >
+<title>inode_has_buffers (10,101,010 samples, 0.06%)</title><rect x="374.3" y="645" width="0.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="377.26" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="445.2" y="725" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="448.19" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_server_accept_handler (292,929,290 samples, 1.84%)</title><rect x="44.1" y="933" width="25.4" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="47.15" y="943.5" >t..</text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="484.6" y="421" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="487.59" y="431.5" ></text>
+</g>
+<g >
+<title>git_signature_now (10,101,010 samples, 0.06%)</title><rect x="984.6" y="773" width="0.9" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="987.58" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="324.4" y="581" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="327.35" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="516.1" y="565" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="519.12" y="575.5" ></text>
+</g>
+<g >
+<title>crc_pcl (30,303,030 samples, 0.19%)</title><rect x="1178.1" y="645" width="2.6" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1181.10" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (444,444,440 samples, 2.79%)</title><rect x="1104.5" y="821" width="38.6" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1107.54" y="831.5" >git..</text>
+</g>
+<g >
+<title>main (14,252,525,110 samples, 89.53%)</title><rect x="154.5" y="997" width="1235.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="157.48" y="1007.5" >main</text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (101,010,100 samples, 0.63%)</title><rect x="1167.6" y="597" width="8.7" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="1170.59" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="1165.8" y="485" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1168.84" y="495.5" ></text>
+</g>
+<g >
+<title>__srcu_read_lock (10,101,010 samples, 0.06%)</title><rect x="418.0" y="725" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="421.05" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (20,202,020 samples, 0.13%)</title><rect x="1056.4" y="645" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1059.38" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="709" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1247.64" y="719.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="440.8" y="581" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="443.81" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (10,101,010 samples, 0.06%)</title><rect x="326.1" y="661" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="329.10" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="732.4" y="613" width="1.7" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="735.40" y="623.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="856.7" y="677" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="859.74" y="687.5" ></text>
+</g>
+<g >
+<title>readdir64 (20,202,020 samples, 0.13%)</title><rect x="1236.8" y="773" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1239.76" y="783.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="425.9" y="517" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="428.93" y="527.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1184.2" y="661" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1187.23" y="671.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="763.9" y="533" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="766.92" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="110.7" y="741" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="113.70" y="751.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.3.0] (10,101,010 samples, 0.06%)</title><rect x="1355.0" y="821" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1357.97" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="776.2" y="501" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="779.18" y="511.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="446.1" y="693" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="449.07" y="703.5" ></text>
+</g>
+<g >
+<title>xas_start (10,101,010 samples, 0.06%)</title><rect x="1080.0" y="517" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1083.03" y="527.5" ></text>
+</g>
+<g >
+<title>_raw_read_lock (10,101,010 samples, 0.06%)</title><rect x="771.8" y="469" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="774.80" y="479.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="963.6" y="597" width="1.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="966.57" y="607.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="311.2" y="693" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="314.22" y="703.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (101,010,100 samples, 0.63%)</title><rect x="1264.8" y="789" width="8.7" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1267.78" y="799.5" ></text>
+</g>
+<g >
+<title>__fsnotify_parent (10,101,010 samples, 0.06%)</title><rect x="100.2" y="821" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="103.19" y="831.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="986.3" y="725" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="989.33" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (30,303,030 samples, 0.19%)</title><rect x="1229.8" y="677" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1232.76" y="687.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="747.3" y="565" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="750.28" y="575.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="176.4" y="469" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="179.37" y="479.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="645" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1026.11" y="655.5" ></text>
+</g>
+<g >
+<title>mempool_alloc_slab (10,101,010 samples, 0.06%)</title><rect x="795.4" y="373" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="798.44" y="383.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1085.3" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1088.28" y="719.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (10,101,010 samples, 0.06%)</title><rect x="1342.7" y="341" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1345.72" y="351.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (111,111,110 samples, 0.70%)</title><rect x="925.0" y="725" width="9.7" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="928.04" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="64.3" y="853" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="67.29" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (90,909,090 samples, 0.57%)</title><rect x="1132.6" y="533" width="7.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1135.56" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="905.8" y="597" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="908.77" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="191.3" y="533" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="194.26" y="543.5" ></text>
+</g>
+<g >
+<title>from_kuid (10,101,010 samples, 0.06%)</title><rect x="1148.3" y="597" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="1151.32" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="773" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1243.27" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="516.1" y="581" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="519.12" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (171,717,170 samples, 1.08%)</title><rect x="811.2" y="725" width="14.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="814.21" y="735.5" ></text>
+</g>
+<g >
+<title>iput (282,828,280 samples, 1.78%)</title><rect x="277.9" y="629" width="24.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="280.94" y="639.5" >i..</text>
+</g>
+<g >
+<title>__ext4_unlink (60,606,060 samples, 0.38%)</title><rect x="392.7" y="661" width="5.2" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="395.65" y="671.5" ></text>
+</g>
+<g >
+<title>path_openat (70,707,070 samples, 0.44%)</title><rect x="507.4" y="709" width="6.1" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="510.36" y="719.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_handle_packet (10,101,010 samples, 0.06%)</title><rect x="1362.0" y="565" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1364.98" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mb_prefetch_fini (10,101,010 samples, 0.06%)</title><rect x="704.4" y="453" width="0.9" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="707.38" y="463.5" ></text>
+</g>
+<g >
+<title>git_repository__cleanup (10,101,010 samples, 0.06%)</title><rect x="755.2" y="773" width="0.8" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="758.16" y="783.5" ></text>
+</g>
+<g >
+<title>closedir (10,101,010 samples, 0.06%)</title><rect x="328.7" y="805" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="331.73" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="389" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1040.99" y="399.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1339.2" y="917" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1342.21" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="979.3" y="373" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="982.33" y="383.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="904.0" y="613" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="907.02" y="623.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="714.9" y="581" width="1.7" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="717.89" y="591.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (101,010,100 samples, 0.63%)</title><rect x="665.0" y="581" width="8.7" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="667.97" y="591.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="294.6" y="485" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="297.58" y="495.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (40,404,040 samples, 0.25%)</title><rect x="981.1" y="741" width="3.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="984.08" y="751.5" ></text>
+</g>
+<g >
+<title>may_delete (10,101,010 samples, 0.06%)</title><rect x="428.6" y="725" width="0.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="431.55" y="735.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (20,202,020 samples, 0.13%)</title><rect x="659.7" y="421" width="1.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="662.72" y="431.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (161,616,160 samples, 1.02%)</title><rect x="10.0" y="1045" width="14.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="13.00" y="1055.5" ></text>
+</g>
+<g >
+<title>brk (30,303,030 samples, 0.19%)</title><rect x="398.8" y="757" width="2.6" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="401.78" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="815.6" y="581" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="818.58" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="984.6" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="987.58" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_bread (40,404,040 samples, 0.25%)</title><rect x="701.8" y="549" width="3.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="704.75" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="671.1" y="405" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="674.10" y="415.5" ></text>
+</g>
+<g >
+<title>common_perm_cond (10,101,010 samples, 0.06%)</title><rect x="1116.8" y="597" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="1119.80" y="607.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="473.2" y="725" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="476.21" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_create (50,505,050 samples, 0.32%)</title><rect x="1052.0" y="645" width="4.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1055.01" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="732.4" y="629" width="1.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="735.40" y="639.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (20,202,020 samples, 0.13%)</title><rect x="822.6" y="437" width="1.7" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="825.59" y="447.5" ></text>
+</g>
+<g >
+<title>unmap_single_vma (20,202,020 samples, 0.13%)</title><rect x="399.7" y="613" width="1.7" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="402.66" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="207.0" y="517" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="210.02" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="190.4" y="533" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="193.38" y="543.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (141,414,140 samples, 0.89%)</title><rect x="837.5" y="693" width="12.2" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="840.47" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_queue_rcv (10,101,010 samples, 0.06%)</title><rect x="38.9" y="181" width="0.9" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="41.90" y="191.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="867.2" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="870.25" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="1193.9" y="565" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1196.86" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="594.9" y="725" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="597.92" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="476.7" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="479.71" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1202.6" y="677" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1205.61" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="738.5" y="805" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="741.53" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="186.0" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="189.00" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (40,404,040 samples, 0.25%)</title><rect x="322.6" y="629" width="3.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="325.60" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.19%)</title><rect x="380.4" y="549" width="2.6" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="383.39" y="559.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="534.5" y="581" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="537.51" y="591.5" ></text>
+</g>
+<g >
+<title>filename_lookup (80,808,080 samples, 0.51%)</title><rect x="144.8" y="901" width="7.1" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="147.85" y="911.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="808.6" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="811.58" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="446.1" y="677" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="449.07" y="687.5" ></text>
+</g>
+<g >
+<title>security_file_permission (20,202,020 samples, 0.13%)</title><rect x="622.9" y="677" width="1.8" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" />
+<text x="625.94" y="687.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1298.9" y="693" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1301.93" y="703.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (50,505,050 samples, 0.32%)</title><rect x="1028.4" y="629" width="4.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1031.36" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="772.7" y="485" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="775.68" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (363,636,360 samples, 2.28%)</title><rect x="563.4" y="741" width="31.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="566.40" y="751.5" >en..</text>
+</g>
+<g >
+<title>vfs_fstat (10,101,010 samples, 0.06%)</title><rect x="610.7" y="677" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="613.69" y="687.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.19%)</title><rect x="214.0" y="693" width="2.6" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="217.02" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (565,656,560 samples, 3.55%)</title><rect x="94.9" y="933" width="49.1" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="97.94" y="943.5" >__x6..</text>
+</g>
+<g >
+<title>neigh_hh_output (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="85" width="1.7" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1336.96" y="95.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="903.1" y="597" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="906.15" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="735.0" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="738.03" y="719.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="357" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1037.49" y="367.5" ></text>
+</g>
+<g >
+<title>common_perm_cond (10,101,010 samples, 0.06%)</title><rect x="320.0" y="629" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="322.97" y="639.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="907.5" y="549" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="910.53" y="559.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.13%)</title><rect x="1181.6" y="757" width="1.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1184.60" y="767.5" ></text>
+</g>
+<g >
+<title>lockref_get_not_dead (10,101,010 samples, 0.06%)</title><rect x="1199.1" y="597" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1202.11" y="607.5" ></text>
+</g>
+<g >
+<title>net_recv_buf (30,303,030 samples, 0.19%)</title><rect x="1357.6" y="869" width="2.6" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1360.60" y="879.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="811.2" y="565" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="814.21" y="575.5" ></text>
+</g>
+<g >
+<title>__lookup_mnt (10,101,010 samples, 0.06%)</title><rect x="446.1" y="533" width="0.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="449.07" y="543.5" ></text>
+</g>
+<g >
+<title>net_send (40,404,040 samples, 0.25%)</title><rect x="11.8" y="933" width="3.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="14.75" y="943.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (60,606,060 samples, 0.38%)</title><rect x="1332.2" y="757" width="5.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1335.21" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="667.6" y="437" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="670.60" y="447.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="902.3" y="661" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="905.27" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1195.6" y="773" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1198.61" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="592.3" y="549" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="595.30" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="153.6" y="933" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="156.60" y="943.5" ></text>
+</g>
+<g >
+<title>__rmqueue_pcplist (10,101,010 samples, 0.06%)</title><rect x="732.4" y="453" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="735.40" y="463.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="907.5" y="565" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="910.53" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="92.3" y="965" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="95.31" y="975.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="867.2" y="581" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="870.25" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (141,414,140 samples, 0.89%)</title><rect x="566.0" y="629" width="12.3" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="569.03" y="639.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (20,202,020 samples, 0.13%)</title><rect x="172.9" y="501" width="1.7" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="175.87" y="511.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="901.4" y="693" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="904.40" y="703.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.06%)</title><rect x="722.8" y="757" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="725.77" y="767.5" ></text>
+</g>
+<g >
+<title>alloc_thread_stack_node (20,202,020 samples, 0.13%)</title><rect x="56.4" y="693" width="1.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="59.41" y="703.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (121,212,120 samples, 0.76%)</title><rect x="1049.4" y="725" width="10.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1052.38" y="735.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="591.4" y="469" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="594.42" y="479.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="924.2" y="661" width="0.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="927.16" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="750.8" y="789" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="753.79" y="799.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="357" width="2.6" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1336.08" y="367.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="318.2" y="629" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="321.22" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="673.7" y="581" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="676.73" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="765.7" y="613" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="768.67" y="623.5" ></text>
+</g>
+<g >
+<title>pthread_rwlock_rdlock (10,101,010 samples, 0.06%)</title><rect x="513.5" y="821" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="516.49" y="831.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="978.5" y="677" width="0.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="981.45" y="687.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_bio_merge (10,101,010 samples, 0.06%)</title><rect x="466.2" y="437" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="469.21" y="447.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="790.2" y="549" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="793.19" y="559.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1256.0" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1259.03" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="378.6" y="629" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="381.64" y="639.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.06%)</title><rect x="1381.2" y="325" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1384.24" y="335.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (101,010,100 samples, 0.63%)</title><rect x="1264.8" y="821" width="8.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1267.78" y="831.5" ></text>
+</g>
+<g >
+<title>filename_create (20,202,020 samples, 0.13%)</title><rect x="1143.9" y="725" width="1.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1146.95" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="677" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1235.39" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (40,404,040 samples, 0.25%)</title><rect x="918.0" y="645" width="3.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="921.03" y="655.5" ></text>
+</g>
+<g >
+<title>net_rx_action (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="437" width="4.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1380.74" y="447.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (20,202,020 samples, 0.13%)</title><rect x="71.3" y="933" width="1.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="74.29" y="943.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="976.7" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="979.70" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="397.0" y="613" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="400.03" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="362.0" y="517" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="365.01" y="527.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1096.7" y="501" width="0.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1099.66" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1177.2" y="645" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1180.22" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="293" width="2.6" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1367.61" y="303.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="884.8" y="661" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="887.76" y="671.5" ></text>
+</g>
+<g >
+<title>tlb_finish_mmu (10,101,010 samples, 0.06%)</title><rect x="398.8" y="629" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="401.78" y="639.5" ></text>
+</g>
+<g >
+<title>_compound_head (10,101,010 samples, 0.06%)</title><rect x="1287.6" y="661" width="0.8" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="1290.55" y="671.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="741.2" y="533" width="0.8" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="744.15" y="543.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1094.9" y="597" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1097.91" y="607.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="989.0" y="565" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="991.96" y="575.5" ></text>
+</g>
+<g >
+<title>ip_output (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="597" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1380.74" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1070.4" y="581" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1073.39" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="789" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1019.98" y="799.5" ></text>
+</g>
+<g >
+<title>filename_lookup (101,010,100 samples, 0.63%)</title><rect x="629.9" y="677" width="8.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="632.95" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="474.1" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="477.09" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="248.2" y="597" width="0.8" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="251.17" y="607.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (20,202,020 samples, 0.13%)</title><rect x="1362.0" y="597" width="1.7" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1364.98" y="607.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="635.2" y="533" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="638.20" y="543.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1261.3" y="613" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1264.28" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="1049.4" y="661" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1052.38" y="671.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="533" width="1.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1345.72" y="543.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.13%)</title><rect x="1181.6" y="837" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1184.60" y="847.5" ></text>
+</g>
+<g >
+<title>ip_rcv (30,303,030 samples, 0.19%)</title><rect x="37.1" y="309" width="2.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="40.14" y="319.5" ></text>
+</g>
+<g >
+<title>_copy_to_user (10,101,010 samples, 0.06%)</title><rect x="182.5" y="613" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="185.50" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="969.7" y="629" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="972.70" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_fcntl (10,101,010 samples, 0.06%)</title><rect x="329.6" y="709" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="332.61" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_desc (10,101,010 samples, 0.06%)</title><rect x="1149.2" y="661" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="1152.20" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (70,707,070 samples, 0.44%)</title><rect x="85.3" y="757" width="6.1" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="88.30" y="767.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="269.2" y="581" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="272.19" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (40,404,040 samples, 0.25%)</title><rect x="515.2" y="725" width="3.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="518.24" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="402.3" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="405.28" y="655.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_commit_charge (10,101,010 samples, 0.06%)</title><rect x="968.8" y="469" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="971.82" y="479.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (40,404,040 samples, 0.25%)</title><rect x="262.2" y="645" width="3.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="265.18" y="655.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="581" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1347.47" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="774.4" y="485" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="777.43" y="495.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="38.0" y="117" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="41.02" y="127.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_handle_packet (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="69" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1375.49" y="79.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (10,101,010 samples, 0.06%)</title><rect x="803.3" y="821" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="806.32" y="831.5" ></text>
+</g>
+<g >
+<title>file_close (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="885" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1319.45" y="895.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="856.7" y="757" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="859.74" y="767.5" ></text>
+</g>
+<g >
+<title>__do_softirq (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="485" width="5.2" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1372.86" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_rename (90,909,090 samples, 0.57%)</title><rect x="790.2" y="613" width="7.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="793.19" y="623.5" ></text>
+</g>
+<g >
+<title>vmbus_on_event (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="565" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1371.98" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="1110.7" y="469" width="0.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1113.67" y="479.5" ></text>
+</g>
+<g >
+<title>rw_verify_area (10,101,010 samples, 0.06%)</title><rect x="1228.0" y="613" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1231.01" y="623.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="805" width="0.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1322.07" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1263.0" y="741" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1266.03" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (20,202,020 samples, 0.13%)</title><rect x="425.1" y="629" width="1.7" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="428.05" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.44%)</title><rect x="507.4" y="789" width="6.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="510.36" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (10,101,010 samples, 0.06%)</title><rect x="463.6" y="597" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="466.58" y="607.5" ></text>
+</g>
+<g >
+<title>open64 (50,505,050 samples, 0.32%)</title><rect x="742.0" y="677" width="4.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="745.03" y="687.5" ></text>
+</g>
+<g >
+<title>remove (191,919,190 samples, 1.21%)</title><rect x="221.0" y="741" width="16.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="224.03" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="851.5" y="661" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="854.48" y="671.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="784.1" y="517" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="787.06" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1061.6" y="661" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1064.64" y="671.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="190.4" y="517" width="0.9" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="193.38" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="474.1" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="477.09" y="719.5" ></text>
+</g>
+<g >
+<title>alloc_file_pseudo (20,202,020 samples, 0.13%)</title><rect x="67.8" y="757" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="70.79" y="767.5" ></text>
+</g>
+<g >
+<title>_start (565,656,560 samples, 3.55%)</title><rect x="24.0" y="1045" width="49.0" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="27.01" y="1055.5" >_start</text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="346.2" y="565" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="349.24" y="575.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="851.5" y="581" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="854.48" y="591.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="484.6" y="581" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="487.59" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="902.3" y="709" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="905.27" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="750.8" y="645" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="753.79" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="936.4" y="581" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="939.42" y="591.5" ></text>
+</g>
+<g >
+<title>free_rb_tree_fname (10,101,010 samples, 0.06%)</title><rect x="238.5" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="241.54" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (20,202,020 samples, 0.13%)</title><rect x="721.0" y="693" width="1.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="724.02" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="750.8" y="741" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="753.79" y="751.5" ></text>
+</g>
+<g >
+<title>remove (50,505,050 samples, 0.32%)</title><rect x="177.2" y="693" width="4.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="180.25" y="703.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (30,303,030 samples, 0.19%)</title><rect x="332.2" y="645" width="2.7" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="335.23" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="375.1" y="613" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="378.14" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="366.4" y="789" width="5.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="369.38" y="799.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="752.5" y="597" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="755.54" y="607.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="483.7" y="581" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="486.72" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (101,010,100 samples, 0.63%)</title><rect x="1074.8" y="757" width="8.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1077.77" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (131,313,130 samples, 0.82%)</title><rect x="226.3" y="629" width="11.4" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="229.28" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1100.2" y="421" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1103.16" y="431.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (30,303,030 samples, 0.19%)</title><rect x="516.1" y="645" width="2.6" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="519.12" y="655.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="581" width="0.8" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1322.07" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (60,606,060 samples, 0.38%)</title><rect x="1006.5" y="725" width="5.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1009.47" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1235.9" y="709" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1238.89" y="719.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="746.4" y="565" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="749.41" y="575.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.06%)</title><rect x="534.5" y="565" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="537.51" y="575.5" ></text>
+</g>
+<g >
+<title>open64 (585,858,580 samples, 3.68%)</title><rect x="93.2" y="997" width="50.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="96.19" y="1007.5" >open64</text>
+</g>
+<g >
+<title>filemap_release_folio (10,101,010 samples, 0.06%)</title><rect x="389.1" y="565" width="0.9" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="392.15" y="575.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1197.73" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="746.4" y="581" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="749.41" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="946.1" y="613" width="0.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="949.05" y="623.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="706.1" y="629" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="709.13" y="639.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="318.2" y="597" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="321.22" y="607.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1226.3" y="645" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1229.26" y="655.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1236.8" y="629" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1239.76" y="639.5" ></text>
+</g>
+<g >
+<title>__d_move (10,101,010 samples, 0.06%)</title><rect x="663.2" y="629" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="666.22" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="972.3" y="709" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="975.32" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="834.0" y="549" width="0.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="836.97" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="606.3" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="609.31" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="984.6" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="987.58" y="671.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="504.7" y="613" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="507.73" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="255.2" y="597" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="258.18" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (404,040,400 samples, 2.54%)</title><rect x="934.7" y="725" width="35.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="937.67" y="735.5" >[l..</text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="449.6" y="725" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="452.57" y="735.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="322.6" y="597" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="325.60" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="837" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1322.95" y="847.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="482.0" y="741" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="484.97" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_rename (60,606,060 samples, 0.38%)</title><rect x="820.8" y="645" width="5.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="823.84" y="655.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (20,202,020 samples, 0.13%)</title><rect x="558.1" y="805" width="1.8" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="561.15" y="815.5" ></text>
+</g>
+<g >
+<title>_compound_head (10,101,010 samples, 0.06%)</title><rect x="1313.8" y="757" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="1316.82" y="767.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="842.7" y="341" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="845.73" y="351.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="821" width="6.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1335.21" y="831.5" ></text>
+</g>
+<g >
+<title>git_config_get_string (10,101,010 samples, 0.06%)</title><rect x="798.1" y="757" width="0.8" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="801.07" y="767.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (90,909,090 samples, 0.57%)</title><rect x="184.3" y="613" width="7.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="187.25" y="623.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="1182.5" y="661" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1185.47" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="199.1" y="581" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="202.14" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1013.5" y="773" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1016.48" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="1223.6" y="645" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1226.63" y="655.5" ></text>
+</g>
+<g >
+<title>iterate_dir (111,111,110 samples, 0.70%)</title><rect x="615.1" y="693" width="9.6" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="618.06" y="703.5" ></text>
+</g>
+<g >
+<title>security_task_alloc (10,101,010 samples, 0.06%)</title><rect x="61.7" y="709" width="0.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="64.66" y="719.5" ></text>
+</g>
+<g >
+<title>d_lru_add (10,101,010 samples, 0.06%)</title><rect x="971.4" y="501" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="974.45" y="511.5" ></text>
+</g>
+<g >
+<title>dnotify_flush (10,101,010 samples, 0.06%)</title><rect x="418.0" y="773" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="421.05" y="783.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (60,606,060 samples, 0.38%)</title><rect x="1077.4" y="645" width="5.3" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="1080.40" y="655.5" ></text>
+</g>
+<g >
+<title>__d_move (10,101,010 samples, 0.06%)</title><rect x="1130.8" y="629" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1133.81" y="639.5" ></text>
+</g>
+<g >
+<title>release_sock (10,101,010 samples, 0.06%)</title><rect x="1332.2" y="741" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1335.21" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="328.7" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="331.73" y="783.5" ></text>
+</g>
+<g >
+<title>memcg_account_kmem (10,101,010 samples, 0.06%)</title><rect x="68.7" y="677" width="0.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="71.67" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="404.9" y="661" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="407.91" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (101,010,100 samples, 0.63%)</title><rect x="583.5" y="549" width="8.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="586.54" y="559.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1331.3" y="853" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1334.33" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="969.7" y="661" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="972.70" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1228.0" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1231.01" y="687.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="405" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1348.34" y="415.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (80,808,080 samples, 0.51%)</title><rect x="1266.5" y="773" width="7.0" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1269.54" y="783.5" ></text>
+</g>
+<g >
+<title>chmod (20,202,020 samples, 0.13%)</title><rect x="1011.7" y="789" width="1.8" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="1014.73" y="799.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="661" width="4.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1380.74" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="922.4" y="693" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="925.41" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="816.5" y="549" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="819.46" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="741" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1243.27" y="751.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="670.2" y="437" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="673.23" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_link (10,101,010 samples, 0.06%)</title><rect x="721.9" y="645" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="724.89" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="74.8" y="789" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="77.80" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="585.3" y="485" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="588.29" y="495.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.06%)</title><rect x="805.1" y="501" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="808.08" y="511.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="1092.3" y="629" width="1.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1095.28" y="639.5" ></text>
+</g>
+<g >
+<title>copy_thread (10,101,010 samples, 0.06%)</title><rect x="53.8" y="709" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="56.78" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="857.6" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="860.61" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="488.1" y="549" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="491.10" y="559.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="96.7" y="869" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="99.69" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="546.8" y="533" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="549.76" y="543.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (20,202,020 samples, 0.13%)</title><rect x="665.9" y="421" width="1.7" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="668.85" y="431.5" ></text>
+</g>
+<g >
+<title>should_failslab.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="628.2" y="661" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="631.20" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="870.7" y="645" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="873.75" y="655.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="503.0" y="549" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="505.98" y="559.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="908.4" y="645" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="911.40" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="179.9" y="437" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="182.87" y="447.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1248.52" y="815.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="355.0" y="517" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="358.00" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_rename (90,909,090 samples, 0.57%)</title><rect x="790.2" y="645" width="7.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="793.19" y="655.5" ></text>
+</g>
+<g >
+<title>lh_table_new (20,202,020 samples, 0.13%)</title><rect x="18.8" y="901" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="21.76" y="911.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (20,202,020 samples, 0.13%)</title><rect x="302.5" y="629" width="1.7" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="305.46" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (121,212,120 samples, 0.76%)</title><rect x="614.2" y="757" width="10.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="617.19" y="767.5" ></text>
+</g>
+<g >
+<title>git_repository_init_ext (10,101,010 samples, 0.06%)</title><rect x="153.6" y="1029" width="0.9" height="15.0" fill="rgb(0,235,192)" rx="2" ry="2" />
+<text x="156.60" y="1039.5" ></text>
+</g>
+<g >
+<title>bio_alloc_bioset (10,101,010 samples, 0.06%)</title><rect x="1103.7" y="421" width="0.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1106.67" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (60,606,060 samples, 0.38%)</title><rect x="1044.1" y="677" width="5.3" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1047.12" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_open_default (90,909,090 samples, 0.57%)</title><rect x="1183.4" y="837" width="7.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1186.35" y="847.5" ></text>
+</g>
+<g >
+<title>alloc_file (20,202,020 samples, 0.13%)</title><rect x="67.8" y="741" width="1.7" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="70.79" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="918.0" y="677" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="921.03" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="984.6" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="987.58" y="639.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="219.3" y="581" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="222.28" y="591.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.06%)</title><rect x="701.8" y="469" width="0.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="704.75" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="700.0" y="533" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="703.00" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="446.9" y="757" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="449.94" y="767.5" ></text>
+</g>
+<g >
+<title>git_remote_create_with_opts (595,959,590 samples, 3.74%)</title><rect x="804.2" y="853" width="51.7" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="807.20" y="863.5" >git_r..</text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (60,606,060 samples, 0.38%)</title><rect x="1376.9" y="741" width="5.2" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1379.87" y="751.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (10,101,010 samples, 0.06%)</title><rect x="517.0" y="581" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="519.99" y="591.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="938.2" y="485" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="941.17" y="495.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="230.7" y="565" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="233.66" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="523.1" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="526.12" y="719.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="98.4" y="837" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="101.44" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (434,343,430 samples, 2.73%)</title><rect x="1143.9" y="757" width="37.7" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1146.95" y="767.5" >__x..</text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="855.9" y="789" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="858.86" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="354.1" y="581" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="357.12" y="591.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.06%)</title><rect x="989.8" y="693" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="992.84" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1083.5" y="565" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1086.53" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="783.2" y="677" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="786.19" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="755.2" y="709" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="758.16" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="383.9" y="517" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="386.90" y="527.5" ></text>
+</g>
+<g >
+<title>__sbrk (10,101,010 samples, 0.06%)</title><rect x="429.4" y="837" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="432.43" y="847.5" ></text>
+</g>
+<g >
+<title>mkdir (181,818,180 samples, 1.14%)</title><rect x="76.5" y="981" width="15.8" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="79.55" y="991.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.06%)</title><rect x="271.8" y="517" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="274.81" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (30,303,030 samples, 0.19%)</title><rect x="1178.1" y="661" width="2.6" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1181.10" y="671.5" ></text>
+</g>
+<g >
+<title>do_writepages (90,909,090 samples, 0.57%)</title><rect x="1132.6" y="549" width="7.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1135.56" y="559.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="421" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1221.38" y="431.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="401.4" y="805" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="404.41" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="993.3" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="996.34" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="1200.9" y="613" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1203.86" y="623.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1217.5" y="597" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1220.50" y="607.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_bh (10,101,010 samples, 0.06%)</title><rect x="1382.1" y="757" width="0.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="1385.12" y="767.5" ></text>
+</g>
+<g >
+<title>d_splice_alias (10,101,010 samples, 0.06%)</title><rect x="718.4" y="533" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="721.39" y="543.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="501" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1345.72" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="507.4" y="613" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="510.36" y="623.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="777.1" y="613" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="780.06" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="918.0" y="661" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="921.03" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_free_inodes_count (10,101,010 samples, 0.06%)</title><rect x="1062.5" y="661" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1065.51" y="671.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="1148.3" y="581" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1151.32" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="286.7" y="549" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="289.70" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (212,121,210 samples, 1.33%)</title><rect x="439.1" y="805" width="18.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="442.06" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="92.3" y="901" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="95.31" y="911.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="753.4" y="437" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="756.41" y="447.5" ></text>
+</g>
+<g >
+<title>git_odb_read (80,808,080 samples, 0.51%)</title><rect x="520.5" y="821" width="7.0" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="523.49" y="831.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.06%)</title><rect x="413.7" y="661" width="0.8" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="416.67" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="484.6" y="517" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="487.59" y="527.5" ></text>
+</g>
+<g >
+<title>__slab_free (10,101,010 samples, 0.06%)</title><rect x="414.5" y="597" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="417.54" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (20,202,020 samples, 0.13%)</title><rect x="1069.5" y="613" width="1.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1072.52" y="623.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (50,505,050 samples, 0.32%)</title><rect x="461.8" y="693" width="4.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="464.83" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="495.1" y="741" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="498.10" y="751.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="1142.2" y="773" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1145.20" y="783.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_tcp_packet (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="53" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1375.49" y="63.5" ></text>
+</g>
+<g >
+<title>ext4_discard_preallocations (10,101,010 samples, 0.06%)</title><rect x="814.7" y="581" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="817.71" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1047.6" y="629" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1050.63" y="639.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="629" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1026.98" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="373" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1348.34" y="383.5" ></text>
+</g>
+<g >
+<title>from_kgid_munged (10,101,010 samples, 0.06%)</title><rect x="1188.6" y="645" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1191.60" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="318.2" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="321.22" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="767.4" y="709" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="770.42" y="719.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1058.1" y="677" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1061.13" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="757.8" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="760.79" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (20,202,020 samples, 0.13%)</title><rect x="376.9" y="645" width="1.7" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="379.89" y="655.5" ></text>
+</g>
+<g >
+<title>storvsc_queuecommand (10,101,010 samples, 0.06%)</title><rect x="930.3" y="341" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="933.29" y="351.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="405.8" y="645" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="408.79" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="876.0" y="709" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="879.00" y="719.5" ></text>
+</g>
+<g >
+<title>tcp_in_window (10,101,010 samples, 0.06%)</title><rect x="1362.9" y="517" width="0.8" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1365.86" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="471.5" y="789" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="474.46" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="405.8" y="613" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="408.79" y="623.5" ></text>
+</g>
+<g >
+<title>free_slab (10,101,010 samples, 0.06%)</title><rect x="263.1" y="405" width="0.8" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="266.06" y="415.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="523.1" y="597" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="526.12" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="870.7" y="597" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="873.75" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="524.9" y="613" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="527.87" y="623.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1143.9" y="661" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1146.95" y="671.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (50,505,050 samples, 0.32%)</title><rect x="1100.2" y="485" width="4.3" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1103.16" y="495.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (20,202,020 samples, 0.13%)</title><rect x="1159.7" y="629" width="1.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="1162.71" y="639.5" ></text>
+</g>
+<g >
+<title>evict (40,404,040 samples, 0.25%)</title><rect x="322.6" y="645" width="3.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="325.60" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="969.7" y="693" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="972.70" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1106.3" y="709" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1109.29" y="719.5" ></text>
+</g>
+<g >
+<title>d_alloc (40,404,040 samples, 0.25%)</title><rect x="1077.4" y="613" width="3.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1080.40" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="783.2" y="581" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="786.19" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (393,939,390 samples, 2.47%)</title><rect x="480.2" y="837" width="34.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="483.22" y="847.5" >[l..</text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="239.4" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="242.42" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="979.3" y="629" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="982.33" y="639.5" ></text>
+</g>
+<g >
+<title>posix_acl_create (10,101,010 samples, 0.06%)</title><rect x="117.7" y="789" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="120.70" y="799.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (90,909,090 samples, 0.57%)</title><rect x="996.0" y="645" width="7.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="998.96" y="655.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (10,101,010 samples, 0.06%)</title><rect x="1366.4" y="117" width="0.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1369.36" y="127.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="750.8" y="773" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="753.79" y="783.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (60,606,060 samples, 0.38%)</title><rect x="903.1" y="725" width="5.3" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="906.15" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1029.2" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1032.24" y="543.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="653.6" y="629" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="656.59" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="368.1" y="677" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="371.13" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="804.2" y="757" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="807.20" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="418.0" y="837" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="421.05" y="847.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="726.3" y="597" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="729.27" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="74.8" y="917" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="77.80" y="927.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="777.9" y="613" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="780.93" y="623.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="967.9" y="709" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="970.94" y="719.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="957.4" y="485" width="0.9" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="960.44" y="495.5" ></text>
+</g>
+<g >
+<title>filename_lookup (60,606,060 samples, 0.38%)</title><rect x="714.9" y="613" width="5.2" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="717.89" y="623.5" ></text>
+</g>
+<g >
+<title>destroy_inode (10,101,010 samples, 0.06%)</title><rect x="374.3" y="661" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="377.26" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="499.5" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="502.48" y="735.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1096.7" y="485" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1099.66" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_find_extent (10,101,010 samples, 0.06%)</title><rect x="1088.8" y="469" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="1091.78" y="479.5" ></text>
+</g>
+<g >
+<title>__fstat64 (30,303,030 samples, 0.19%)</title><rect x="242.9" y="757" width="2.6" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="245.92" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_rename (40,404,040 samples, 0.25%)</title><rect x="846.2" y="677" width="3.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="849.23" y="687.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="990.7" y="773" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="993.71" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="606.3" y="597" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="609.31" y="607.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="693" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1114.55" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_v4_conn_request (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="325" width="0.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1390.37" y="335.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="27.5" y="725" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="30.51" y="735.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="757" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1116.30" y="767.5" ></text>
+</g>
+<g >
+<title>from_kprojid (10,101,010 samples, 0.06%)</title><rect x="382.1" y="517" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="385.14" y="527.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1195.6" y="741" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1198.61" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (20,202,020 samples, 0.13%)</title><rect x="1015.2" y="741" width="1.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1018.23" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (20,202,020 samples, 0.13%)</title><rect x="700.0" y="581" width="1.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="703.00" y="591.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="677" width="2.6" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1202.11" y="687.5" ></text>
+</g>
+<g >
+<title>process_measurement (10,101,010 samples, 0.06%)</title><rect x="554.6" y="565" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="557.64" y="575.5" ></text>
+</g>
+<g >
+<title>kfree (10,101,010 samples, 0.06%)</title><rect x="450.4" y="533" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="453.44" y="543.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="853.2" y="549" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="856.24" y="559.5" ></text>
+</g>
+<g >
+<title>ip_output (40,404,040 samples, 0.25%)</title><rect x="36.3" y="549" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="39.27" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1262.53" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (30,303,030 samples, 0.19%)</title><rect x="207.9" y="533" width="2.6" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="210.89" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="206.1" y="485" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="209.14" y="495.5" ></text>
+</g>
+<g >
+<title>access (30,303,030 samples, 0.19%)</title><rect x="1260.4" y="741" width="2.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1263.41" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1327.0" y="789" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1329.95" y="799.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (20,202,020 samples, 0.13%)</title><rect x="922.4" y="549" width="1.8" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="925.41" y="559.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="677" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1114.55" y="687.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="449.6" y="693" width="1.7" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="452.57" y="703.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.06%)</title><rect x="755.2" y="741" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="758.16" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="517" width="5.2" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1102.29" y="527.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="1326.1" y="757" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1329.08" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="693" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1108.42" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="527.5" y="757" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="530.50" y="767.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="1068.6" y="629" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1071.64" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="763.9" y="549" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="766.92" y="559.5" ></text>
+</g>
+<g >
+<title>inode_init_always (30,303,030 samples, 0.19%)</title><rect x="121.2" y="773" width="2.6" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="124.21" y="783.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="749.9" y="453" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="752.91" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1116.30" y="751.5" ></text>
+</g>
+<g >
+<title>process_backlog (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="501" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1348.34" y="511.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="329.6" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="332.61" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1115.9" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1118.93" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="784.1" y="581" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="787.06" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="475.8" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="478.84" y="671.5" ></text>
+</g>
+<g >
+<title>d_alloc (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="613" width="1.7" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1019.98" y="623.5" ></text>
+</g>
+<g >
+<title>fdopendir (60,606,060 samples, 0.38%)</title><rect x="240.3" y="773" width="5.2" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="243.29" y="783.5" ></text>
+</g>
+<g >
+<title>generic_set_encrypted_ci_d_ops (10,101,010 samples, 0.06%)</title><rect x="1081.8" y="629" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="1084.78" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (929,292,920 samples, 5.84%)</title><rect x="991.6" y="821" width="80.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="994.59" y="831.5" >[libgit2...</text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="902.3" y="725" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="905.27" y="735.5" ></text>
+</g>
+<g >
+<title>fscrypt_match_name (10,101,010 samples, 0.06%)</title><rect x="227.2" y="549" width="0.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="230.16" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="896.1" y="709" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="899.14" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="785.8" y="677" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="788.81" y="687.5" ></text>
+</g>
+<g >
+<title>__jbd2_journal_file_buffer (10,101,010 samples, 0.06%)</title><rect x="957.4" y="469" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="960.44" y="479.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="966.2" y="645" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="969.19" y="655.5" ></text>
+</g>
+<g >
+<title>log_entry_start (90,909,090 samples, 0.57%)</title><rect x="430.3" y="901" width="7.9" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="433.30" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="733.3" y="549" width="0.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="736.27" y="559.5" ></text>
+</g>
+<g >
+<title>__do_wait (10,101,010 samples, 0.06%)</title><rect x="1323.5" y="741" width="0.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1326.45" y="751.5" ></text>
+</g>
+<g >
+<title>__wait_on_bit (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="533" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1014.73" y="543.5" ></text>
+</g>
+<g >
+<title>__poll (60,606,060 samples, 0.38%)</title><rect x="24.0" y="933" width="5.3" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="27.01" y="943.5" ></text>
+</g>
+<g >
+<title>do_brk_flags (10,101,010 samples, 0.06%)</title><rect x="241.2" y="581" width="0.8" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="244.17" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="859.4" y="709" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="862.37" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1256.0" y="693" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1259.03" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="482.8" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="485.84" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="485.5" y="549" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="488.47" y="559.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="757" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1363.23" y="767.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="1116.8" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1119.80" y="639.5" ></text>
+</g>
+<g >
+<title>fscrypt_match_name (10,101,010 samples, 0.06%)</title><rect x="485.5" y="501" width="0.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="488.47" y="511.5" ></text>
+</g>
+<g >
+<title>mb_find_extent (10,101,010 samples, 0.06%)</title><rect x="89.7" y="709" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="92.68" y="719.5" ></text>
+</g>
+<g >
+<title>apparmor_file_alloc_security (10,101,010 samples, 0.06%)</title><rect x="454.8" y="501" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="457.82" y="511.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="658.8" y="517" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="661.85" y="527.5" ></text>
+</g>
+<g >
+<title>__sys_connect (50,505,050 samples, 0.32%)</title><rect x="1341.8" y="853" width="4.4" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1344.84" y="863.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="757" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1258.15" y="767.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1115.9" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1118.93" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (90,909,090 samples, 0.57%)</title><rect x="955.7" y="565" width="7.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="958.69" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="451.3" y="757" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="454.32" y="767.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1327.0" y="773" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1329.95" y="783.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="258.7" y="709" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="261.68" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="1110.7" y="533" width="0.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1113.67" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="337.5" y="629" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="340.49" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="657.1" y="517" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="660.09" y="527.5" ></text>
+</g>
+<g >
+<title>git_index_set_caps (50,505,050 samples, 0.32%)</title><rect x="548.5" y="853" width="4.4" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="551.52" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="202.6" y="549" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="205.64" y="559.5" ></text>
+</g>
+<g >
+<title>remove (90,909,090 samples, 0.57%)</title><rect x="410.2" y="837" width="7.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="413.16" y="847.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="429.4" y="773" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="432.43" y="783.5" ></text>
+</g>
+<g >
+<title>do_wp_page (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="757" width="0.8" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1322.07" y="767.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="553.8" y="597" width="0.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="556.77" y="607.5" ></text>
+</g>
+<g >
+<title>all (15,919,191,760 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>security_file_free (10,101,010 samples, 0.06%)</title><rect x="327.9" y="693" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="330.86" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="464.5" y="565" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="467.45" y="575.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="966.2" y="549" width="1.7" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="969.19" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.06%)</title><rect x="402.3" y="725" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="405.28" y="735.5" ></text>
+</g>
+<g >
+<title>cgroup_fork (10,101,010 samples, 0.06%)</title><rect x="49.4" y="725" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="52.40" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.82%)</title><rect x="460.1" y="789" width="11.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="463.08" y="799.5" ></text>
+</g>
+<g >
+<title>path_lookupat (60,606,060 samples, 0.38%)</title><rect x="714.9" y="597" width="5.2" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="717.89" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="114.2" y="757" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="117.20" y="767.5" ></text>
+</g>
+<g >
+<title>kfree (10,101,010 samples, 0.06%)</title><rect x="1128.2" y="533" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="1131.19" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="929.4" y="645" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="932.42" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="819.1" y="517" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="822.09" y="527.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1213.1" y="613" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1216.12" y="623.5" ></text>
+</g>
+<g >
+<title>list_lru_del (10,101,010 samples, 0.06%)</title><rect x="786.7" y="581" width="0.9" height="15.0" fill="rgb(0,216,113)" rx="2" ry="2" />
+<text x="789.69" y="591.5" ></text>
+</g>
+<g >
+<title>__sk_free (10,101,010 samples, 0.06%)</title><rect x="40.6" y="661" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="43.65" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1027.5" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1030.49" y="655.5" ></text>
+</g>
+<g >
+<title>memcg_account_kmem (10,101,010 samples, 0.06%)</title><rect x="784.9" y="549" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="787.94" y="559.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="581" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1221.38" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="360.3" y="549" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="363.25" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="418.0" y="805" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="421.05" y="815.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="482.8" y="645" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="485.84" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="267.4" y="533" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="270.44" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (40,404,040 samples, 0.25%)</title><rect x="805.1" y="629" width="3.5" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="808.08" y="639.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="278.8" y="485" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="281.82" y="495.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="1363.7" y="437" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1366.73" y="447.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.44%)</title><rect x="171.1" y="629" width="6.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="174.12" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.13%)</title><rect x="911.0" y="757" width="1.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="914.03" y="767.5" ></text>
+</g>
+<g >
+<title>__release_sock (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="725" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1371.98" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1086.2" y="773" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1089.15" y="783.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (30,303,030 samples, 0.19%)</title><rect x="1341.8" y="677" width="2.7" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1344.84" y="687.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="983.7" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="986.71" y="687.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="706.1" y="709" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="709.13" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_bread (101,010,100 samples, 0.63%)</title><rect x="82.7" y="821" width="8.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="85.68" y="831.5" ></text>
+</g>
+<g >
+<title>__jbd2_journal_file_buffer (10,101,010 samples, 0.06%)</title><rect x="275.3" y="533" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="278.32" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="186.0" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="189.00" y="511.5" ></text>
+</g>
+<g >
+<title>getenv (10,101,010 samples, 0.06%)</title><rect x="1355.9" y="805" width="0.8" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1358.85" y="815.5" ></text>
+</g>
+<g >
+<title>os_xsave (10,101,010 samples, 0.06%)</title><rect x="932.0" y="357" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="935.04" y="367.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="500.4" y="661" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="503.36" y="671.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="1160.6" y="581" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1163.58" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="182.5" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="185.50" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (70,707,070 samples, 0.44%)</title><rect x="957.4" y="517" width="6.2" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="960.44" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="800.7" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="803.70" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="974.9" y="693" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="977.95" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.06%)</title><rect x="834.0" y="613" width="0.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="836.97" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="272.7" y="565" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="275.69" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="131.7" y="773" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="134.71" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="985.5" y="661" width="0.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="988.46" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (212,121,210 samples, 1.33%)</title><rect x="45.0" y="805" width="18.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="48.03" y="815.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.06%)</title><rect x="730.6" y="501" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="733.65" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="70.4" y="901" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="73.42" y="911.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="749.9" y="469" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="752.91" y="479.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="940.8" y="645" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="943.80" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (70,707,070 samples, 0.44%)</title><rect x="507.4" y="773" width="6.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="510.36" y="783.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="1072.1" y="821" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1075.14" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_inode_is_fast_symlink (10,101,010 samples, 0.06%)</title><rect x="288.5" y="581" width="0.8" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="291.45" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (272,727,270 samples, 1.71%)</title><rect x="277.9" y="597" width="23.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="280.94" y="607.5" >e..</text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="364.6" y="645" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="367.63" y="655.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="709" width="1.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1322.95" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (202,020,200 samples, 1.27%)</title><rect x="994.2" y="789" width="17.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="997.21" y="799.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="677" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1332.58" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="436.4" y="837" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="439.43" y="847.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="68.7" y="693" width="0.8" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="71.67" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="429.4" y="869" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="432.43" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="552.9" y="741" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="555.89" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="346.2" y="581" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="349.24" y="591.5" ></text>
+</g>
+<g >
+<title>iterate_dir (20,202,020 samples, 0.13%)</title><rect x="884.8" y="613" width="1.7" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="887.76" y="623.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="629" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1188.98" y="639.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (30,303,030 samples, 0.19%)</title><rect x="1313.8" y="821" width="2.6" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1316.82" y="831.5" ></text>
+</g>
+<g >
+<title>inet_accept (20,202,020 samples, 0.13%)</title><rect x="66.0" y="773" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="69.04" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="462.7" y="613" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="465.70" y="623.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="582.7" y="501" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="585.66" y="511.5" ></text>
+</g>
+<g >
+<title>iput (40,404,040 samples, 0.25%)</title><rect x="462.7" y="661" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="465.70" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="546.8" y="677" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="549.76" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (151,515,150 samples, 0.95%)</title><rect x="874.3" y="773" width="13.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="877.25" y="783.5" ></text>
+</g>
+<g >
+<title>iput (70,707,070 samples, 0.44%)</title><rect x="839.2" y="629" width="6.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="842.23" y="639.5" ></text>
+</g>
+<g >
+<title>dput (70,707,070 samples, 0.44%)</title><rect x="839.2" y="677" width="6.2" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="842.23" y="687.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="784.1" y="629" width="0.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="787.06" y="639.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="74.8" y="821" width="1.7" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="77.80" y="831.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="312.1" y="693" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="315.09" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_brk (30,303,030 samples, 0.19%)</title><rect x="398.8" y="693" width="2.6" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="401.78" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (464,646,460 samples, 2.92%)</title><rect x="1273.5" y="837" width="40.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1276.54" y="847.5" >do_..</text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.13%)</title><rect x="518.7" y="821" width="1.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="521.74" y="831.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="549" width="1.7" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1389.50" y="559.5" ></text>
+</g>
+<g >
+<title>tcp_v4_send_synack (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="293" width="0.8" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1390.37" y="303.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="1003.8" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1006.85" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (20,202,020 samples, 0.13%)</title><rect x="12.6" y="325" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="15.63" y="335.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="412.8" y="629" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="415.79" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="544.1" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="547.14" y="799.5" ></text>
+</g>
+<g >
+<title>make_vfsuid (10,101,010 samples, 0.06%)</title><rect x="403.2" y="709" width="0.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="406.16" y="719.5" ></text>
+</g>
+<g >
+<title>call_rcu (10,101,010 samples, 0.06%)</title><rect x="1122.1" y="613" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1125.06" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="355.9" y="597" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="358.88" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="834.0" y="725" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="836.97" y="735.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (80,808,080 samples, 0.51%)</title><rect x="1247.3" y="821" width="7.0" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1250.27" y="831.5" ></text>
+</g>
+<g >
+<title>git_reference_create (464,646,460 samples, 2.92%)</title><rect x="438.2" y="885" width="40.3" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="441.19" y="895.5" >git..</text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="183.4" y="613" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="186.38" y="623.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (101,010,100 samples, 0.63%)</title><rect x="811.2" y="645" width="8.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="814.21" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="407.5" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="410.54" y="607.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="767.4" y="693" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="770.42" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_rename (60,606,060 samples, 0.38%)</title><rect x="929.4" y="661" width="5.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="932.42" y="671.5" ></text>
+</g>
+<g >
+<title>unlock_buffer (20,202,020 samples, 0.13%)</title><rect x="130.0" y="725" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="132.96" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="552.9" y="757" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="555.89" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="974.9" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="977.95" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="858.5" y="773" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="861.49" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (60,606,060 samples, 0.38%)</title><rect x="1376.9" y="725" width="5.2" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1379.87" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1184.2" y="693" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1187.23" y="703.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (30,303,030 samples, 0.19%)</title><rect x="1133.4" y="389" width="2.7" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="1136.44" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="450.4" y="549" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="453.44" y="559.5" ></text>
+</g>
+<g >
+<title>mt_free_rcu (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="661" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1363.23" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="451.3" y="725" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="454.32" y="735.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.06%)</title><rect x="588.8" y="501" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="591.79" y="511.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="692.1" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="695.12" y="623.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="462.7" y="581" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="465.70" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="1325.2" y="853" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1328.20" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (20,202,020 samples, 0.13%)</title><rect x="822.6" y="549" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="825.59" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="500.4" y="709" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="503.36" y="719.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="1181.6" y="741" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1184.60" y="751.5" ></text>
+</g>
+<g >
+<title>wait_for_child (20,202,020 samples, 0.13%)</title><rect x="1323.5" y="885" width="1.7" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1326.45" y="895.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="309" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1040.99" y="319.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="888.3" y="581" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="891.26" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_fname_free_filename (10,101,010 samples, 0.06%)</title><rect x="470.6" y="645" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="473.58" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="287.6" y="549" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="290.58" y="559.5" ></text>
+</g>
+<g >
+<title>do_faccessat (111,111,110 samples, 0.70%)</title><rect x="144.0" y="933" width="9.6" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="146.97" y="943.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="916.3" y="693" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="919.28" y="703.5" ></text>
+</g>
+<g >
+<title>__rq_qos_issue (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="309" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1037.49" y="319.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="879.5" y="629" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="882.51" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (40,404,040 samples, 0.25%)</title><rect x="1377.7" y="293" width="3.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1380.74" y="303.5" ></text>
+</g>
+<g >
+<title>ip_local_out (20,202,020 samples, 0.13%)</title><rect x="1344.5" y="709" width="1.7" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1347.47" y="719.5" ></text>
+</g>
+<g >
+<title>libgit_clone (8,121,212,040 samples, 51.02%)</title><rect x="559.9" y="901" width="704.0" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="562.90" y="911.5" >libgit_clone</text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="392.7" y="629" width="0.8" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="395.65" y="639.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (10,101,010 samples, 0.06%)</title><rect x="1098.4" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1101.41" y="655.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="693.0" y="693" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="695.99" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (30,303,030 samples, 0.19%)</title><rect x="111.6" y="741" width="2.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="114.57" y="751.5" ></text>
+</g>
+<g >
+<title>git_refdb_backend_fs (40,404,040 samples, 0.25%)</title><rect x="888.3" y="757" width="3.5" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="891.26" y="767.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="12.6" y="629" width="1.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="15.63" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="327.0" y="757" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="329.98" y="767.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="948.7" y="549" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="951.68" y="559.5" ></text>
+</g>
+<g >
+<title>memcg_list_lru_alloc (10,101,010 samples, 0.06%)</title><rect x="1200.0" y="533" width="0.9" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="1202.99" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="378.6" y="597" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="381.64" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (60,606,060 samples, 0.38%)</title><rect x="24.0" y="869" width="5.3" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="27.01" y="879.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="389" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1037.49" y="399.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="501.2" y="629" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="504.23" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.63%)</title><rect x="331.4" y="773" width="8.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="334.36" y="783.5" ></text>
+</g>
+<g >
+<title>mnt_put_write_access (10,101,010 samples, 0.06%)</title><rect x="519.6" y="709" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="522.62" y="719.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (171,717,170 samples, 1.08%)</title><rect x="811.2" y="693" width="14.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="814.21" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="805.1" y="693" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="808.08" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="905.8" y="629" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="908.77" y="639.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (20,202,020 samples, 0.13%)</title><rect x="822.6" y="405" width="1.7" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="825.59" y="415.5" ></text>
+</g>
+<g >
+<title>perf_iterate_sb.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="241.2" y="533" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="244.17" y="543.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="366.4" y="709" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="369.38" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="545.9" y="773" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="548.89" y="783.5" ></text>
+</g>
+<g >
+<title>__sk_destruct (10,101,010 samples, 0.06%)</title><rect x="40.6" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="43.65" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (40,404,040 samples, 0.25%)</title><rect x="248.2" y="629" width="3.5" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="251.17" y="639.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="213" width="1.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1336.96" y="223.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="368.1" y="693" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="371.13" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="908.4" y="757" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="911.40" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="547.6" y="757" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="550.64" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="946.1" y="629" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="949.05" y="639.5" ></text>
+</g>
+<g >
+<title>process_backlog (40,404,040 samples, 0.25%)</title><rect x="36.3" y="357" width="3.5" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="39.27" y="367.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="650.1" y="757" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="653.09" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="1229.8" y="693" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1232.76" y="703.5" ></text>
+</g>
+<g >
+<title>signalfd_poll (10,101,010 samples, 0.06%)</title><rect x="28.4" y="821" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="31.39" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (20,202,020 samples, 0.13%)</title><rect x="505.6" y="709" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="508.61" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="707.9" y="661" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="710.88" y="671.5" ></text>
+</g>
+<g >
+<title>net_rx_action (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="533" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1389.50" y="543.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="784.9" y="533" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="787.94" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (131,313,130 samples, 0.82%)</title><rect x="1221.0" y="773" width="11.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1224.00" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1097.5" y="533" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1100.54" y="543.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="709" width="0.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1258.15" y="719.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="734.1" y="581" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="737.15" y="591.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="821" width="1.7" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="1332.58" y="831.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="637.8" y="629" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="640.83" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="383.0" y="533" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="386.02" y="543.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="756.0" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="759.04" y="671.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="264.8" y="581" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="267.81" y="591.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="341" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1367.61" y="351.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="878.6" y="645" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="881.63" y="655.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="698.2" y="533" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="701.25" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="549" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1197.73" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="747.3" y="693" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="750.28" y="703.5" ></text>
+</g>
+<g >
+<title>git_checkout_tree (858,585,850 samples, 5.39%)</title><rect x="478.5" y="901" width="74.4" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="481.46" y="911.5" >git_chec..</text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="635.2" y="549" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="638.20" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="680.7" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="683.74" y="799.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (30,303,030 samples, 0.19%)</title><rect x="11.8" y="741" width="2.6" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="14.75" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="1040.6" y="581" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1043.62" y="591.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1263.0" y="725" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1266.03" y="735.5" ></text>
+</g>
+<g >
+<title>__find_get_block (20,202,020 samples, 0.13%)</title><rect x="1159.7" y="613" width="1.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1162.71" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1223.6" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1226.63" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="569.5" y="597" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="572.53" y="607.5" ></text>
+</g>
+<g >
+<title>cap_inode_need_killpriv (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="517" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1026.98" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="216.6" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="219.65" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="749.0" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="752.04" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1048.5" y="645" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1051.50" y="655.5" ></text>
+</g>
+<g >
+<title>walk_component (30,303,030 samples, 0.19%)</title><rect x="717.5" y="581" width="2.6" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="720.51" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="425.1" y="613" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="428.05" y="623.5" ></text>
+</g>
+<g >
+<title>check_stack_object (10,101,010 samples, 0.06%)</title><rect x="940.8" y="501" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="943.80" y="511.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="784.9" y="741" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="787.94" y="751.5" ></text>
+</g>
+<g >
+<title>__sbrk (30,303,030 samples, 0.19%)</title><rect x="398.8" y="773" width="2.6" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="401.78" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (161,616,160 samples, 1.02%)</title><rect x="78.3" y="885" width="14.0" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="81.30" y="895.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="1229.8" y="613" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1232.76" y="623.5" ></text>
+</g>
+<g >
+<title>git_repository_index (50,505,050 samples, 0.32%)</title><rect x="548.5" y="885" width="4.4" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="551.52" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (30,303,030 samples, 0.19%)</title><rect x="174.6" y="549" width="2.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="177.62" y="559.5" ></text>
+</g>
+<g >
+<title>blk_mq_submit_bio (10,101,010 samples, 0.06%)</title><rect x="792.8" y="405" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="795.82" y="415.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (191,919,190 samples, 1.21%)</title><rect x="768.3" y="741" width="16.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="771.30" y="751.5" ></text>
+</g>
+<g >
+<title>brk (10,101,010 samples, 0.06%)</title><rect x="239.4" y="693" width="0.9" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="242.42" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="713.1" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="716.13" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.06%)</title><rect x="505.6" y="677" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="508.61" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (40,404,040 samples, 0.25%)</title><rect x="981.1" y="757" width="3.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="984.08" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="518.7" y="773" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="521.74" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="357.6" y="533" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="360.63" y="543.5" ></text>
+</g>
+<g >
+<title>__submit_bio (10,101,010 samples, 0.06%)</title><rect x="466.2" y="485" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="469.21" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="650.1" y="693" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="653.09" y="703.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.06%)</title><rect x="767.4" y="773" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="770.42" y="783.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="711.4" y="597" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="714.38" y="607.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="192.1" y="645" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="195.13" y="655.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="35.4" y="421" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="38.39" y="431.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1249.9" y="725" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1252.90" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_generic_delete_entry (10,101,010 samples, 0.06%)</title><rect x="404.0" y="661" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="407.04" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="747.3" y="597" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="750.28" y="607.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="661" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1348.34" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="900.5" y="613" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="903.52" y="623.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.06%)</title><rect x="732.4" y="517" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="735.40" y="527.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="946.1" y="597" width="0.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="949.05" y="607.5" ></text>
+</g>
+<g >
+<title>evict (90,909,090 samples, 0.57%)</title><rect x="1122.9" y="597" width="7.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1125.93" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="714.9" y="501" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="717.89" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="548.5" y="693" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="551.52" y="703.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (60,606,060 samples, 0.38%)</title><rect x="1214.9" y="741" width="5.2" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1217.87" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_dx_find_entry (10,101,010 samples, 0.06%)</title><rect x="1264.8" y="709" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1267.78" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1256.0" y="677" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1259.03" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="425.9" y="533" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="428.93" y="543.5" ></text>
+</g>
+<g >
+<title>git_branch_is_checked_out (202,020,200 samples, 1.27%)</title><rect x="750.8" y="821" width="17.5" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="753.79" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (131,313,130 samples, 0.82%)</title><rect x="460.1" y="773" width="11.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="463.08" y="783.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="920.7" y="581" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="923.66" y="591.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="549" width="5.2" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1102.29" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="932.0" y="437" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="935.04" y="447.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="474.1" y="645" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="477.09" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="751.7" y="629" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="754.66" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (121,212,120 samples, 0.76%)</title><rect x="614.2" y="709" width="10.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="617.19" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="654.5" y="469" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="657.47" y="479.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.06%)</title><rect x="397.0" y="581" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="400.03" y="591.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="440.8" y="517" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="443.81" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="850.6" y="805" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="853.61" y="815.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (171,717,170 samples, 1.08%)</title><rect x="196.5" y="661" width="14.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="199.51" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_bread (20,202,020 samples, 0.13%)</title><rect x="270.9" y="581" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="273.94" y="591.5" ></text>
+</g>
+<g >
+<title>__es_find_extent_range (10,101,010 samples, 0.06%)</title><rect x="1047.6" y="597" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1050.63" y="607.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="857.6" y="805" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="860.61" y="815.5" ></text>
+</g>
+<g >
+<title>ip_local_out (70,707,070 samples, 0.44%)</title><rect x="1362.0" y="629" width="6.1" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1364.98" y="639.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_free_hook (10,101,010 samples, 0.06%)</title><rect x="535.4" y="597" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="538.38" y="607.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_free_hook (10,101,010 samples, 0.06%)</title><rect x="1219.3" y="549" width="0.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1222.25" y="559.5" ></text>
+</g>
+<g >
+<title>git_repository_config_snapshot (80,808,080 samples, 0.51%)</title><rect x="760.4" y="757" width="7.0" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="763.42" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="768.3" y="725" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="771.30" y="735.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="835.7" y="629" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="838.72" y="639.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1182.5" y="693" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1185.47" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="597" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1014.73" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="894.4" y="725" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="897.39" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="705.3" y="549" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="708.25" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (50,505,050 samples, 0.32%)</title><rect x="110.7" y="789" width="4.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="113.70" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.06%)</title><rect x="1088.8" y="549" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1091.78" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.63%)</title><rect x="1221.0" y="757" width="8.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1224.00" y="767.5" ></text>
+</g>
+<g >
+<title>iput (50,505,050 samples, 0.32%)</title><rect x="177.2" y="565" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="180.25" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="330.5" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="333.48" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.06%)</title><rect x="840.1" y="581" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="843.10" y="591.5" ></text>
+</g>
+<g >
+<title>do_writepages (60,606,060 samples, 0.38%)</title><rect x="791.9" y="533" width="5.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="794.94" y="543.5" ></text>
+</g>
+<g >
+<title>wake_up_bit (10,101,010 samples, 0.06%)</title><rect x="230.7" y="517" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="233.66" y="527.5" ></text>
+</g>
+<g >
+<title>walk_component (70,707,070 samples, 0.44%)</title><rect x="1077.4" y="661" width="6.1" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1080.40" y="671.5" ></text>
+</g>
+<g >
+<title>xas_load (20,202,020 samples, 0.13%)</title><rect x="333.1" y="501" width="1.8" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="336.11" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="783.2" y="645" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="786.19" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="205.3" y="549" width="0.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="208.27" y="559.5" ></text>
+</g>
+<g >
+<title>xattr_resolve_name (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="501" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1026.98" y="511.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (30,303,030 samples, 0.19%)</title><rect x="1328.7" y="837" width="2.6" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1331.71" y="847.5" ></text>
+</g>
+<g >
+<title>mas_wr_store_entry.isra.0 (30,303,030 samples, 0.19%)</title><rect x="1303.3" y="693" width="2.6" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1306.31" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (90,909,090 samples, 0.57%)</title><rect x="1132.6" y="517" width="7.8" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1135.56" y="527.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="810.3" y="773" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="813.33" y="783.5" ></text>
+</g>
+<g >
+<title>inet_release (90,909,090 samples, 0.57%)</title><rect x="1369.0" y="773" width="7.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1371.98" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="546.8" y="821" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="549.76" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="853.2" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="856.24" y="703.5" ></text>
+</g>
+<g >
+<title>tlb_remove_table_rcu (10,101,010 samples, 0.06%)</title><rect x="35.4" y="357" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="38.39" y="367.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="492.5" y="581" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="495.47" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="485.5" y="693" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="488.47" y="703.5" ></text>
+</g>
+<g >
+<title>inode_init_always (10,101,010 samples, 0.06%)</title><rect x="953.9" y="517" width="0.9" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="956.93" y="527.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="328.7" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="331.73" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="664.1" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="667.10" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.25%)</title><rect x="862.9" y="725" width="3.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="865.87" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,646,464,620 samples, 16.62%)</title><rect x="169.4" y="837" width="229.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="172.37" y="847.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>__close (111,111,110 samples, 0.70%)</title><rect x="32.8" y="869" width="9.6" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="35.77" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="581" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1197.73" y="591.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.19%)</title><rect x="969.7" y="581" width="2.6" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="972.70" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="544.1" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="547.14" y="815.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1031.9" y="597" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1034.87" y="607.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="506.5" y="645" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="509.48" y="655.5" ></text>
+</g>
+<g >
+<title>mpage_process_page_bufs (10,101,010 samples, 0.06%)</title><rect x="796.3" y="469" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="799.32" y="479.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="1223.6" y="597" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1226.63" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.06%)</title><rect x="656.2" y="565" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="659.22" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="857.6" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="860.61" y="799.5" ></text>
+</g>
+<g >
+<title>mpage_prepare_extent_to_map (10,101,010 samples, 0.06%)</title><rect x="1039.7" y="485" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1042.75" y="495.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="613" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1231.88" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1205.2" y="661" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1208.24" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="200.9" y="517" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="203.89" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="643.1" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="646.08" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="562.5" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="565.53" y="751.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1185.1" y="773" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1188.10" y="783.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="180.7" y="309" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="183.75" y="319.5" ></text>
+</g>
+<g >
+<title>mnt_get_write_access (10,101,010 samples, 0.06%)</title><rect x="512.6" y="661" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="515.61" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1098.79" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="841.9" y="517" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="844.85" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="904.9" y="581" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="907.90" y="591.5" ></text>
+</g>
+<g >
+<title>ip_rcv (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="373" width="5.2" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1372.86" y="383.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="853.2" y="725" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="856.24" y="735.5" ></text>
+</g>
+<g >
+<title>write (40,404,040 samples, 0.25%)</title><rect x="515.2" y="789" width="3.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="518.24" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (70,707,070 samples, 0.44%)</title><rect x="507.4" y="757" width="6.1" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="510.36" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="186.0" y="469" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="189.00" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="850.6" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="853.61" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="809.5" y="757" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="812.45" y="767.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="277" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1140.82" y="287.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.06%)</title><rect x="487.2" y="565" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="490.22" y="575.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="108.1" y="773" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="111.07" y="783.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct (40,404,040 samples, 0.25%)</title><rect x="1136.9" y="469" width="3.5" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="1139.94" y="479.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="728.0" y="613" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="731.02" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (80,808,080 samples, 0.51%)</title><rect x="170.2" y="709" width="7.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="173.24" y="719.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.06%)</title><rect x="834.0" y="597" width="0.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="836.97" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="765.7" y="629" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="768.67" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_statx (121,212,120 samples, 0.76%)</title><rect x="629.9" y="693" width="10.6" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="632.95" y="703.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="613" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1116.30" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="664.1" y="565" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="667.10" y="575.5" ></text>
+</g>
+<g >
+<title>dup_user_cpus_ptr (10,101,010 samples, 0.06%)</title><rect x="58.2" y="693" width="0.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="61.16" y="703.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="749.0" y="709" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="752.04" y="719.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="533" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1209.99" y="543.5" ></text>
+</g>
+<g >
+<title>file_update_time (10,101,010 samples, 0.06%)</title><rect x="435.6" y="661" width="0.8" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="438.56" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="710.5" y="677" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="713.51" y="687.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="985.5" y="597" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="988.46" y="607.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="749.9" y="437" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="752.91" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="500.4" y="757" width="4.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="503.36" y="767.5" ></text>
+</g>
+<g >
+<title>__fput (90,909,090 samples, 0.57%)</title><rect x="1369.0" y="821" width="7.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1371.98" y="831.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="463.6" y="453" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="466.58" y="463.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (40,404,040 samples, 0.25%)</title><rect x="805.1" y="677" width="3.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="808.08" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="797.2" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="800.20" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="580.0" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="583.04" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="706.1" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="709.13" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="860.2" y="805" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="863.24" y="815.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="645" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1231.88" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="440.8" y="661" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="443.81" y="671.5" ></text>
+</g>
+<g >
+<title>mas_copy_node.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1277.0" y="693" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1280.04" y="703.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (80,808,080 samples, 0.51%)</title><rect x="431.2" y="885" width="7.0" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="434.18" y="895.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.06%)</title><rect x="707.9" y="517" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="710.88" y="527.5" ></text>
+</g>
+<g >
+<title>cap_capable (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="581" width="0.8" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1258.15" y="591.5" ></text>
+</g>
+<g >
+<title>server_assign_run (131,313,130 samples, 0.82%)</title><rect x="10.9" y="997" width="11.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="13.88" y="1007.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="756.9" y="565" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="759.92" y="575.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="777.9" y="565" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="780.93" y="575.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="645.7" y="645" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="648.71" y="655.5" ></text>
+</g>
+<g >
+<title>__napi_poll (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="437" width="5.2" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1372.86" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="903.1" y="693" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="906.15" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1236.8" y="725" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1239.76" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="767.4" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="770.42" y="751.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="982.8" y="677" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="985.83" y="687.5" ></text>
+</g>
+<g >
+<title>__schedule (30,303,030 samples, 0.19%)</title><rect x="25.8" y="773" width="2.6" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="28.76" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="1108.0" y="677" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1111.05" y="687.5" ></text>
+</g>
+<g >
+<title>generic_update_time (10,101,010 samples, 0.06%)</title><rect x="741.2" y="485" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="744.15" y="495.5" ></text>
+</g>
+<g >
+<title>create_pipe_files (10,101,010 samples, 0.06%)</title><rect x="1322.6" y="789" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1325.58" y="799.5" ></text>
+</g>
+<g >
+<title>remove (60,606,060 samples, 0.38%)</title><rect x="321.7" y="773" width="5.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="324.73" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="594.9" y="741" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="597.92" y="751.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.13%)</title><rect x="922.4" y="533" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="925.41" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="635.2" y="565" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="638.20" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_server_accept (292,929,290 samples, 1.84%)</title><rect x="44.1" y="917" width="25.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="47.15" y="927.5" >t..</text>
+</g>
+<g >
+<title>ext4_match (10,101,010 samples, 0.06%)</title><rect x="1200.9" y="565" width="0.8" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1203.86" y="575.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="517" width="1.8" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1345.72" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="84.4" y="693" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="87.43" y="703.5" ></text>
+</g>
+<g >
+<title>inet6_release (90,909,090 samples, 0.57%)</title><rect x="34.5" y="725" width="7.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="37.52" y="735.5" ></text>
+</g>
+<g >
+<title>fault_in_readable (10,101,010 samples, 0.06%)</title><rect x="1071.3" y="629" width="0.8" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1074.27" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="243.8" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="246.79" y="735.5" ></text>
+</g>
+<g >
+<title>lookup_open.isra.0 (50,505,050 samples, 0.32%)</title><rect x="770.9" y="549" width="4.4" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="773.93" y="559.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (10,101,010 samples, 0.06%)</title><rect x="759.5" y="741" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="762.54" y="751.5" ></text>
+</g>
+<g >
+<title>__fstat64 (10,101,010 samples, 0.06%)</title><rect x="610.7" y="773" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="613.69" y="783.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.06%)</title><rect x="1270.9" y="709" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1273.91" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="642.2" y="757" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="645.21" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="92.3" y="917" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="95.31" y="927.5" ></text>
+</g>
+<g >
+<title>git_worktree_list (10,101,010 samples, 0.06%)</title><rect x="767.4" y="789" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="770.42" y="799.5" ></text>
+</g>
+<g >
+<title>write (40,404,040 samples, 0.25%)</title><rect x="1108.0" y="725" width="3.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1111.05" y="735.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.06%)</title><rect x="235.0" y="453" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="238.04" y="463.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="709" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1363.23" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="936.4" y="597" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="939.42" y="607.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="1036.2" y="405" width="0.9" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="1039.24" y="415.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.06%)</title><rect x="484.6" y="597" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="487.59" y="607.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="108.1" y="677" width="0.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="111.07" y="687.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="857.6" y="661" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="860.61" y="671.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="429.4" y="885" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="432.43" y="895.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="902.3" y="597" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="905.27" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_fname_setup_ci_filename (10,101,010 samples, 0.06%)</title><rect x="1271.8" y="725" width="0.9" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="1274.79" y="735.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="581" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1014.73" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (101,010,100 samples, 0.63%)</title><rect x="1368.1" y="869" width="8.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1371.11" y="879.5" ></text>
+</g>
+<g >
+<title>truncate_cleanup_folio (10,101,010 samples, 0.06%)</title><rect x="661.5" y="517" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="664.47" y="527.5" ></text>
+</g>
+<g >
+<title>xas_find_marked (10,101,010 samples, 0.06%)</title><rect x="672.9" y="469" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="675.86" y="479.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.06%)</title><rect x="123.8" y="805" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="126.83" y="815.5" ></text>
+</g>
+<g >
+<title>__d_alloc (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="597" width="1.7" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="1019.98" y="607.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (10,101,010 samples, 0.06%)</title><rect x="1366.4" y="101" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1369.36" y="111.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.63%)</title><rect x="1211.4" y="773" width="8.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1214.37" y="783.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="908.4" y="805" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="911.40" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="323.5" y="581" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="326.48" y="591.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="629" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1241.52" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (30,303,030 samples, 0.19%)</title><rect x="207.9" y="501" width="2.6" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="210.89" y="511.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="64.3" y="837" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="67.29" y="847.5" ></text>
+</g>
+<g >
+<title>git_reference_create (505,050,500 samples, 3.17%)</title><rect x="686.0" y="837" width="43.8" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="688.99" y="847.5" >git_..</text>
+</g>
+<g >
+<title>git_config_snapshot (80,808,080 samples, 0.51%)</title><rect x="1247.3" y="837" width="7.0" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="1250.27" y="847.5" ></text>
+</g>
+<g >
+<title>remove (303,030,300 samples, 1.90%)</title><rect x="340.1" y="789" width="26.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="343.11" y="799.5" >r..</text>
+</g>
+<g >
+<title>git_refdb_backend_fs (30,303,030 samples, 0.19%)</title><rect x="752.5" y="725" width="2.7" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="755.54" y="735.5" ></text>
+</g>
+<g >
+<title>iterate_dir (30,303,030 samples, 0.19%)</title><rect x="1229.8" y="661" width="2.6" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1232.76" y="671.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="791.9" y="469" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="794.94" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="1193.9" y="549" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1196.86" y="559.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (20,202,020 samples, 0.13%)</title><rect x="665.9" y="501" width="1.7" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="668.85" y="511.5" ></text>
+</g>
+<g >
+<title>__fsnotify_parent (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="469" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1221.38" y="479.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="523.1" y="629" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="526.12" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="484.6" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="487.59" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="488.1" y="533" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="491.10" y="543.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1187.7" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1190.73" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (30,303,030 samples, 0.19%)</title><rect x="925.9" y="613" width="2.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="928.91" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (151,515,150 samples, 0.95%)</title><rect x="1028.4" y="725" width="13.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1031.36" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="732.4" y="709" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="735.40" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_free_inodes_count (10,101,010 samples, 0.06%)</title><rect x="1268.3" y="725" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1271.29" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="880.4" y="517" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="883.38" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (20,202,020 samples, 0.13%)</title><rect x="586.2" y="501" width="1.7" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="589.17" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_statx (101,010,100 samples, 0.63%)</title><rect x="1074.8" y="709" width="8.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1077.77" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1083.5" y="741" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1086.53" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="211.4" y="677" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="214.40" y="687.5" ></text>
+</g>
+<g >
+<title>security_inode_permission (10,101,010 samples, 0.06%)</title><rect x="365.5" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="368.51" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="508.2" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="511.24" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="326.1" y="597" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="329.10" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="330.5" y="741" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="333.48" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.13%)</title><rect x="1181.6" y="773" width="1.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1184.60" y="783.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="989.0" y="533" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="991.96" y="543.5" ></text>
+</g>
+<g >
+<title>gettid (10,101,010 samples, 0.06%)</title><rect x="1327.8" y="885" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1330.83" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="552.9" y="869" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="555.89" y="879.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (10,101,010 samples, 0.06%)</title><rect x="960.9" y="421" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="963.94" y="431.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="834.0" y="661" width="0.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="836.97" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="475.8" y="645" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="478.84" y="655.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="582.7" y="565" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="585.66" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="181.6" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="184.62" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_io_submit (10,101,010 samples, 0.06%)</title><rect x="466.2" y="549" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="469.21" y="559.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="725.4" y="517" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="728.39" y="527.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="152.7" y="837" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="155.73" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="535.4" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="538.38" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1192.1" y="725" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1195.11" y="735.5" ></text>
+</g>
+<g >
+<title>mb_find_order_for_block (10,101,010 samples, 0.06%)</title><rect x="590.5" y="469" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="593.55" y="479.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (111,111,110 samples, 0.70%)</title><rect x="1201.7" y="805" width="9.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="1204.74" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="888.3" y="565" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="891.26" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="922.4" y="661" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="925.41" y="671.5" ></text>
+</g>
+<g >
+<title>do_faccessat (40,404,040 samples, 0.25%)</title><rect x="536.3" y="661" width="3.5" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="539.26" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="780.6" y="709" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="783.56" y="719.5" ></text>
+</g>
+<g >
+<title>schedule (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="741" width="1.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1322.95" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (20,202,020 samples, 0.13%)</title><rect x="378.6" y="645" width="1.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="381.64" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="733.3" y="501" width="0.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="736.27" y="511.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="735.9" y="677" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="738.90" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1256.0" y="725" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1259.03" y="735.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_create_internal (10,101,010 samples, 0.06%)</title><rect x="1348.0" y="917" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1350.97" y="927.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="453.9" y="725" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="456.95" y="735.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_create_internal (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="917" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1392.12" y="927.5" ></text>
+</g>
+<g >
+<title>git_repository__cleanup (121,212,120 samples, 0.76%)</title><rect x="158.9" y="885" width="10.5" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="161.86" y="895.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1234.1" y="773" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1237.14" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (90,909,090 samples, 0.57%)</title><rect x="790.2" y="629" width="7.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="793.19" y="639.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.06%)</title><rect x="365.5" y="773" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="368.51" y="783.5" ></text>
+</g>
+<g >
+<title>down_write (10,101,010 samples, 0.06%)</title><rect x="599.3" y="661" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="602.30" y="671.5" ></text>
+</g>
+<g >
+<title>fsnotify (10,101,010 samples, 0.06%)</title><rect x="593.2" y="645" width="0.8" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="596.17" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="951.3" y="533" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="954.31" y="543.5" ></text>
+</g>
+<g >
+<title>nd_jump_root (10,101,010 samples, 0.06%)</title><rect x="1197.4" y="613" width="0.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="1200.36" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="23.1" y="901" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="26.13" y="911.5" ></text>
+</g>
+<g >
+<title>walk_component (60,606,060 samples, 0.38%)</title><rect x="146.6" y="869" width="5.3" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="149.60" y="879.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="249.9" y="549" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="252.92" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (171,717,170 samples, 1.08%)</title><rect x="811.2" y="741" width="14.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="814.21" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.25%)</title><rect x="279.7" y="581" width="3.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="282.70" y="591.5" ></text>
+</g>
+<g >
+<title>lookup_dcache (10,101,010 samples, 0.06%)</title><rect x="1098.4" y="629" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1101.41" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="846.2" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="849.23" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="907.5" y="581" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="910.53" y="591.5" ></text>
+</g>
+<g >
+<title>realpath (60,606,060 samples, 0.38%)</title><rect x="489.8" y="773" width="5.3" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="492.85" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (30,303,030 samples, 0.19%)</title><rect x="702.6" y="517" width="2.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="705.63" y="527.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="1068.6" y="757" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1071.64" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="581" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1209.99" y="591.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="1197.4" y="677" width="1.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1200.36" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (30,303,030 samples, 0.19%)</title><rect x="1108.9" y="597" width="2.6" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1111.92" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="756.0" y="597" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="759.04" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="851.5" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="854.48" y="607.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.13%)</title><rect x="1183.4" y="805" width="1.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1186.35" y="815.5" ></text>
+</g>
+<g >
+<title>fstatat64 (50,505,050 samples, 0.32%)</title><rect x="216.6" y="757" width="4.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="219.65" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="867.2" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="870.25" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.57%)</title><rect x="730.6" y="773" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="733.65" y="783.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="1115.9" y="581" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1118.93" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="692.1" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="695.12" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="423.3" y="693" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="426.30" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (30,303,030 samples, 0.19%)</title><rect x="207.9" y="517" width="2.6" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="210.89" y="527.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="1025.7" y="741" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1028.74" y="751.5" ></text>
+</g>
+<g >
+<title>folio_unlock (10,101,010 samples, 0.06%)</title><rect x="965.3" y="533" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="968.32" y="543.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (20,202,020 samples, 0.13%)</title><rect x="665.9" y="453" width="1.7" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="668.85" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="132.6" y="709" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="135.59" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (111,111,110 samples, 0.70%)</title><rect x="996.0" y="725" width="9.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="998.96" y="735.5" ></text>
+</g>
+<g >
+<title>connect (50,505,050 samples, 0.32%)</title><rect x="1341.8" y="933" width="4.4" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1344.84" y="943.5" ></text>
+</g>
+<g >
+<title>__x64_sys_readlink (40,404,040 samples, 0.25%)</title><rect x="491.6" y="693" width="3.5" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="494.60" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="755.2" y="693" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="758.16" y="703.5" ></text>
+</g>
+<g >
+<title>do_softirq (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="485" width="1.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1345.72" y="495.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="677" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1022.61" y="687.5" ></text>
+</g>
+<g >
+<title>unlink_cb (626,262,620 samples, 3.93%)</title><rect x="256.9" y="773" width="54.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="259.93" y="783.5" >unlin..</text>
+</g>
+<g >
+<title>__do_softirq (20,202,020 samples, 0.13%)</title><rect x="12.6" y="517" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="15.63" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="645" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1108.42" y="655.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="517" width="0.8" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="1347.47" y="527.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="677.2" y="565" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="680.23" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="545.9" y="677" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="548.89" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (40,404,040 samples, 0.25%)</title><rect x="11.8" y="837" width="3.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="14.75" y="847.5" ></text>
+</g>
+<g >
+<title>server_listen_thread (565,656,560 samples, 3.55%)</title><rect x="24.0" y="965" width="49.0" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="27.01" y="975.5" >serv..</text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="362.0" y="485" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="365.01" y="495.5" ></text>
+</g>
+<g >
+<title>git_transport_new (20,202,020 samples, 0.13%)</title><rect x="911.0" y="837" width="1.8" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="914.03" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="544.1" y="757" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="547.14" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="412.8" y="645" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="415.79" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="921.5" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="924.54" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="876.9" y="645" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="879.88" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (10,101,010 samples, 0.06%)</title><rect x="545.9" y="725" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="548.89" y="735.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.06%)</title><rect x="146.6" y="837" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="149.60" y="847.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="802.4" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="805.45" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (101,010,100 samples, 0.63%)</title><rect x="1074.8" y="725" width="8.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1077.77" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_brk (20,202,020 samples, 0.13%)</title><rect x="241.2" y="597" width="1.7" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="244.17" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (40,404,040 samples, 0.25%)</title><rect x="1125.6" y="565" width="3.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1128.56" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="1027.5" y="677" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="1030.49" y="687.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="749.9" y="565" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="752.91" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (141,414,140 samples, 0.89%)</title><rect x="837.5" y="741" width="12.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="840.47" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="782.3" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="785.31" y="623.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="985.5" y="645" width="0.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="988.46" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="74.8" y="949" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="77.80" y="959.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_commit_charge (10,101,010 samples, 0.06%)</title><rect x="582.7" y="469" width="0.8" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="585.66" y="479.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (30,303,030 samples, 0.19%)</title><rect x="1133.4" y="373" width="2.7" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1136.44" y="383.5" ></text>
+</g>
+<g >
+<title>cpuset_fork (10,101,010 samples, 0.06%)</title><rect x="51.2" y="693" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="54.15" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="763.9" y="565" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="766.92" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (10,101,010 samples, 0.06%)</title><rect x="1342.7" y="293" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1345.72" y="303.5" ></text>
+</g>
+<g >
+<title>crc_pcl (40,404,040 samples, 0.25%)</title><rect x="136.1" y="741" width="3.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="139.09" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="1006.5" y="741" width="5.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1009.47" y="751.5" ></text>
+</g>
+<g >
+<title>sock_alloc_file (20,202,020 samples, 0.13%)</title><rect x="67.8" y="773" width="1.7" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="70.79" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.63%)</title><rect x="915.4" y="789" width="8.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="918.41" y="799.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="581" width="5.2" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1372.86" y="591.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="581" width="2.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1336.08" y="591.5" ></text>
+</g>
+<g >
+<title>evict (101,010,100 samples, 0.63%)</title><rect x="201.8" y="581" width="8.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="204.76" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (70,707,070 samples, 0.44%)</title><rect x="714.0" y="661" width="6.1" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="717.01" y="671.5" ></text>
+</g>
+<g >
+<title>log_entry_start (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="933" width="1.8" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1349.22" y="943.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="152.7" y="853" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="155.73" y="863.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="985.5" y="725" width="0.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="988.46" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="728.0" y="597" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="731.02" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="834.0" y="709" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="836.97" y="719.5" ></text>
+</g>
+<g >
+<title>iput (101,010,100 samples, 0.63%)</title><rect x="201.8" y="597" width="8.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="204.76" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="752.5" y="565" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="755.54" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="975.8" y="469" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="978.82" y="479.5" ></text>
+</g>
+<g >
+<title>access (10,101,010 samples, 0.06%)</title><rect x="726.3" y="725" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="729.27" y="735.5" ></text>
+</g>
+<g >
+<title>get_random_u32 (10,101,010 samples, 0.06%)</title><rect x="509.1" y="629" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="512.11" y="639.5" ></text>
+</g>
+<g >
+<title>mb_mark_used (10,101,010 samples, 0.06%)</title><rect x="589.7" y="469" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="592.67" y="479.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="968.8" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="971.82" y="495.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="485.5" y="629" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="488.47" y="639.5" ></text>
+</g>
+<g >
+<title>vm_area_free_rcu_cb (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="501" width="0.8" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1347.47" y="511.5" ></text>
+</g>
+<g >
+<title>submit_bio (10,101,010 samples, 0.06%)</title><rect x="1099.3" y="469" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="1102.29" y="479.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (40,404,040 samples, 0.25%)</title><rect x="1384.7" y="741" width="3.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1387.75" y="751.5" ></text>
+</g>
+<g >
+<title>__close_nocancel (20,202,020 samples, 0.13%)</title><rect x="327.0" y="805" width="1.7" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="329.98" y="815.5" ></text>
+</g>
+<g >
+<title>__tcp_close (80,808,080 samples, 0.51%)</title><rect x="1369.0" y="741" width="7.0" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1371.98" y="751.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="33.6" y="757" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="36.64" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="964.4" y="453" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="967.44" y="463.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="1003.8" y="613" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1006.85" y="623.5" ></text>
+</g>
+<g >
+<title>ip_build_and_send_pkt (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="277" width="0.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="1390.37" y="287.5" ></text>
+</g>
+<g >
+<title>d_move (10,101,010 samples, 0.06%)</title><rect x="1130.8" y="645" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="1133.81" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="482.0" y="613" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="484.97" y="623.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="726.3" y="565" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="729.27" y="575.5" ></text>
+</g>
+<g >
+<title>apparmor_file_permission (10,101,010 samples, 0.06%)</title><rect x="1228.0" y="597" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1231.01" y="607.5" ></text>
+</g>
+<g >
+<title>_find_next_zero_bit (10,101,010 samples, 0.06%)</title><rect x="1267.4" y="725" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1270.41" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_match (10,101,010 samples, 0.06%)</title><rect x="135.2" y="757" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="138.22" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="942.6" y="453" width="0.8" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="945.55" y="463.5" ></text>
+</g>
+<g >
+<title>filemap_flush (40,404,040 samples, 0.25%)</title><rect x="930.3" y="629" width="3.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="933.29" y="639.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (10,101,010 samples, 0.06%)</title><rect x="844.5" y="581" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="847.48" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="780.6" y="645" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="783.56" y="655.5" ></text>
+</g>
+<g >
+<title>lh_table_free (10,101,010 samples, 0.06%)</title><rect x="1350.6" y="821" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1353.60" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="816.5" y="517" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="819.46" y="527.5" ></text>
+</g>
+<g >
+<title>unlink_cb (191,919,190 samples, 1.21%)</title><rect x="221.0" y="757" width="16.7" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="224.03" y="767.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="1053.8" y="581" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1056.76" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (80,808,080 samples, 0.51%)</title><rect x="585.3" y="533" width="7.0" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="588.29" y="543.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="948.7" y="533" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="951.68" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="750.8" y="613" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="753.79" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (343,434,340 samples, 2.16%)</title><rect x="768.3" y="757" width="29.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="771.30" y="767.5" >[l..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="904.9" y="629" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="907.90" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="805.1" y="725" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="808.08" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_stream_alloc_skb (10,101,010 samples, 0.06%)</title><rect x="14.4" y="757" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="17.38" y="767.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="995.1" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="998.09" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (20,202,020 samples, 0.13%)</title><rect x="822.6" y="629" width="1.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="825.59" y="639.5" ></text>
+</g>
+<g >
+<title>filemap_release_folio (10,101,010 samples, 0.06%)</title><rect x="819.1" y="485" width="0.9" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="822.09" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="645" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1026.98" y="655.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="263.1" y="549" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="266.06" y="559.5" ></text>
+</g>
+<g >
+<title>readdir64 (131,313,130 samples, 0.82%)</title><rect x="245.5" y="773" width="11.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="248.55" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1231.5" y="549" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1234.51" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.63%)</title><rect x="1254.3" y="821" width="8.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1257.28" y="831.5" ></text>
+</g>
+<g >
+<title>fprintf (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="901" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1349.22" y="911.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="92.3" y="821" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="95.31" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="948.7" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="951.68" y="687.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="968.8" y="533" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="971.82" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="546.8" y="725" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="549.76" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (50,505,050 samples, 0.32%)</title><rect x="548.5" y="661" width="4.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="551.52" y="671.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.06%)</title><rect x="819.1" y="453" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="822.09" y="463.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="536.3" y="693" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="539.26" y="703.5" ></text>
+</g>
+<g >
+<title>do_writepages (20,202,020 samples, 0.13%)</title><rect x="848.0" y="565" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="850.98" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="338.4" y="565" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="341.36" y="575.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="692.1" y="549" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="695.12" y="559.5" ></text>
+</g>
+<g >
+<title>do_filp_open (40,404,040 samples, 0.25%)</title><rect x="918.0" y="613" width="3.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="921.03" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1094.0" y="693" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1097.04" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="546.8" y="709" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="549.76" y="719.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="549" width="2.6" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1336.08" y="559.5" ></text>
+</g>
+<g >
+<title>__memcpy (10,101,010 samples, 0.06%)</title><rect x="249.0" y="597" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="252.05" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="770.9" y="661" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="773.93" y="671.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (40,404,040 samples, 0.25%)</title><rect x="386.5" y="629" width="3.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="389.52" y="639.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1103.7" y="357" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1106.67" y="367.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="181.6" y="613" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="184.62" y="623.5" ></text>
+</g>
+<g >
+<title>git_attr_cache_flush (40,404,040 samples, 0.25%)</title><rect x="165.9" y="869" width="3.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="168.86" y="879.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (434,343,430 samples, 2.73%)</title><rect x="686.0" y="789" width="37.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="688.99" y="799.5" >[li..</text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (464,646,460 samples, 2.92%)</title><rect x="934.7" y="741" width="40.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="937.67" y="751.5" >[li..</text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="808.6" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="811.58" y="671.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="771.8" y="485" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="774.80" y="495.5" ></text>
+</g>
+<g >
+<title>copy_semundo (10,101,010 samples, 0.06%)</title><rect x="52.9" y="709" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="55.91" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="1228.0" y="629" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1231.01" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="552.9" y="805" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="555.89" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="693" width="4.4" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1380.74" y="703.5" ></text>
+</g>
+<g >
+<title>do_softirq (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="597" width="0.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1347.47" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (60,606,060 samples, 0.38%)</title><rect x="315.6" y="693" width="5.3" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="318.60" y="703.5" ></text>
+</g>
+<g >
+<title>pipe_write (10,101,010 samples, 0.06%)</title><rect x="72.2" y="725" width="0.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="75.17" y="735.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.06%)</title><rect x="439.9" y="549" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="442.94" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="439.9" y="581" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="442.94" y="591.5" ></text>
+</g>
+<g >
+<title>out_of_line_wait_on_bit (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="549" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1014.73" y="559.5" ></text>
+</g>
+<g >
+<title>add_transaction_credits (10,101,010 samples, 0.06%)</title><rect x="278.8" y="533" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="281.82" y="543.5" ></text>
+</g>
+<g >
+<title>put_cpu_partial (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="613" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="1363.23" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="721.0" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="724.02" y="751.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (70,707,070 samples, 0.44%)</title><rect x="1362.0" y="709" width="6.1" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1364.98" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1060.8" y="773" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1063.76" y="783.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="1200.0" y="645" width="1.7" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1202.99" y="655.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="33.6" y="709" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="36.64" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="888.3" y="677" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="891.26" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="491.6" y="725" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="494.60" y="735.5" ></text>
+</g>
+<g >
+<title>git_repository_free (10,101,010 samples, 0.06%)</title><rect x="990.7" y="869" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="993.71" y="879.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (20,202,020 samples, 0.13%)</title><rect x="12.6" y="389" width="1.8" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="15.63" y="399.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="969.7" y="645" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="972.70" y="655.5" ></text>
+</g>
+<g >
+<title>iterate_dir (10,101,010 samples, 0.06%)</title><rect x="339.2" y="725" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="342.24" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="482.8" y="613" width="1.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="485.84" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1249.0" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1252.02" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (20,202,020 samples, 0.13%)</title><rect x="226.3" y="581" width="1.7" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="229.28" y="591.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="507.4" y="533" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="510.36" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="794.6" y="405" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="797.57" y="415.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="661" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1322.07" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (10,101,010 samples, 0.06%)</title><rect x="1272.7" y="741" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1275.66" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="924.2" y="741" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="927.16" y="751.5" ></text>
+</g>
+<g >
+<title>filemap_flush (101,010,100 samples, 0.63%)</title><rect x="665.0" y="597" width="8.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="667.97" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="475.8" y="597" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="478.84" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (30,303,030 samples, 0.19%)</title><rect x="1165.0" y="581" width="2.6" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1167.96" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="680.7" y="757" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="683.74" y="767.5" ></text>
+</g>
+<g >
+<title>mb_find_order_for_block (10,101,010 samples, 0.06%)</title><rect x="89.7" y="693" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="92.68" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="946.1" y="661" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="949.05" y="671.5" ></text>
+</g>
+<g >
+<title>process_backlog (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="501" width="1.7" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1389.50" y="511.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="886.5" y="645" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="889.51" y="655.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="114.2" y="709" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="117.20" y="719.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="959.2" y="453" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="962.19" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (111,111,110 samples, 0.70%)</title><rect x="32.8" y="837" width="9.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="35.77" y="847.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (20,202,020 samples, 0.13%)</title><rect x="727.1" y="757" width="1.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="730.14" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1125.6" y="469" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1128.56" y="479.5" ></text>
+</g>
+<g >
+<title>alloc_file_pseudo (10,101,010 samples, 0.06%)</title><rect x="1341.0" y="821" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1343.96" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="969.7" y="677" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="972.70" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="972.3" y="533" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="975.32" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_statx (40,404,040 samples, 0.25%)</title><rect x="941.7" y="565" width="3.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="944.68" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1270.9" y="677" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1273.91" y="687.5" ></text>
+</g>
+<g >
+<title>__fsnotify_parent (10,101,010 samples, 0.06%)</title><rect x="1187.7" y="629" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1190.73" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_bread (40,404,040 samples, 0.25%)</title><rect x="1044.1" y="645" width="3.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1047.12" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (30,303,030 samples, 0.19%)</title><rect x="805.1" y="581" width="2.6" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="808.08" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="377.8" y="629" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="380.77" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="713.1" y="549" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="716.13" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="918.0" y="693" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="921.03" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1208.7" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1211.74" y="687.5" ></text>
+</g>
+<g >
+<title>closedir (10,101,010 samples, 0.06%)</title><rect x="239.4" y="773" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="242.42" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_ext_determine_insert_hole (10,101,010 samples, 0.06%)</title><rect x="1110.7" y="485" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1113.67" y="495.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="364.6" y="693" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="367.63" y="703.5" ></text>
+</g>
+<g >
+<title>terminate_walk (10,101,010 samples, 0.06%)</title><rect x="939.0" y="501" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="942.05" y="511.5" ></text>
+</g>
+<g >
+<title>security_d_instantiate (10,101,010 samples, 0.06%)</title><rect x="954.8" y="549" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="957.81" y="559.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="693.0" y="597" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="695.99" y="607.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="492.5" y="613" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="495.47" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="883.0" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="886.01" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="241.2" y="661" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="244.17" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (70,707,070 samples, 0.44%)</title><rect x="293.7" y="517" width="6.1" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="296.71" y="527.5" ></text>
+</g>
+<g >
+<title>inet_reqsk_alloc (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="293" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="1348.34" y="303.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="803.3" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="806.32" y="815.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="837" width="1.8" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="1349.22" y="847.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1013.5" y="741" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1016.48" y="751.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="1212.2" y="661" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1215.25" y="671.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.06%)</title><rect x="1353.2" y="821" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1356.22" y="831.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="918.0" y="549" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="921.03" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="804.2" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="807.20" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="756.0" y="757" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="759.04" y="767.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (50,505,050 samples, 0.32%)</title><rect x="1363.7" y="533" width="4.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1366.73" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1222.8" y="693" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1225.75" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (20,202,020 samples, 0.13%)</title><rect x="868.1" y="645" width="1.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="871.12" y="655.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="549" width="4.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1380.74" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="531.9" y="693" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="534.88" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="972.3" y="613" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="975.32" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="595.8" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="598.80" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="693" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1022.61" y="703.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1143.9" y="677" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1146.95" y="687.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="592.3" y="533" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="595.30" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="978.5" y="661" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="981.45" y="671.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="1012.6" y="709" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1015.60" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="759.5" y="693" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="762.54" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (111,111,110 samples, 0.70%)</title><rect x="530.1" y="757" width="9.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="533.13" y="767.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="487.2" y="613" width="1.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="490.22" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="198.3" y="533" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="201.26" y="543.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="722.8" y="677" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="725.77" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="1225.4" y="725" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1228.38" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_get_group_info (10,101,010 samples, 0.06%)</title><rect x="115.1" y="805" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="118.08" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="710.5" y="709" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="713.51" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="471.5" y="805" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="474.46" y="815.5" ></text>
+</g>
+<g >
+<title>memcpy@plt (10,101,010 samples, 0.06%)</title><rect x="1252.5" y="725" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1255.53" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="131.7" y="741" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="134.71" y="751.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="118.6" y="773" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="121.58" y="783.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1325.2" y="821" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1328.20" y="831.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="808.6" y="773" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="811.58" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1197.4" y="725" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1200.36" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="883.9" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="886.88" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="425.1" y="581" width="1.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="428.05" y="591.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="916.3" y="709" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="919.28" y="719.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="341.0" y="581" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="343.99" y="591.5" ></text>
+</g>
+<g >
+<title>unmap_region (10,101,010 samples, 0.06%)</title><rect x="429.4" y="709" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="432.43" y="719.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="741" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1114.55" y="751.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1188.6" y="661" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1191.60" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="693.0" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="695.99" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (90,909,090 samples, 0.57%)</title><rect x="1041.5" y="709" width="7.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1044.50" y="719.5" ></text>
+</g>
+<g >
+<title>do_filp_open (70,707,070 samples, 0.44%)</title><rect x="507.4" y="725" width="6.1" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="510.36" y="735.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (20,202,020 samples, 0.13%)</title><rect x="130.0" y="757" width="1.7" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="132.96" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (40,404,040 samples, 0.25%)</title><rect x="78.3" y="853" width="3.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="81.30" y="863.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="1049.4" y="645" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="1052.38" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="592.3" y="597" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="595.30" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="405" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1040.99" y="415.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="773" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1197.73" y="783.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="648.3" y="741" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="651.34" y="751.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="1118.6" y="677" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1121.55" y="687.5" ></text>
+</g>
+<g >
+<title>inet_stream_connect (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="821" width="12.2" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1379.87" y="831.5" ></text>
+</g>
+<g >
+<title>add_transaction_credits (10,101,010 samples, 0.06%)</title><rect x="998.6" y="533" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1001.59" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="498.6" y="741" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="501.60" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.06%)</title><rect x="807.7" y="581" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="810.70" y="591.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="455.7" y="517" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="458.70" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="74.8" y="885" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="77.80" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_inode_attach_jinode (10,101,010 samples, 0.06%)</title><rect x="101.1" y="805" width="0.8" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="104.07" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="1140.4" y="597" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1143.44" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="125.6" y="741" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="128.58" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="1325.2" y="901" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1328.20" y="911.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="411.9" y="629" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="414.92" y="639.5" ></text>
+</g>
+<g >
+<title>log_prefix_thread_id (10,101,010 samples, 0.06%)</title><rect x="1327.8" y="901" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1330.83" y="911.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.06%)</title><rect x="818.2" y="469" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="821.21" y="479.5" ></text>
+</g>
+<g >
+<title>evict (40,404,040 samples, 0.25%)</title><rect x="1028.4" y="581" width="3.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1031.36" y="591.5" ></text>
+</g>
+<g >
+<title>dquot_drop (10,101,010 samples, 0.06%)</title><rect x="285.8" y="549" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="288.82" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="888.3" y="725" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="891.26" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="979.3" y="437" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="982.33" y="447.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="1212.2" y="645" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1215.25" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="530.1" y="741" width="6.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="533.13" y="751.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="972.3" y="501" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="975.32" y="511.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="405.8" y="581" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="408.79" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="972.3" y="549" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="975.32" y="559.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="868.1" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="871.12" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (202,020,200 samples, 1.27%)</title><rect x="1158.8" y="645" width="17.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1161.83" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="798.9" y="629" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="801.95" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1195.6" y="757" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1198.61" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_delayed_block (20,202,020 samples, 0.13%)</title><rect x="806.0" y="517" width="1.7" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="808.95" y="527.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1202.6" y="581" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1205.61" y="591.5" ></text>
+</g>
+<g >
+<title>getdents64 (30,303,030 samples, 0.19%)</title><rect x="1229.8" y="741" width="2.6" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1232.76" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (434,343,430 samples, 2.73%)</title><rect x="1143.9" y="773" width="37.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1146.95" y="783.5" >x64..</text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (20,202,020 samples, 0.13%)</title><rect x="665.9" y="373" width="1.7" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="668.85" y="383.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="634.3" y="533" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="637.33" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (20,202,020 samples, 0.13%)</title><rect x="1069.5" y="629" width="1.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1072.52" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="411.9" y="677" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="414.92" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="463.6" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="466.58" y="511.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (10,101,010 samples, 0.06%)</title><rect x="35.4" y="533" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="38.39" y="543.5" ></text>
+</g>
+<g >
+<title>perf_event_init_task (10,101,010 samples, 0.06%)</title><rect x="60.8" y="709" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="63.79" y="719.5" ></text>
+</g>
+<g >
+<title>__radix_tree_lookup (10,101,010 samples, 0.06%)</title><rect x="1324.3" y="709" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1327.33" y="719.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="405" width="2.6" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1367.61" y="415.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="637.0" y="613" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="639.95" y="623.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="1258.7" y="613" width="0.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1261.65" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="208.8" y="357" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="211.77" y="367.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="868.1" y="581" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="871.12" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="815.6" y="549" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="818.58" y="559.5" ></text>
+</g>
+<g >
+<title>client_create_thread (232,323,230 samples, 1.46%)</title><rect x="44.1" y="885" width="20.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="47.15" y="895.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.3.0] (10,101,010 samples, 0.06%)</title><rect x="10.9" y="869" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="13.88" y="879.5" ></text>
+</g>
+<g >
+<title>do_eventfd (20,202,020 samples, 0.13%)</title><rect x="64.3" y="805" width="1.7" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="67.29" y="815.5" ></text>
+</g>
+<g >
+<title>link (20,202,020 samples, 0.13%)</title><rect x="458.3" y="805" width="1.8" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="461.32" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="904.0" y="597" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="907.02" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="955.7" y="533" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="958.69" y="543.5" ></text>
+</g>
+<g >
+<title>file_close (101,010,100 samples, 0.63%)</title><rect x="1368.1" y="933" width="8.8" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1371.11" y="943.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="1131.7" y="597" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1134.69" y="607.5" ></text>
+</g>
+<g >
+<title>access (30,303,030 samples, 0.19%)</title><rect x="1211.4" y="757" width="2.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1214.37" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="330.5" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="333.48" y="767.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="1025.7" y="661" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1028.74" y="671.5" ></text>
+</g>
+<g >
+<title>d_lookup (10,101,010 samples, 0.06%)</title><rect x="224.5" y="613" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="227.53" y="623.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1339.2" y="885" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1342.21" y="895.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="853.2" y="597" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="856.24" y="607.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1366.4" y="181" width="0.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1369.36" y="191.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1042.4" y="645" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1045.37" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="988.1" y="629" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="991.08" y="639.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (30,303,030 samples, 0.19%)</title><rect x="537.1" y="645" width="2.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="540.13" y="655.5" ></text>
+</g>
+<g >
+<title>iterate_dir (80,808,080 samples, 0.51%)</title><rect x="332.2" y="709" width="7.0" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="335.23" y="719.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="842.7" y="469" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="845.73" y="479.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="1363.7" y="373" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1366.73" y="383.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="423.3" y="821" width="5.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="426.30" y="831.5" ></text>
+</g>
+<g >
+<title>ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="505.6" y="613" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="508.61" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="414.5" y="677" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="417.54" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (40,404,040 samples, 0.25%)</title><rect x="897.9" y="677" width="3.5" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="900.89" y="687.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (222,222,220 samples, 1.40%)</title><rect x="831.3" y="837" width="19.3" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="834.35" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="422.4" y="693" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="425.42" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="757.8" y="613" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="760.79" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="939.9" y="421" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="942.92" y="431.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="808.6" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="811.58" y="591.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="145.7" y="869" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="148.72" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (60,606,060 samples, 0.38%)</title><rect x="791.9" y="501" width="5.3" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="794.94" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="760.4" y="677" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="763.42" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (303,030,300 samples, 1.90%)</title><rect x="372.5" y="773" width="26.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="375.51" y="783.5" >e..</text>
+</g>
+<g >
+<title>bit_wait_io (10,101,010 samples, 0.06%)</title><rect x="108.1" y="725" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="111.07" y="735.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (30,303,030 samples, 0.19%)</title><rect x="475.0" y="805" width="2.6" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="477.96" y="815.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="580.0" y="533" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="583.04" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="896.1" y="613" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="899.14" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="892.6" y="677" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="895.64" y="687.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.06%)</title><rect x="254.3" y="565" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="257.30" y="575.5" ></text>
+</g>
+<g >
+<title>path_parentat (30,303,030 samples, 0.19%)</title><rect x="263.1" y="629" width="2.6" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="266.06" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1211.4" y="725" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1214.37" y="735.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1204.4" y="645" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1207.37" y="655.5" ></text>
+</g>
+<g >
+<title>_copy_to_user (10,101,010 samples, 0.06%)</title><rect x="495.1" y="677" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="498.10" y="687.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="538.0" y="581" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="541.01" y="591.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="443.4" y="629" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="446.44" y="639.5" ></text>
+</g>
+<g >
+<title>unmap_region (30,303,030 samples, 0.19%)</title><rect x="398.8" y="645" width="2.6" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="401.78" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (161,616,160 samples, 1.02%)</title><rect x="78.3" y="869" width="14.0" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="81.30" y="879.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="341" width="4.4" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1380.74" y="351.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="725.4" y="629" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="728.39" y="639.5" ></text>
+</g>
+<g >
+<title>worker_main (14,252,525,110 samples, 89.53%)</title><rect x="154.5" y="981" width="1235.5" height="15.0" fill="rgb(0,212,96)" rx="2" ry="2" />
+<text x="157.48" y="991.5" >worker_main</text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="648.3" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="651.34" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (444,444,440 samples, 2.79%)</title><rect x="1104.5" y="789" width="38.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1107.54" y="799.5" >[li..</text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="749.9" y="389" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="752.91" y="399.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1190.4" y="757" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1193.36" y="767.5" ></text>
+</g>
+<g >
+<title>common_perm_cond (10,101,010 samples, 0.06%)</title><rect x="835.7" y="613" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="838.72" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="770.1" y="645" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="773.05" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="866.4" y="805" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="869.37" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="790.2" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="793.19" y="591.5" ></text>
+</g>
+<g >
+<title>__d_lookup (10,101,010 samples, 0.06%)</title><rect x="662.3" y="613" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="665.35" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="846.2" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="849.23" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_find_dest_de (10,101,010 samples, 0.06%)</title><rect x="1003.0" y="565" width="0.8" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1005.97" y="575.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="504.7" y="677" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="507.73" y="687.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1010.9" y="645" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1013.85" y="655.5" ></text>
+</g>
+<g >
+<title>remove (70,707,070 samples, 0.44%)</title><rect x="423.3" y="853" width="6.1" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="426.30" y="863.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (90,909,090 samples, 0.57%)</title><rect x="1041.5" y="757" width="7.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1044.50" y="767.5" ></text>
+</g>
+<g >
+<title>remove (626,262,620 samples, 3.93%)</title><rect x="256.9" y="757" width="54.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="259.93" y="767.5" >remove</text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="842.7" y="421" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="845.73" y="431.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="984.6" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="987.58" y="719.5" ></text>
+</g>
+<g >
+<title>unmap_page_range (20,202,020 samples, 0.13%)</title><rect x="399.7" y="597" width="1.7" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="402.66" y="607.5" ></text>
+</g>
+<g >
+<title>is_vmalloc_addr (10,101,010 samples, 0.06%)</title><rect x="651.0" y="565" width="0.8" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="653.96" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="585.3" y="501" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="588.29" y="511.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="935.5" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="938.55" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="1087.0" y="741" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1090.03" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="906.6" y="677" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="909.65" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="398.8" y="725" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="401.78" y="735.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.06%)</title><rect x="1109.8" y="453" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1112.80" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.06%)</title><rect x="180.7" y="437" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="183.75" y="447.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="734.1" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="737.15" y="687.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (40,404,040 samples, 0.25%)</title><rect x="45.9" y="725" width="3.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="48.90" y="735.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="692.1" y="533" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="695.12" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (40,404,040 samples, 0.25%)</title><rect x="110.7" y="757" width="3.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="113.70" y="767.5" ></text>
+</g>
+<g >
+<title>drop_buffers.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="818.2" y="453" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="821.21" y="463.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="721.0" y="629" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="724.02" y="639.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="12.6" y="613" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="15.63" y="623.5" ></text>
+</g>
+<g >
+<title>path_openat (30,303,030 samples, 0.19%)</title><rect x="988.1" y="709" width="2.6" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="991.08" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (101,010,100 samples, 0.63%)</title><rect x="665.0" y="613" width="8.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="667.97" y="623.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="424.2" y="645" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="427.18" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (20,202,020 samples, 0.13%)</title><rect x="608.9" y="725" width="1.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="611.93" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="1115.1" y="757" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1118.05" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1029.61" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="543.3" y="693" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="546.26" y="703.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="291.1" y="485" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="294.08" y="495.5" ></text>
+</g>
+<g >
+<title>ptep_clear_flush (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="725" width="0.8" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="1322.07" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1188.6" y="677" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1191.60" y="687.5" ></text>
+</g>
+<g >
+<title>bvec_alloc (10,101,010 samples, 0.06%)</title><rect x="795.4" y="405" width="0.9" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="798.44" y="415.5" ></text>
+</g>
+<g >
+<title>net_close (111,111,110 samples, 0.70%)</title><rect x="32.8" y="901" width="9.6" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="35.77" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (30,303,030 samples, 0.19%)</title><rect x="348.9" y="645" width="2.6" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="351.87" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="981.1" y="613" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="984.08" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="1224.5" y="565" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1227.51" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="714.9" y="517" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="717.89" y="527.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="392.7" y="597" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="395.65" y="607.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="653.6" y="613" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="656.59" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="531.9" y="645" width="1.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="534.88" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="92.3" y="949" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="95.31" y="959.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.06%)</title><rect x="181.6" y="581" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="184.62" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="654.5" y="565" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="657.47" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1094.0" y="645" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1097.04" y="655.5" ></text>
+</g>
+<g >
+<title>_compound_head (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="533" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" />
+<text x="1108.42" y="543.5" ></text>
+</g>
+<g >
+<title>kfree (10,101,010 samples, 0.06%)</title><rect x="608.9" y="661" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="611.93" y="671.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (151,515,150 samples, 0.95%)</title><rect x="1028.4" y="661" width="13.1" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="1031.36" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (20,202,020 samples, 0.13%)</title><rect x="404.0" y="677" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="407.04" y="687.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="908.4" y="677" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="911.40" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (20,202,020 samples, 0.13%)</title><rect x="1153.6" y="693" width="1.7" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1156.58" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="850.6" y="789" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="853.61" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="693" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1026.11" y="703.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="59.9" y="677" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="62.91" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (50,505,050 samples, 0.32%)</title><rect x="616.8" y="677" width="4.4" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="619.81" y="687.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="549.4" y="613" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="552.39" y="623.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1208.7" y="597" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1211.74" y="607.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="504.7" y="693" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="507.73" y="703.5" ></text>
+</g>
+<g >
+<title>git_refspec_src_matches (10,101,010 samples, 0.06%)</title><rect x="987.2" y="821" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="990.21" y="831.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1027.5" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1030.49" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1266.5" y="725" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1269.54" y="735.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.06%)</title><rect x="1200.0" y="565" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="1202.99" y="575.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="35.4" y="437" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="38.39" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="1088.8" y="533" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1091.78" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="536.3" y="709" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="539.26" y="719.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="184.3" y="501" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="187.25" y="511.5" ></text>
+</g>
+<g >
+<title>file_exists (30,303,030 samples, 0.19%)</title><rect x="1325.2" y="917" width="2.6" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1328.20" y="927.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (505,050,500 samples, 3.17%)</title><rect x="934.7" y="757" width="43.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="937.67" y="767.5" >[lib..</text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="1248.1" y="757" width="5.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1251.15" y="767.5" ></text>
+</g>
+<g >
+<title>_find_next_zero_bit (10,101,010 samples, 0.06%)</title><rect x="1173.7" y="565" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1176.72" y="575.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="971.4" y="533" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="974.45" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="485.5" y="661" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="488.47" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="763.0" y="645" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="766.05" y="655.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="1361.1" y="677" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1364.10" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="684.2" y="757" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="687.24" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="408.4" y="821" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="411.41" y="831.5" ></text>
+</g>
+<g >
+<title>getdents64 (30,303,030 samples, 0.19%)</title><rect x="401.4" y="821" width="2.6" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="404.41" y="831.5" ></text>
+</g>
+<g >
+<title>tcp_v6_conn_request (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="341" width="0.8" height="15.0" fill="rgb(0,236,197)" rx="2" ry="2" />
+<text x="1390.37" y="351.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="565" width="5.2" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1372.86" y="575.5" ></text>
+</g>
+<g >
+<title>mntput_no_expire (10,101,010 samples, 0.06%)</title><rect x="524.0" y="613" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="527.00" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="208.8" y="389" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="211.77" y="399.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="762.2" y="677" width="5.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="765.17" y="687.5" ></text>
+</g>
+<g >
+<title>__es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="414.5" y="629" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="417.54" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.06%)</title><rect x="1031.0" y="453" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1033.99" y="463.5" ></text>
+</g>
+<g >
+<title>fstatat64 (40,404,040 samples, 0.25%)</title><rect x="937.3" y="661" width="3.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="940.30" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="869.9" y="709" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="872.87" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="508.2" y="597" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="511.24" y="607.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="494.2" y="613" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="497.23" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="504.7" y="709" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="507.73" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (242,424,240 samples, 1.52%)</title><rect x="994.2" y="805" width="21.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="997.21" y="815.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="939.0" y="469" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="942.05" y="479.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="421" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1390.37" y="431.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="805" width="1.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1019.98" y="815.5" ></text>
+</g>
+<g >
+<title>evict (20,202,020 samples, 0.13%)</title><rect x="1063.4" y="693" width="1.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1066.39" y="703.5" ></text>
+</g>
+<g >
+<title>__fput_sync (20,202,020 samples, 0.13%)</title><rect x="237.7" y="693" width="1.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="240.66" y="703.5" ></text>
+</g>
+<g >
+<title>access (40,404,040 samples, 0.25%)</title><rect x="897.9" y="741" width="3.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="900.89" y="751.5" ></text>
+</g>
+<g >
+<title>make_pollfds (10,101,010 samples, 0.06%)</title><rect x="43.3" y="933" width="0.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="46.27" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="337.5" y="613" width="1.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="340.49" y="623.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="677" width="0.9" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="1363.23" y="687.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="168.5" y="837" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="171.49" y="847.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="917" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1349.22" y="927.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (50,505,050 samples, 0.32%)</title><rect x="862.0" y="837" width="4.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="864.99" y="847.5" ></text>
+</g>
+<g >
+<title>do_linkat (20,202,020 samples, 0.13%)</title><rect x="974.9" y="661" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="977.95" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="852.4" y="741" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="855.36" y="751.5" ></text>
+</g>
+<g >
+<title>apparmor_file_permission (10,101,010 samples, 0.06%)</title><rect x="623.8" y="661" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="626.82" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="946.1" y="645" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="949.05" y="655.5" ></text>
+</g>
+<g >
+<title>libjson_to_string_internal (10,101,010 samples, 0.06%)</title><rect x="10.9" y="933" width="0.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="13.88" y="943.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1231.5" y="581" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1234.51" y="591.5" ></text>
+</g>
+<g >
+<title>inode_io_list_del (10,101,010 samples, 0.06%)</title><rect x="301.6" y="597" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="304.59" y="607.5" ></text>
+</g>
+<g >
+<title>inet_create.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1340.1" y="805" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1343.09" y="815.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (787,878,780 samples, 4.95%)</title><rect x="169.4" y="773" width="68.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="172.37" y="783.5" >[libc.s..</text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="661" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1248.52" y="671.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (10,101,010 samples, 0.06%)</title><rect x="1103.7" y="389" width="0.8" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" />
+<text x="1106.67" y="399.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="721.0" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="724.02" y="623.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="532.8" y="581" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="535.75" y="591.5" ></text>
+</g>
+<g >
+<title>common_perm_cond (10,101,010 samples, 0.06%)</title><rect x="496.9" y="629" width="0.8" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="499.85" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="778.8" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="781.81" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.06%)</title><rect x="324.4" y="613" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="327.35" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="692.1" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="695.12" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="80.1" y="821" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="83.05" y="831.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="318.2" y="645" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="321.22" y="655.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="549" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1348.34" y="559.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (40,404,040 samples, 0.25%)</title><rect x="1384.7" y="725" width="3.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1387.75" y="735.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="437" width="0.8" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1390.37" y="447.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="944.3" y="469" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="947.30" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="734.1" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="737.15" y="735.5" ></text>
+</g>
+<g >
+<title>block_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="389.1" y="581" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="392.15" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1356.7" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1359.73" y="783.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="536.3" y="629" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="539.26" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1040.6" y="565" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1043.62" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="507.4" y="581" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="510.36" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="842.7" y="437" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="845.73" y="447.5" ></text>
+</g>
+<g >
+<title>__do_sys_brk (30,303,030 samples, 0.19%)</title><rect x="398.8" y="677" width="2.6" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="401.78" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="208.8" y="405" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="211.77" y="415.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.06%)</title><rect x="965.3" y="549" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="968.32" y="559.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="834.8" y="661" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="837.85" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="727.1" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="730.14" y="751.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="702.6" y="405" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="705.63" y="415.5" ></text>
+</g>
+<g >
+<title>folio_alloc (20,202,020 samples, 0.13%)</title><rect x="1108.9" y="517" width="1.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1111.92" y="527.5" ></text>
+</g>
+<g >
+<title>notify_change (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="693" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1014.73" y="703.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="897.0" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="900.02" y="687.5" ></text>
+</g>
+<g >
+<title>shrink_dentry_list (10,101,010 samples, 0.06%)</title><rect x="427.7" y="709" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="430.68" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="853.2" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="856.24" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="328.7" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="331.73" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="746.4" y="597" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="749.41" y="607.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="205.3" y="517" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="208.27" y="527.5" ></text>
+</g>
+<g >
+<title>add_transaction_credits (10,101,010 samples, 0.06%)</title><rect x="254.3" y="549" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="257.30" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.57%)</title><rect x="738.5" y="693" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="741.53" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="80.1" y="805" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="83.05" y="815.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="908.4" y="725" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="911.40" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (111,111,110 samples, 0.70%)</title><rect x="32.8" y="805" width="9.6" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="35.77" y="815.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="693.0" y="517" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="695.99" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (40,404,040 samples, 0.25%)</title><rect x="1108.0" y="661" width="3.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1111.05" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (232,323,230 samples, 1.46%)</title><rect x="1021.4" y="757" width="20.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1024.36" y="767.5" ></text>
+</g>
+<g >
+<title>prepare_to_wait_exclusive (10,101,010 samples, 0.06%)</title><rect x="998.6" y="517" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1001.59" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1083.5" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1086.53" y="703.5" ></text>
+</g>
+<g >
+<title>ksys_write (30,303,030 samples, 0.19%)</title><rect x="539.8" y="709" width="2.6" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="542.76" y="719.5" ></text>
+</g>
+<g >
+<title>alloc_inode (10,101,010 samples, 0.06%)</title><rect x="953.9" y="533" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="956.93" y="543.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1248.52" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="597" width="5.2" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1102.29" y="607.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (30,303,030 samples, 0.19%)</title><rect x="1133.4" y="421" width="2.7" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1136.44" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_release_folio (10,101,010 samples, 0.06%)</title><rect x="187.8" y="453" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="190.75" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="429.4" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="432.43" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (20,202,020 samples, 0.13%)</title><rect x="38.0" y="213" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="41.02" y="223.5" ></text>
+</g>
+<g >
+<title>should_failslab.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1312.9" y="693" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1315.94" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.06%)</title><rect x="545.9" y="757" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="548.89" y="767.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="446.1" y="549" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="449.07" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="725.4" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="728.39" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="868.1" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="871.12" y="687.5" ></text>
+</g>
+<g >
+<title>git_filter_list_stream_buffer (60,606,060 samples, 0.38%)</title><rect x="515.2" y="837" width="5.3" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="518.24" y="847.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="815.6" y="533" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="818.58" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (171,717,170 samples, 1.08%)</title><rect x="196.5" y="677" width="14.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="199.51" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="418.0" y="821" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="421.05" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_find_extent (10,101,010 samples, 0.06%)</title><rect x="1070.4" y="565" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="1073.39" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="758.7" y="693" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="761.67" y="703.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="446.1" y="597" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="449.07" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="725.4" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="728.39" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="886.5" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="889.51" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="975.8" y="485" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="978.82" y="495.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="956.6" y="501" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="959.56" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="979.3" y="453" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="982.33" y="463.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.06%)</title><rect x="1200.0" y="597" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1202.99" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (111,111,110 samples, 0.70%)</title><rect x="925.0" y="741" width="9.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="928.04" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (282,828,280 samples, 1.78%)</title><rect x="341.0" y="741" width="24.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="343.99" y="751.5" >d..</text>
+</g>
+<g >
+<title>ext4_read_block_bitmap_nowait (10,101,010 samples, 0.06%)</title><rect x="587.0" y="469" width="0.9" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="590.04" y="479.5" ></text>
+</g>
+<g >
+<title>git_repository_open_ext (131,313,130 samples, 0.82%)</title><rect x="756.0" y="789" width="11.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="759.04" y="799.5" ></text>
+</g>
+<g >
+<title>rm_rf (3,101,010,070 samples, 19.48%)</title><rect x="169.4" y="917" width="268.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="172.37" y="927.5" >rm_rf</text>
+</g>
+<g >
+<title>ksys_write (40,404,040 samples, 0.25%)</title><rect x="1068.6" y="725" width="3.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1071.64" y="735.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="765.7" y="533" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="768.67" y="543.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="514.4" y="757" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="517.37" y="767.5" ></text>
+</g>
+<g >
+<title>dput (20,202,020 samples, 0.13%)</title><rect x="1096.7" y="645" width="1.7" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1099.66" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (40,404,040 samples, 0.25%)</title><rect x="574.8" y="581" width="3.5" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="577.78" y="591.5" ></text>
+</g>
+<g >
+<title>__sys_accept4 (40,404,040 samples, 0.25%)</title><rect x="66.0" y="805" width="3.5" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="69.04" y="815.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_bh (10,101,010 samples, 0.06%)</title><rect x="39.8" y="677" width="0.8" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="42.77" y="687.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="775.3" y="693" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="778.30" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="967.9" y="613" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="970.94" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (40,404,040 samples, 0.25%)</title><rect x="1044.1" y="613" width="3.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1047.12" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="193.9" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="196.88" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="857.6" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="860.61" y="703.5" ></text>
+</g>
+<g >
+<title>blk_mq_free_request (10,101,010 samples, 0.06%)</title><rect x="740.3" y="373" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="743.28" y="383.5" ></text>
+</g>
+<g >
+<title>tcp_done (10,101,010 samples, 0.06%)</title><rect x="1373.4" y="213" width="0.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1376.36" y="223.5" ></text>
+</g>
+<g >
+<title>sbitmap_get_shallow (10,101,010 samples, 0.06%)</title><rect x="1136.9" y="341" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="1139.94" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_rename (121,212,120 samples, 0.76%)</title><rect x="1131.7" y="629" width="10.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1134.69" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="685.1" y="613" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="688.11" y="623.5" ></text>
+</g>
+<g >
+<title>memcg_account_kmem (10,101,010 samples, 0.06%)</title><rect x="59.9" y="661" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="62.91" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="533.6" y="613" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="536.63" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="852.4" y="789" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="855.36" y="799.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1247.64" y="671.5" ></text>
+</g>
+<g >
+<title>read (30,303,030 samples, 0.19%)</title><rect x="739.4" y="661" width="2.6" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="742.40" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1098.79" y="735.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="604.6" y="565" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="607.56" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="747.3" y="613" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="750.28" y="623.5" ></text>
+</g>
+<g >
+<title>atime_needs_update (20,202,020 samples, 0.13%)</title><rect x="420.7" y="741" width="1.7" height="15.0" fill="rgb(0,202,51)" rx="2" ry="2" />
+<text x="423.67" y="751.5" ></text>
+</g>
+<g >
+<title>mt_free_rcu (10,101,010 samples, 0.06%)</title><rect x="263.1" y="469" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="266.06" y="479.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="542.4" y="821" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="545.39" y="831.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (10,101,010 samples, 0.06%)</title><rect x="363.8" y="661" width="0.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="366.76" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="978.5" y="757" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="981.45" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="440.8" y="485" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="443.81" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="148.4" y="789" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="151.35" y="799.5" ></text>
+</g>
+<g >
+<title>ip_rcv (20,202,020 samples, 0.13%)</title><rect x="12.6" y="405" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="15.63" y="415.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (10,101,010 samples, 0.06%)</title><rect x="224.5" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="227.53" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="180.7" y="357" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="183.75" y="367.5" ></text>
+</g>
+<g >
+<title>__do_sys_brk (10,101,010 samples, 0.06%)</title><rect x="429.4" y="741" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="432.43" y="751.5" ></text>
+</g>
+<g >
+<title>__find_get_block (20,202,020 samples, 0.13%)</title><rect x="617.7" y="549" width="1.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="620.69" y="559.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct (10,101,010 samples, 0.06%)</title><rect x="1035.4" y="453" width="0.8" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="1038.37" y="463.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="181.6" y="677" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="184.62" y="687.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.06%)</title><rect x="1200.0" y="581" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="1202.99" y="591.5" ></text>
+</g>
+<g >
+<title>getdents64 (50,505,050 samples, 0.32%)</title><rect x="418.9" y="853" width="4.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="421.92" y="863.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.19%)</title><rect x="611.6" y="693" width="2.6" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="614.56" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="405.8" y="629" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="408.79" y="639.5" ></text>
+</g>
+<g >
+<title>security_inode_need_killpriv (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="533" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1026.98" y="543.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (20,202,020 samples, 0.13%)</title><rect x="333.1" y="517" width="1.8" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="336.11" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="710.5" y="693" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="713.51" y="703.5" ></text>
+</g>
+<g >
+<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="531.9" y="597" width="1.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="534.88" y="607.5" ></text>
+</g>
+<g >
+<title>path_openat (40,404,040 samples, 0.25%)</title><rect x="742.9" y="565" width="3.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="745.91" y="575.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.06%)</title><rect x="948.7" y="469" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="951.68" y="479.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="726.3" y="677" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="729.27" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_es_remove_extent (20,202,020 samples, 0.13%)</title><rect x="358.5" y="581" width="1.8" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="361.50" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1326.1" y="773" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1329.08" y="783.5" ></text>
+</g>
+<g >
+<title>ksys_read (20,202,020 samples, 0.13%)</title><rect x="740.3" y="581" width="1.7" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="743.28" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="693" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1247.64" y="703.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="922.4" y="677" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="925.41" y="687.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="446.1" y="565" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="449.07" y="575.5" ></text>
+</g>
+<g >
+<title>rename (313,131,310 samples, 1.97%)</title><rect x="653.6" y="757" width="27.1" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="656.59" y="767.5" >r..</text>
+</g>
+<g >
+<title>getdents64 (20,202,020 samples, 0.13%)</title><rect x="1236.8" y="757" width="1.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1239.76" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="747.3" y="581" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="750.28" y="591.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (10,101,010 samples, 0.06%)</title><rect x="1129.9" y="565" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1132.94" y="575.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.13%)</title><rect x="31.0" y="885" width="1.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="34.02" y="895.5" ></text>
+</g>
+<g >
+<title>d_flags_for_inode (10,101,010 samples, 0.06%)</title><rect x="605.4" y="597" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="608.43" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mb_complex_scan_group (20,202,020 samples, 0.13%)</title><rect x="88.8" y="725" width="1.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="91.81" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="66.0" y="837" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="69.04" y="847.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.06%)</title><rect x="809.5" y="773" width="0.8" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="812.45" y="783.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.06%)</title><rect x="511.7" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="514.74" y="623.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="984.6" y="533" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="987.58" y="543.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="741.2" y="421" width="0.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="744.15" y="431.5" ></text>
+</g>
+<g >
+<title>fstatat64 (181,818,180 samples, 1.14%)</title><rect x="624.7" y="805" width="15.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="627.70" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="1231.5" y="597" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1234.51" y="607.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="389" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1140.82" y="399.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="217.5" y="709" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="220.53" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1189.5" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1192.48" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (30,303,030 samples, 0.19%)</title><rect x="895.3" y="773" width="2.6" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="898.27" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="157.1" y="885" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="160.11" y="895.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1098.79" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (20,202,020 samples, 0.13%)</title><rect x="1140.4" y="613" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1143.44" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="862.0" y="789" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="864.99" y="799.5" ></text>
+</g>
+<g >
+<title>_Fork (464,646,460 samples, 2.92%)</title><rect x="1273.5" y="869" width="40.3" height="15.0" fill="rgb(0,237,201)" rx="2" ry="2" />
+<text x="1276.54" y="879.5" >_Fork</text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="514.4" y="709" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="517.37" y="719.5" ></text>
+</g>
+<g >
+<title>__file_remove_privs (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="549" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1026.98" y="559.5" ></text>
+</g>
+<g >
+<title>dput (90,909,090 samples, 0.57%)</title><rect x="654.5" y="661" width="7.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="657.47" y="671.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.06%)</title><rect x="701.8" y="453" width="0.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="704.75" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="727.1" y="645" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="730.14" y="655.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="421" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1348.34" y="431.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (50,505,050 samples, 0.32%)</title><rect x="507.4" y="645" width="4.3" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="510.36" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="578.3" y="581" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="581.29" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="520.5" y="789" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="523.49" y="799.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.06%)</title><rect x="1154.5" y="597" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1157.45" y="607.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="883.0" y="661" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="886.01" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (60,606,060 samples, 0.38%)</title><rect x="820.8" y="661" width="5.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="823.84" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1169.3" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1172.34" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1183.4" y="789" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1186.35" y="799.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="984.6" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="987.58" y="655.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="229" width="1.7" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="1336.96" y="239.5" ></text>
+</g>
+<g >
+<title>git_reference_foreach_name (202,020,200 samples, 1.27%)</title><rect x="874.3" y="805" width="17.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="877.25" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.06%)</title><rect x="884.8" y="581" width="0.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="887.76" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="942.6" y="469" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="945.55" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="131.7" y="757" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="134.71" y="767.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="661" width="1.7" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1019.98" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="1193.9" y="517" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1196.86" y="527.5" ></text>
+</g>
+<g >
+<title>libjson_set_string_const_key (10,101,010 samples, 0.06%)</title><rect x="1348.0" y="885" width="0.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1350.97" y="895.5" ></text>
+</g>
+<g >
+<title>net_rx_action (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="453" width="2.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1336.08" y="463.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="909.3" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="912.28" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="594.9" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="597.92" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (40,404,040 samples, 0.25%)</title><rect x="996.8" y="597" width="3.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="999.84" y="607.5" ></text>
+</g>
+<g >
+<title>git_config_open_ondisk (30,303,030 samples, 0.19%)</title><rect x="1083.5" y="821" width="2.7" height="15.0" fill="rgb(0,205,63)" rx="2" ry="2" />
+<text x="1086.53" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="457.4" y="757" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="460.45" y="767.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="582.7" y="485" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="585.66" y="495.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="982.0" y="645" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="984.95" y="655.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="549" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1209.99" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="916.3" y="597" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="919.28" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="988.1" y="789" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="991.08" y="799.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="883.0" y="709" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="886.01" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="985.5" y="773" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="988.46" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (10,101,010 samples, 0.06%)</title><rect x="13.5" y="293" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="16.50" y="303.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="73.9" y="981" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="76.92" y="991.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="869.0" y="581" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="872.00" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (70,707,070 samples, 0.44%)</title><rect x="714.0" y="693" width="6.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="717.01" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="1264.8" y="677" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1267.78" y="687.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="156.2" y="757" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="159.23" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="611.6" y="757" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="614.56" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (464,646,460 samples, 2.92%)</title><rect x="1273.5" y="853" width="40.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1276.54" y="863.5" >ent..</text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="677" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1231.88" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="439.9" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="442.94" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1086.2" y="789" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1089.15" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (10,101,010 samples, 0.06%)</title><rect x="385.6" y="533" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="388.65" y="543.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="892.6" y="693" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="895.64" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mb_prefetch_fini (10,101,010 samples, 0.06%)</title><rect x="1174.6" y="565" width="0.9" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" />
+<text x="1177.59" y="575.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="96.7" y="837" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="99.69" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="453.9" y="645" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="456.95" y="655.5" ></text>
+</g>
+<g >
+<title>storvsc_queuecommand (10,101,010 samples, 0.06%)</title><rect x="665.9" y="309" width="0.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="668.85" y="319.5" ></text>
+</g>
+<g >
+<title>git_reference_create_matching (585,858,580 samples, 3.68%)</title><rect x="934.7" y="805" width="50.8" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="937.67" y="815.5" >git_r..</text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.06%)</title><rect x="613.3" y="677" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="616.31" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="23.1" y="933" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="26.13" y="943.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (30,303,030 samples, 0.19%)</title><rect x="793.7" y="485" width="2.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="796.69" y="495.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.06%)</title><rect x="932.0" y="389" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="935.04" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_dx_add_entry (20,202,020 samples, 0.13%)</title><rect x="1270.0" y="725" width="1.8" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="1273.04" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="725" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1235.39" y="735.5" ></text>
+</g>
+<g >
+<title>access (111,111,110 samples, 0.70%)</title><rect x="144.0" y="1013" width="9.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="146.97" y="1023.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="92.3" y="997" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="95.31" y="1007.5" ></text>
+</g>
+<g >
+<title>__blk_mq_end_request (10,101,010 samples, 0.06%)</title><rect x="740.3" y="389" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="743.28" y="399.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_free_hook (10,101,010 samples, 0.06%)</title><rect x="33.6" y="693" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="36.64" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="506.5" y="629" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="509.48" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1042.4" y="661" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1045.37" y="671.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="108.1" y="613" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="111.07" y="623.5" ></text>
+</g>
+<g >
+<title>_find_next_zero_bit (10,101,010 samples, 0.06%)</title><rect x="960.1" y="437" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="963.06" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="654.5" y="485" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="657.47" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (40,404,040 samples, 0.25%)</title><rect x="930.3" y="645" width="3.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="933.29" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="552.9" y="773" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="555.89" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1025.7" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1028.74" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="888.3" y="741" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="891.26" y="751.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.06%)</title><rect x="681.6" y="821" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="684.61" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (30,303,030 samples, 0.19%)</title><rect x="266.6" y="565" width="2.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="269.56" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1123.8" y="517" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1126.81" y="527.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.06%)</title><rect x="468.8" y="485" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="471.83" y="495.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="970.6" y="533" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="973.57" y="543.5" ></text>
+</g>
+<g >
+<title>evict (282,828,280 samples, 1.78%)</title><rect x="277.9" y="613" width="24.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="280.94" y="623.5" >e..</text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="326.1" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="329.10" y="623.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="701.8" y="485" width="0.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="704.75" y="495.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="344.5" y="629" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="347.49" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="760.4" y="725" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="763.42" y="735.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (20,202,020 samples, 0.13%)</title><rect x="665.9" y="389" width="1.7" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="668.85" y="399.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="629" width="4.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1380.74" y="639.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="653.6" y="645" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="656.59" y="655.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.06%)</title><rect x="1144.8" y="677" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="1147.82" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.06%)</title><rect x="81.8" y="853" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="84.80" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="398.8" y="741" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="401.78" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.06%)</title><rect x="90.6" y="725" width="0.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="93.56" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="773" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1235.39" y="783.5" ></text>
+</g>
+<g >
+<title>remove (50,505,050 samples, 0.32%)</title><rect x="404.0" y="821" width="4.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="407.04" y="831.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="645" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1262.53" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="770.1" y="581" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="773.05" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (121,212,120 samples, 0.76%)</title><rect x="695.6" y="693" width="10.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="698.62" y="703.5" ></text>
+</g>
+<g >
+<title>lookup_dcache (10,101,010 samples, 0.06%)</title><rect x="662.3" y="645" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="665.35" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (10,101,010 samples, 0.06%)</title><rect x="986.3" y="533" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="989.33" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="967.9" y="645" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="970.94" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (171,717,170 samples, 1.08%)</title><rect x="196.5" y="645" width="14.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="199.51" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="798.1" y="741" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="801.07" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (30,303,030 samples, 0.19%)</title><rect x="1270.0" y="741" width="2.7" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1273.04" y="751.5" ></text>
+</g>
+<g >
+<title>truncate_cleanup_folio (10,101,010 samples, 0.06%)</title><rect x="818.2" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="821.21" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (10,101,010 samples, 0.06%)</title><rect x="1001.2" y="501" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1004.22" y="511.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (40,404,040 samples, 0.25%)</title><rect x="466.2" y="629" width="3.5" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="469.21" y="639.5" ></text>
+</g>
+<g >
+<title>git_reference_symbolic_create_matching (404,040,400 samples, 2.54%)</title><rect x="768.3" y="805" width="35.0" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="771.30" y="815.5" >gi..</text>
+</g>
+<g >
+<title>do_symlinkat (30,303,030 samples, 0.19%)</title><rect x="1060.8" y="725" width="2.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1063.76" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1263.0" y="837" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1266.03" y="847.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.06%)</title><rect x="1356.7" y="789" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1359.73" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="184.3" y="517" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="187.25" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="592.3" y="581" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="595.30" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="515.2" y="773" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="518.24" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="940.8" y="629" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="943.80" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_brk (10,101,010 samples, 0.06%)</title><rect x="328.7" y="645" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="331.73" y="655.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1344.5" y="741" width="1.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1347.47" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="770.1" y="629" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="773.05" y="639.5" ></text>
+</g>
+<g >
+<title>fsnotify (10,101,010 samples, 0.06%)</title><rect x="103.7" y="853" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="106.69" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="664.1" y="581" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="667.10" y="591.5" ></text>
+</g>
+<g >
+<title>rename (131,313,130 samples, 0.82%)</title><rect x="786.7" y="741" width="11.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="789.69" y="751.5" ></text>
+</g>
+<g >
+<title>inflateEnd (10,101,010 samples, 0.06%)</title><rect x="526.6" y="757" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="529.62" y="767.5" ></text>
+</g>
+<g >
+<title>__es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="841.0" y="533" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="843.98" y="543.5" ></text>
+</g>
+<g >
+<title>free_rb_tree_fname (10,101,010 samples, 0.06%)</title><rect x="327.0" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="329.98" y="687.5" ></text>
+</g>
+<g >
+<title>__d_alloc (10,101,010 samples, 0.06%)</title><rect x="146.6" y="805" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="149.60" y="815.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.13%)</title><rect x="433.8" y="661" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="436.81" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (20,202,020 samples, 0.13%)</title><rect x="675.5" y="565" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="678.48" y="575.5" ></text>
+</g>
+<g >
+<title>git_config_free (70,707,070 samples, 0.44%)</title><rect x="159.7" y="853" width="6.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="162.73" y="863.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="748.2" y="549" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="751.16" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.19%)</title><rect x="266.6" y="597" width="2.6" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="269.56" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1122.9" y="565" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1125.93" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="802.4" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="805.45" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1258.7" y="645" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1261.65" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="965.3" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="968.32" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (20,202,020 samples, 0.13%)</title><rect x="1229.8" y="629" width="1.7" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="1232.76" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="851.5" y="645" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="854.48" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="168.5" y="821" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="171.49" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="767.4" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="770.42" y="735.5" ></text>
+</g>
+<g >
+<title>log_entry_start (50,505,050 samples, 0.32%)</title><rect x="555.5" y="901" width="4.4" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="558.52" y="911.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (20,202,020 samples, 0.13%)</title><rect x="665.9" y="469" width="1.7" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="668.85" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_superblock_csum_set (10,101,010 samples, 0.06%)</title><rect x="176.4" y="501" width="0.8" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" />
+<text x="179.37" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_match (10,101,010 samples, 0.06%)</title><rect x="469.7" y="613" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="472.71" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="491.6" y="741" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="494.60" y="751.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="782.3" y="581" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="785.31" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (10,101,010 samples, 0.06%)</title><rect x="722.8" y="693" width="0.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="725.77" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (363,636,360 samples, 2.28%)</title><rect x="563.4" y="725" width="31.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="566.40" y="735.5" >do..</text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="189.5" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="192.51" y="527.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="663.2" y="613" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="666.22" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1241.1" y="629" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1244.14" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="691.2" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="694.24" y="655.5" ></text>
+</g>
+<g >
+<title>mod_node_page_state (10,101,010 samples, 0.06%)</title><rect x="263.1" y="373" width="0.8" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="266.06" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_fc_del (10,101,010 samples, 0.06%)</title><rect x="927.7" y="581" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="930.66" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="741" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1248.52" y="751.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="565" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1108.42" y="575.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.06%)</title><rect x="971.4" y="453" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="974.45" y="463.5" ></text>
+</g>
+<g >
+<title>lockref_get_not_dead (10,101,010 samples, 0.06%)</title><rect x="944.3" y="453" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="947.30" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1223.6" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1226.63" y="703.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1127.3" y="405" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1130.31" y="415.5" ></text>
+</g>
+<g >
+<title>__block_commit_write (10,101,010 samples, 0.06%)</title><rect x="517.0" y="597" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="519.99" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="863.7" y="629" width="2.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="866.74" y="639.5" ></text>
+</g>
+<g >
+<title>release_sock (30,303,030 samples, 0.19%)</title><rect x="1341.8" y="773" width="2.7" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1344.84" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_io_submit (10,101,010 samples, 0.06%)</title><rect x="792.8" y="485" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="795.82" y="495.5" ></text>
+</g>
+<g >
+<title>str2hashbuf_signed (10,101,010 samples, 0.06%)</title><rect x="620.3" y="581" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="623.32" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="507.4" y="549" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="510.36" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="416.3" y="661" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="419.29" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="655.3" y="565" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="658.34" y="575.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (101,010,100 samples, 0.63%)</title><rect x="1122.1" y="645" width="8.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1125.06" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="964.4" y="469" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="967.44" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (373,737,370 samples, 2.35%)</title><rect x="562.5" y="773" width="32.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="565.53" y="783.5" >[l..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.63%)</title><rect x="1368.1" y="901" width="8.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1371.11" y="911.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="726.3" y="581" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="729.27" y="591.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="1102.8" y="421" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1105.79" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="485.5" y="533" width="0.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="488.47" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (212,121,210 samples, 1.33%)</title><rect x="45.0" y="821" width="18.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="48.03" y="831.5" ></text>
+</g>
+<g >
+<title>do_softirq (40,404,040 samples, 0.25%)</title><rect x="1363.7" y="501" width="3.5" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1366.73" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="80.1" y="773" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="83.05" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="203.5" y="549" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="206.52" y="559.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="966.2" y="661" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="969.19" y="671.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="750.8" y="565" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="753.79" y="575.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="373.4" y="629" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="376.39" y="639.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="517" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1209.99" y="527.5" ></text>
+</g>
+<g >
+<title>down_write (10,101,010 samples, 0.06%)</title><rect x="601.9" y="661" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="604.93" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="475.8" y="725" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="478.84" y="735.5" ></text>
+</g>
+<g >
+<title>__slab_free (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="629" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="1363.23" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="762.2" y="661" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="765.17" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="84.4" y="677" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="87.43" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1217.00" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="645.7" y="613" width="1.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="648.71" y="623.5" ></text>
+</g>
+<g >
+<title>git_config_iterator_glob_new (20,202,020 samples, 0.13%)</title><rect x="828.7" y="821" width="1.8" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="831.72" y="831.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="1363.7" y="357" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1366.73" y="367.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="980.2" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="983.20" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (10,101,010 samples, 0.06%)</title><rect x="1097.5" y="549" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="1100.54" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (101,010,100 samples, 0.63%)</title><rect x="1368.1" y="853" width="8.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1371.11" y="863.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="107.2" y="773" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="110.20" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="936.4" y="613" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="939.42" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (90,909,090 samples, 0.57%)</title><rect x="665.9" y="533" width="7.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="668.85" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="821.7" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="824.71" y="623.5" ></text>
+</g>
+<g >
+<title>down_read_trylock (10,101,010 samples, 0.06%)</title><rect x="164.1" y="757" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="167.11" y="767.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="764.8" y="453" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="767.80" y="463.5" ></text>
+</g>
+<g >
+<title>truncate_cleanup_folio (10,101,010 samples, 0.06%)</title><rect x="464.5" y="581" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="467.45" y="591.5" ></text>
+</g>
+<g >
+<title>scsi_dispatch_cmd (20,202,020 samples, 0.13%)</title><rect x="1133.4" y="325" width="1.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1136.44" y="335.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="585.3" y="517" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="588.29" y="527.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="730.6" y="581" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="733.65" y="591.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (20,202,020 samples, 0.13%)</title><rect x="1096.7" y="629" width="1.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1099.66" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="757.8" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="760.79" y="687.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="546.8" y="661" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="549.76" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="296.3" y="405" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="299.33" y="415.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1114.2" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1117.18" y="751.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="853" width="1.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1349.22" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (20,202,020 samples, 0.13%)</title><rect x="703.5" y="469" width="1.8" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="706.50" y="479.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="638.7" y="661" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="641.71" y="671.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="80.9" y="805" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="83.93" y="815.5" ></text>
+</g>
+<g >
+<title>rwsem_optimistic_spin (10,101,010 samples, 0.06%)</title><rect x="601.9" y="629" width="0.9" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="604.93" y="639.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="1199.1" y="629" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="1202.11" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="1193.0" y="645" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1195.98" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="250.8" y="581" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="253.80" y="591.5" ></text>
+</g>
+<g >
+<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="364.6" y="629" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="367.63" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_journal_check_start (10,101,010 samples, 0.06%)</title><rect x="202.6" y="533" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="205.64" y="543.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="525.7" y="549" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="528.75" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="518.7" y="789" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="521.74" y="799.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="241.2" y="629" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="244.17" y="639.5" ></text>
+</g>
+<g >
+<title>git_repository_open_ext (242,424,240 samples, 1.52%)</title><rect x="1242.9" y="869" width="21.0" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1245.89" y="879.5" ></text>
+</g>
+<g >
+<title>mas_find (10,101,010 samples, 0.06%)</title><rect x="328.7" y="581" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="331.73" y="591.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (10,101,010 samples, 0.06%)</title><rect x="930.3" y="501" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="933.29" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (70,707,070 samples, 0.44%)</title><rect x="380.4" y="629" width="6.1" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="383.39" y="639.5" ></text>
+</g>
+<g >
+<title>fdopendir (20,202,020 samples, 0.13%)</title><rect x="329.6" y="805" width="1.8" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="332.61" y="815.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="1183.4" y="629" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1186.35" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="504.7" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="507.73" y="751.5" ></text>
+</g>
+<g >
+<title>git_reference_normalize_name (10,101,010 samples, 0.06%)</title><rect x="872.5" y="789" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="875.50" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="693" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1243.27" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="608.9" y="757" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="611.93" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="203.5" y="501" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="206.52" y="511.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.06%)</title><rect x="249.9" y="581" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="252.92" y="591.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (40,404,040 samples, 0.25%)</title><rect x="11.8" y="821" width="3.5" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="14.75" y="831.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1253.4" y="757" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1256.40" y="767.5" ></text>
+</g>
+<g >
+<title>ip_output (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1348.34" y="703.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="765.7" y="469" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="768.67" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="228.0" y="549" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="231.03" y="559.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="795.4" y="357" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="798.44" y="367.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1197.73" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="668.5" y="389" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="671.48" y="399.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="707.9" y="533" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="710.88" y="543.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="1258.7" y="693" width="0.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1261.65" y="703.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="629" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1231.88" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (80,808,080 samples, 0.51%)</title><rect x="293.7" y="549" width="7.0" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="296.71" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1222.8" y="709" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1225.75" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1263.0" y="853" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1266.03" y="863.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1356.7" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1359.73" y="767.5" ></text>
+</g>
+<g >
+<title>filename_lookup (40,404,040 samples, 0.25%)</title><rect x="941.7" y="549" width="3.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="944.68" y="559.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (20,202,020 samples, 0.13%)</title><rect x="1372.5" y="293" width="1.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1375.49" y="303.5" ></text>
+</g>
+<g >
+<title>git_index_add (121,212,120 samples, 0.76%)</title><rect x="529.3" y="853" width="10.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="532.25" y="863.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="1196.5" y="677" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1199.48" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="750.8" y="597" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="753.79" y="607.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.06%)</title><rect x="714.9" y="437" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="717.89" y="447.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="678.1" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="681.11" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="905.8" y="533" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="908.77" y="543.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="853.2" y="709" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="856.24" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="175.5" y="517" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="178.49" y="527.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="524.9" y="741" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="527.87" y="751.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="192.1" y="661" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="195.13" y="671.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="834.8" y="645" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="837.85" y="655.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="1141.3" y="549" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="1144.32" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="802.4" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="805.45" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="979.3" y="565" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="982.33" y="575.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="645" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1022.61" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1029.2" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1032.24" y="559.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="1143.9" y="645" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1146.95" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="415.4" y="645" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="418.42" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="463.6" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="466.58" y="543.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.06%)</title><rect x="822.6" y="357" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="825.59" y="367.5" ></text>
+</g>
+<g >
+<title>__sys_connect (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="853" width="12.2" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1379.87" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.06%)</title><rect x="965.3" y="581" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="968.32" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="835.7" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="838.72" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.06%)</title><rect x="299.0" y="501" width="0.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="301.96" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="414.5" y="645" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="417.54" y="655.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="506.5" y="677" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="509.48" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="496.0" y="693" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="498.98" y="703.5" ></text>
+</g>
+<g >
+<title>pipe_release (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="757" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1319.45" y="767.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (40,404,040 samples, 0.25%)</title><rect x="1101.0" y="469" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1104.04" y="479.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.06%)</title><rect x="591.4" y="453" width="0.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="594.42" y="463.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="726.3" y="613" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="729.27" y="623.5" ></text>
+</g>
+<g >
+<title>sk_destruct (10,101,010 samples, 0.06%)</title><rect x="1376.0" y="709" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="1378.99" y="719.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="484.6" y="613" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="487.59" y="623.5" ></text>
+</g>
+<g >
+<title>__es_delayed_clu (10,101,010 samples, 0.06%)</title><rect x="1164.1" y="597" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1167.09" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="964.4" y="485" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="967.44" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_es_delayed_clu (10,101,010 samples, 0.06%)</title><rect x="1161.5" y="613" width="0.8" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1164.46" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (313,131,310 samples, 1.97%)</title><rect x="653.6" y="709" width="27.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="656.59" y="719.5" >x..</text>
+</g>
+<g >
+<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="315.6" y="757" width="5.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="318.60" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="984.6" y="581" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="987.58" y="591.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.06%)</title><rect x="918.9" y="565" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="921.91" y="575.5" ></text>
+</g>
+<g >
+<title>storvsc_on_channel_callback (10,101,010 samples, 0.06%)</title><rect x="631.7" y="517" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="634.70" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.06%)</title><rect x="1264.8" y="613" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1267.78" y="623.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="254.3" y="581" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="257.30" y="591.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="437" width="0.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="1347.47" y="447.5" ></text>
+</g>
+<g >
+<title>getdents64 (10,101,010 samples, 0.06%)</title><rect x="680.7" y="805" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="683.74" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (40,404,040 samples, 0.25%)</title><rect x="274.4" y="597" width="3.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="277.44" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1087.9" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1090.91" y="719.5" ></text>
+</g>
+<g >
+<title>ksys_read (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="789" width="1.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1322.95" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="727.1" y="693" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="730.14" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (50,505,050 samples, 0.32%)</title><rect x="411.0" y="693" width="4.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="414.04" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="942.6" y="437" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="945.55" y="447.5" ></text>
+</g>
+<g >
+<title>alloc_pages (10,101,010 samples, 0.06%)</title><rect x="926.8" y="485" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="929.79" y="495.5" ></text>
+</g>
+<g >
+<title>__blk_mq_get_tag (10,101,010 samples, 0.06%)</title><rect x="1136.9" y="373" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1139.94" y="383.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="784.9" y="517" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="787.94" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="777.1" y="677" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="780.06" y="687.5" ></text>
+</g>
+<g >
+<title>libjson_set_internal (10,101,010 samples, 0.06%)</title><rect x="1348.8" y="885" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1351.85" y="895.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="613" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1241.52" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="1264.8" y="661" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1267.78" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (20,202,020 samples, 0.13%)</title><rect x="177.2" y="517" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="180.25" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (252,525,250 samples, 1.59%)</title><rect x="688.6" y="725" width="21.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="691.62" y="735.5" >[..</text>
+</g>
+<g >
+<title>tcp_stream_alloc_skb (10,101,010 samples, 0.06%)</title><rect x="1336.6" y="725" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1339.59" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="112.4" y="725" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="115.45" y="735.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1250.8" y="629" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1253.77" y="639.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="780.6" y="597" width="1.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="783.56" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (282,828,280 samples, 1.78%)</title><rect x="341.0" y="709" width="24.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="343.99" y="719.5" >_..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="746.4" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="749.41" y="687.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.06%)</title><rect x="17.9" y="949" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="20.88" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1123.8" y="549" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1126.81" y="559.5" ></text>
+</g>
+<g >
+<title>submit_bio (10,101,010 samples, 0.06%)</title><rect x="466.2" y="533" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="469.21" y="543.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="940.8" y="533" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="943.80" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="830.5" y="821" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="833.47" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1029.61" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="661" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1243.27" y="671.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="341.0" y="597" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="343.99" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="880.4" y="485" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="883.38" y="495.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="939.9" y="485" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="942.92" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="863.7" y="661" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="866.74" y="671.5" ></text>
+</g>
+<g >
+<title>remove (202,020,200 samples, 1.27%)</title><rect x="195.6" y="725" width="17.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="198.63" y="735.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="533" width="4.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1380.74" y="543.5" ></text>
+</g>
+<g >
+<title>filemap_flush (40,404,040 samples, 0.25%)</title><rect x="466.2" y="645" width="3.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="469.21" y="655.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="439.9" y="533" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="442.94" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.70%)</title><rect x="32.8" y="853" width="9.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="35.77" y="863.5" ></text>
+</g>
+<g >
+<title>unlink (60,606,060 samples, 0.38%)</title><rect x="321.7" y="757" width="5.3" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="324.73" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (20,202,020 samples, 0.13%)</title><rect x="1264.8" y="741" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1267.78" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="552.9" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="555.89" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1085.3" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1088.28" y="703.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_send (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="949" width="7.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1363.23" y="959.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="453.9" y="709" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="456.95" y="719.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="685.1" y="629" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="688.11" y="639.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="357" width="5.2" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1372.86" y="367.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="834.0" y="501" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="836.97" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.06%)</title><rect x="933.8" y="645" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="936.79" y="655.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="649.2" y="757" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="652.21" y="767.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="185.1" y="469" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="188.13" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (30,303,030 samples, 0.19%)</title><rect x="952.2" y="565" width="2.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="955.18" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="648.3" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="651.34" y="735.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="749.9" y="517" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="752.91" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="763.9" y="597" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="766.92" y="607.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="389" width="4.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1380.74" y="399.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (50,505,050 samples, 0.32%)</title><rect x="959.2" y="469" width="4.4" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="962.19" y="479.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="747.3" y="661" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="750.28" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="249.9" y="437" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="252.92" y="447.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (20,202,020 samples, 0.13%)</title><rect x="988.1" y="645" width="1.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="991.08" y="655.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="663.2" y="517" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="666.22" y="527.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="579.2" y="565" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="582.16" y="575.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="837" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1322.07" y="847.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="629" width="1.7" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1389.50" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="1216.6" y="629" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1219.62" y="639.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="1125.6" y="453" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1128.56" y="463.5" ></text>
+</g>
+<g >
+<title>insert_inode_locked (10,101,010 samples, 0.06%)</title><rect x="1180.7" y="693" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="1183.72" y="703.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="453" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1014.73" y="463.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1234.1" y="709" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1237.14" y="719.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited (10,101,010 samples, 0.06%)</title><rect x="775.3" y="533" width="0.9" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="778.30" y="543.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="746.4" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="749.41" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_chmod (20,202,020 samples, 0.13%)</title><rect x="1011.7" y="725" width="1.8" height="15.0" fill="rgb(0,237,201)" rx="2" ry="2" />
+<text x="1014.73" y="735.5" ></text>
+</g>
+<g >
+<title>strerror_l (10,101,010 samples, 0.06%)</title><rect x="690.4" y="645" width="0.8" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="693.37" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="903.1" y="677" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="906.15" y="687.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="732.4" y="549" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="735.40" y="559.5" ></text>
+</g>
+<g >
+<title>git_revparse_single (30,303,030 samples, 0.19%)</title><rect x="552.9" y="901" width="2.6" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="555.89" y="911.5" ></text>
+</g>
+<g >
+<title>jsonrpc_set_version (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="901" width="0.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1392.12" y="911.5" ></text>
+</g>
+<g >
+<title>vfs_write (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="613" width="3.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1091.78" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="327.0" y="773" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="329.98" y="783.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="782.3" y="549" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="785.31" y="559.5" ></text>
+</g>
+<g >
+<title>tcp_send_fin (70,707,070 samples, 0.44%)</title><rect x="1369.9" y="725" width="6.1" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1372.86" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="1036.2" y="421" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1039.24" y="431.5" ></text>
+</g>
+<g >
+<title>file_modified (10,101,010 samples, 0.06%)</title><rect x="540.6" y="645" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="543.63" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="564.3" y="613" width="1.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="567.28" y="623.5" ></text>
+</g>
+<g >
+<title>out_of_line_wait_on_bit (10,101,010 samples, 0.06%)</title><rect x="108.1" y="757" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="111.07" y="767.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.06%)</title><rect x="1283.2" y="613" width="0.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="1286.17" y="623.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="504.7" y="661" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="507.73" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_rename (181,818,180 samples, 1.14%)</title><rect x="663.2" y="661" width="15.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="666.22" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="446.9" y="741" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="449.94" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (20,202,020 samples, 0.13%)</title><rect x="12.6" y="309" width="1.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="15.63" y="319.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (101,010,100 samples, 0.63%)</title><rect x="599.3" y="709" width="8.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="602.30" y="719.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="80.1" y="741" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="83.05" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="645" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1014.73" y="655.5" ></text>
+</g>
+<g >
+<title>__folio_put (10,101,010 samples, 0.06%)</title><rect x="1129.9" y="533" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1132.94" y="543.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="877.8" y="501" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="880.75" y="511.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="562.5" y="709" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="565.53" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="469.7" y="629" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="472.71" y="639.5" ></text>
+</g>
+<g >
+<title>mkdir (161,616,160 samples, 1.02%)</title><rect x="949.6" y="693" width="14.0" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" />
+<text x="952.56" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="72.2" y="789" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="75.17" y="799.5" ></text>
+</g>
+<g >
+<title>ksys_write (30,303,030 samples, 0.19%)</title><rect x="433.8" y="709" width="2.6" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="436.81" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (40,404,040 samples, 0.25%)</title><rect x="701.8" y="533" width="3.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="704.75" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="486.3" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="489.35" y="703.5" ></text>
+</g>
+<g >
+<title>list_lru_del_obj (10,101,010 samples, 0.06%)</title><rect x="786.7" y="597" width="0.9" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="789.69" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="1057.3" y="629" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1060.26" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="289.3" y="485" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="292.33" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (20,202,020 samples, 0.13%)</title><rect x="395.3" y="613" width="1.7" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="398.28" y="623.5" ></text>
+</g>
+<g >
+<title>sk_free (10,101,010 samples, 0.06%)</title><rect x="1376.0" y="741" width="0.9" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="1378.99" y="751.5" ></text>
+</g>
+<g >
+<title>flush_tlb_mm_range (10,101,010 samples, 0.06%)</title><rect x="398.8" y="613" width="0.9" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="401.78" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.13%)</title><rect x="670.2" y="469" width="1.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="673.23" y="479.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.06%)</title><rect x="653.6" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="656.59" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.82%)</title><rect x="245.5" y="741" width="11.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="248.55" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.06%)</title><rect x="834.0" y="629" width="0.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="836.97" y="639.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="263.1" y="597" width="0.8" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="266.06" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1250.8" y="677" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1253.77" y="687.5" ></text>
+</g>
+<g >
+<title>unlink (70,707,070 samples, 0.44%)</title><rect x="305.1" y="741" width="6.1" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="308.09" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="774.4" y="453" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="777.43" y="463.5" ></text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.13%)</title><rect x="222.8" y="629" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="225.78" y="639.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.19%)</title><rect x="988.1" y="741" width="2.6" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="991.08" y="751.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range (30,303,030 samples, 0.19%)</title><rect x="25.8" y="821" width="2.6" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="28.76" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="735.9" y="693" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="738.90" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="667.6" y="485" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="670.60" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_read_inode_bitmap (10,101,010 samples, 0.06%)</title><rect x="119.5" y="805" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="122.45" y="815.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.06%)</title><rect x="86.2" y="725" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="89.18" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_v4_destroy_sock (10,101,010 samples, 0.06%)</title><rect x="1373.4" y="181" width="0.8" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="1376.36" y="191.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="821.7" y="549" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="824.71" y="559.5" ></text>
+</g>
+<g >
+<title>perf_event_mmap (10,101,010 samples, 0.06%)</title><rect x="241.2" y="565" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="244.17" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (121,212,120 samples, 0.76%)</title><rect x="614.2" y="725" width="10.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="617.19" y="735.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="341" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1140.82" y="351.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="724.5" y="709" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="727.52" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (525,252,520 samples, 3.30%)</title><rect x="259.6" y="725" width="45.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="262.56" y="735.5" >entr..</text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1371.6" y="213" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1374.61" y="223.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_pre_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="1017.9" y="565" width="0.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1020.86" y="575.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="663.2" y="597" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="666.22" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="904.0" y="581" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="907.02" y="591.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (10,101,010 samples, 0.06%)</title><rect x="1362.9" y="565" width="0.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1365.86" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (121,212,120 samples, 0.76%)</title><rect x="897.9" y="757" width="10.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="900.89" y="767.5" ></text>
+</g>
+<g >
+<title>lock_vma_under_rcu (10,101,010 samples, 0.06%)</title><rect x="164.1" y="773" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="167.11" y="783.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (20,202,020 samples, 0.13%)</title><rect x="527.5" y="837" width="1.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="530.50" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="721.9" y="581" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="724.89" y="591.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1027.5" y="629" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1030.49" y="639.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="966.2" y="581" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="969.19" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1236.8" y="741" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1239.76" y="751.5" ></text>
+</g>
+<g >
+<title>tzset (10,101,010 samples, 0.06%)</title><rect x="802.4" y="741" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="805.45" y="751.5" ></text>
+</g>
+<g >
+<title>path_parentat (20,202,020 samples, 0.13%)</title><rect x="460.1" y="693" width="1.7" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="463.08" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="689.5" y="597" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="692.49" y="607.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="565" width="2.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1336.08" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="975.8" y="517" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="978.82" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="324.4" y="533" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="327.35" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="430.3" y="853" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="433.30" y="863.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (40,404,040 samples, 0.25%)</title><rect x="1363.7" y="517" width="3.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1366.73" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="527.5" y="821" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="530.50" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_rename (131,313,130 samples, 0.82%)</title><rect x="1130.8" y="661" width="11.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1133.81" y="671.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="1075.6" y="661" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1078.65" y="671.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="484.6" y="661" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="487.59" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="495.1" y="757" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="498.10" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="167.6" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="170.61" y="799.5" ></text>
+</g>
+<g >
+<title>ci_run_git_repo (13,585,858,450 samples, 85.34%)</title><rect x="154.5" y="949" width="1177.7" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="157.48" y="959.5" >ci_run_git_repo</text>
+</g>
+<g >
+<title>ext4_getblk (40,404,040 samples, 0.25%)</title><rect x="1044.1" y="629" width="3.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1047.12" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1096.7" y="533" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1099.66" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_delayed_block (10,101,010 samples, 0.06%)</title><rect x="834.0" y="517" width="0.8" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="836.97" y="527.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="757" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1332.58" y="767.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="661" width="1.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1389.50" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="383.0" y="549" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="386.02" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (111,111,110 samples, 0.70%)</title><rect x="696.5" y="613" width="9.6" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="699.50" y="623.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.06%)</title><rect x="496.0" y="661" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="498.98" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (202,020,200 samples, 1.27%)</title><rect x="45.9" y="789" width="17.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="48.90" y="799.5" ></text>
+</g>
+<g >
+<title>do_accept (40,404,040 samples, 0.25%)</title><rect x="66.0" y="789" width="3.5" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="69.04" y="799.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="735.9" y="629" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="738.90" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="879.5" y="645" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="882.51" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (30,303,030 samples, 0.19%)</title><rect x="1328.7" y="869" width="2.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1331.71" y="879.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="528.4" y="629" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="531.38" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="22.3" y="949" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="25.26" y="959.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1249.9" y="709" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1252.90" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="902.3" y="613" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="905.27" y="623.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="1327.0" y="725" width="0.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="1329.95" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (111,111,110 samples, 0.70%)</title><rect x="530.1" y="789" width="9.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="533.13" y="799.5" ></text>
+</g>
+<g >
+<title>atime_needs_update (10,101,010 samples, 0.06%)</title><rect x="253.4" y="645" width="0.9" height="15.0" fill="rgb(0,202,51)" rx="2" ry="2" />
+<text x="256.43" y="655.5" ></text>
+</g>
+<g >
+<title>libjson_set_string_const_key (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="885" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1392.12" y="895.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="17.9" y="933" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="20.88" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (10,101,010 samples, 0.06%)</title><rect x="342.7" y="581" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="345.74" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="553.8" y="693" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="556.77" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="180.7" y="373" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="183.75" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (40,404,040 samples, 0.25%)</title><rect x="1044.1" y="597" width="3.5" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1047.12" y="607.5" ></text>
+</g>
+<g >
+<title>memcg_list_lru_alloc (10,101,010 samples, 0.06%)</title><rect x="633.5" y="533" width="0.8" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="636.45" y="543.5" ></text>
+</g>
+<g >
+<title>__blk_mq_free_request (10,101,010 samples, 0.06%)</title><rect x="663.2" y="421" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="666.22" y="431.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="645" width="4.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1380.74" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (30,303,030 samples, 0.19%)</title><rect x="539.8" y="661" width="2.6" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="542.76" y="671.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="876.9" y="581" width="1.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="879.88" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="293" width="2.6" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1336.08" y="303.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="657.1" y="501" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="660.09" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="539.8" y="805" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="542.76" y="815.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="408.4" y="853" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="411.41" y="863.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="963.6" y="613" width="1.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="966.57" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="784.9" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="787.94" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="727.1" y="725" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="730.14" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (313,131,310 samples, 1.97%)</title><rect x="653.6" y="693" width="27.1" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="656.59" y="703.5" >_..</text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="1167.6" y="565" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1170.59" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="234.2" y="549" width="1.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="237.16" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="747.3" y="645" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="750.28" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="1256.0" y="661" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1259.03" y="671.5" ></text>
+</g>
+<g >
+<title>file_modified (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="565" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1026.98" y="575.5" ></text>
+</g>
+<g >
+<title>realloc (20,202,020 samples, 0.13%)</title><rect x="1203.5" y="661" width="1.7" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1206.49" y="671.5" ></text>
+</g>
+<g >
+<title>do_rmdir (60,606,060 samples, 0.38%)</title><rect x="423.3" y="757" width="5.3" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="426.30" y="767.5" ></text>
+</g>
+<g >
+<title>list_lru_add_obj (10,101,010 samples, 0.06%)</title><rect x="971.4" y="485" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="974.45" y="495.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (30,303,030 samples, 0.19%)</title><rect x="1133.4" y="453" width="2.7" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="1136.44" y="463.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="916.3" y="661" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="919.28" y="671.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="580.9" y="565" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="583.91" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_read_inode_bitmap (10,101,010 samples, 0.06%)</title><rect x="80.9" y="837" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="83.93" y="847.5" ></text>
+</g>
+<g >
+<title>memcg_account_kmem (10,101,010 samples, 0.06%)</title><rect x="59.0" y="677" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="62.04" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="904.0" y="533" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="907.02" y="543.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (40,404,040 samples, 0.25%)</title><rect x="617.7" y="629" width="3.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="620.69" y="639.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="148.4" y="757" width="0.8" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="151.35" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="433.8" y="773" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="436.81" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (50,505,050 samples, 0.32%)</title><rect x="432.1" y="837" width="4.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="435.06" y="847.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="661" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1014.73" y="671.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="611.6" y="613" width="0.8" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="614.56" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="650.1" y="645" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="653.09" y="655.5" ></text>
+</g>
+<g >
+<title>__sys_connect_file (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="837" width="12.2" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" />
+<text x="1379.87" y="847.5" ></text>
+</g>
+<g >
+<title>dentry_free (10,101,010 samples, 0.06%)</title><rect x="1122.1" y="629" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1125.06" y="639.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (90,909,090 samples, 0.57%)</title><rect x="1041.5" y="725" width="7.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1044.50" y="735.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="1242.0" y="581" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1245.02" y="591.5" ></text>
+</g>
+<g >
+<title>hook_file_open (10,101,010 samples, 0.06%)</title><rect x="744.7" y="501" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="747.66" y="511.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="476.7" y="565" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="479.71" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (333,333,330 samples, 2.09%)</title><rect x="564.3" y="645" width="28.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="567.28" y="655.5" >ex..</text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="798.9" y="725" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="801.95" y="735.5" ></text>
+</g>
+<g >
+<title>mnt_drop_write (10,101,010 samples, 0.06%)</title><rect x="679.0" y="677" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="681.98" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (40,404,040 samples, 0.25%)</title><rect x="230.7" y="581" width="3.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="233.66" y="591.5" ></text>
+</g>
+<g >
+<title>save_fpregs_to_fpstate (10,101,010 samples, 0.06%)</title><rect x="932.0" y="373" width="0.9" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" />
+<text x="935.04" y="383.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="258.7" y="677" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="261.68" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (60,606,060 samples, 0.38%)</title><rect x="315.6" y="709" width="5.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="318.60" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1042.4" y="581" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1045.37" y="591.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (20,202,020 samples, 0.13%)</title><rect x="12.6" y="581" width="1.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="15.63" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (70,707,070 samples, 0.44%)</title><rect x="247.3" y="661" width="6.1" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="250.30" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="533.6" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="536.63" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (60,606,060 samples, 0.38%)</title><rect x="466.2" y="693" width="5.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="469.21" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="70.4" y="885" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="73.42" y="895.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="249.9" y="517" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="252.92" y="527.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_extent (60,606,060 samples, 0.38%)</title><rect x="667.6" y="501" width="5.3" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="670.60" y="511.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="922.4" y="709" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="925.41" y="719.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="714.9" y="453" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="717.89" y="463.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="757" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1188.98" y="767.5" ></text>
+</g>
+<g >
+<title>lockref_get_not_dead (10,101,010 samples, 0.06%)</title><rect x="809.5" y="613" width="0.8" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="812.45" y="623.5" ></text>
+</g>
+<g >
+<title>wake_up_bit (10,101,010 samples, 0.06%)</title><rect x="825.2" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="828.22" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="847.1" y="597" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="850.11" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="167.6" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="170.61" y="815.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="802.4" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="805.45" y="623.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_core.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1386.5" y="453" width="0.9" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1389.50" y="463.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (90,909,090 samples, 0.57%)</title><rect x="1132.6" y="565" width="7.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1135.56" y="575.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (90,909,090 samples, 0.57%)</title><rect x="1050.3" y="677" width="7.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="1053.25" y="687.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1264.8" y="629" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="1267.78" y="639.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="601.1" y="645" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="604.05" y="655.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="309.5" y="629" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="312.47" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="451.3" y="709" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="454.32" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="613" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1262.53" y="623.5" ></text>
+</g>
+<g >
+<title>folio_wait_bit (20,202,020 samples, 0.13%)</title><rect x="659.7" y="501" width="1.8" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="662.72" y="511.5" ></text>
+</g>
+<g >
+<title>ksys_write (40,404,040 samples, 0.25%)</title><rect x="1108.0" y="645" width="3.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="1111.05" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1092.3" y="677" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1095.28" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.06%)</title><rect x="591.4" y="501" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="594.42" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="487.2" y="661" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="490.22" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (333,333,330 samples, 2.09%)</title><rect x="1191.2" y="821" width="28.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1194.23" y="831.5" >[l..</text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1208.7" y="629" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1211.74" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="458.3" y="773" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="461.32" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.06%)</title><rect x="286.7" y="565" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="289.70" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="174.6" y="517" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="177.62" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="979.3" y="405" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="982.33" y="415.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="1235.9" y="661" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1238.89" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="709" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1188.98" y="719.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (30,303,030 samples, 0.19%)</title><rect x="611.6" y="773" width="2.6" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="614.56" y="783.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="905.8" y="661" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="908.77" y="671.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="789" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1319.45" y="799.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.06%)</title><rect x="484.6" y="741" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="487.59" y="751.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="123.0" y="741" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="125.96" y="751.5" ></text>
+</g>
+<g >
+<title>access (20,202,020 samples, 0.13%)</title><rect x="765.7" y="661" width="1.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="768.67" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="853.2" y="613" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="856.24" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (20,202,020 samples, 0.13%)</title><rect x="822.6" y="533" width="1.7" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="825.59" y="543.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="821" width="0.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1322.07" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="821.7" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="824.71" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="594.9" y="709" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="597.92" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (60,606,060 samples, 0.38%)</title><rect x="929.4" y="677" width="5.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="932.42" y="687.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="235.0" y="517" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="238.04" y="527.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="749.9" y="501" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="752.91" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="450.4" y="597" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="453.44" y="607.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="181.6" y="661" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="184.62" y="671.5" ></text>
+</g>
+<g >
+<title>memcmp (10,101,010 samples, 0.06%)</title><rect x="1200.9" y="549" width="0.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1203.86" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (20,202,020 samples, 0.13%)</title><rect x="237.7" y="709" width="1.7" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="240.66" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (232,323,230 samples, 1.46%)</title><rect x="1021.4" y="773" width="20.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1024.36" y="783.5" ></text>
+</g>
+<g >
+<title>jbd2_alloc (10,101,010 samples, 0.06%)</title><rect x="926.8" y="517" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="929.79" y="527.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="975.8" y="453" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="978.82" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (2,818,181,790 samples, 17.70%)</title><rect x="559.9" y="869" width="244.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="562.90" y="879.5" >[libgit2.so.1.7.2]</text>
+</g>
+<g >
+<title>ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="677" width="1.7" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1389.50" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (212,121,210 samples, 1.33%)</title><rect x="45.0" y="837" width="18.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="48.03" y="847.5" ></text>
+</g>
+<g >
+<title>readdir64 (101,010,100 samples, 0.63%)</title><rect x="331.4" y="805" width="8.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="334.36" y="815.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="1024.9" y="725" width="0.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1027.86" y="735.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="117" width="1.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1336.96" y="127.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (121,212,120 samples, 0.76%)</title><rect x="1049.4" y="741" width="10.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1052.38" y="751.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (10,101,010 samples, 0.06%)</title><rect x="325.2" y="597" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="328.23" y="607.5" ></text>
+</g>
+<g >
+<title>iput (90,909,090 samples, 0.57%)</title><rect x="654.5" y="613" width="7.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="657.47" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (20,202,020 samples, 0.13%)</title><rect x="848.0" y="629" width="1.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="850.98" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="692.1" y="597" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="695.12" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1247.64" y="783.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="766.5" y="517" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="769.55" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="978.5" y="725" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="981.45" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (787,878,780 samples, 4.95%)</title><rect x="478.5" y="885" width="68.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="481.46" y="895.5" >[libgit..</text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1183.4" y="773" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1186.35" y="783.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="856.7" y="645" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="859.74" y="655.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="697.4" y="549" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="700.37" y="559.5" ></text>
+</g>
+<g >
+<title>git_attr_add_macro (30,303,030 samples, 0.19%)</title><rect x="497.7" y="789" width="2.7" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="500.73" y="799.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.06%)</title><rect x="188.6" y="517" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="191.63" y="527.5" ></text>
+</g>
+<g >
+<title>json_object_new_object (20,202,020 samples, 0.13%)</title><rect x="18.8" y="917" width="1.7" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="21.76" y="927.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1217.00" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_create (424,242,420 samples, 2.66%)</title><rect x="105.4" y="837" width="36.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="108.44" y="847.5" >ext..</text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="219.3" y="597" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="222.28" y="607.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="175.5" y="485" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="178.49" y="495.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1015.2" y="757" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1018.23" y="767.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="200.9" y="485" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="203.89" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="1068.6" y="789" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1071.64" y="799.5" ></text>
+</g>
+<g >
+<title>ip_local_out (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="165" width="1.7" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1336.96" y="175.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="1029.2" y="437" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1032.24" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1215.7" y="661" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1218.75" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="908.4" y="789" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="911.40" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="852.4" y="773" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="855.36" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1325.2" y="837" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1328.20" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="929.4" y="597" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="932.42" y="607.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="765.7" y="565" width="1.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="768.67" y="575.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="249.9" y="405" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="252.92" y="415.5" ></text>
+</g>
+<g >
+<title>do_readlinkat (10,101,010 samples, 0.06%)</title><rect x="757.8" y="645" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="760.79" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="805" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1361.48" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="742.0" y="661" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="745.03" y="671.5" ></text>
+</g>
+<g >
+<title>filemap_flush (20,202,020 samples, 0.13%)</title><rect x="822.6" y="613" width="1.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="825.59" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="748.2" y="581" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="751.16" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (20,202,020 samples, 0.13%)</title><rect x="880.4" y="581" width="1.7" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="883.38" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="726.3" y="661" width="0.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="729.27" y="671.5" ></text>
+</g>
+<g >
+<title>fprintf (30,303,030 samples, 0.19%)</title><rect x="1328.7" y="885" width="2.6" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1331.71" y="895.5" ></text>
+</g>
+<g >
+<title>evict (50,505,050 samples, 0.32%)</title><rect x="177.2" y="549" width="4.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="180.25" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="770.9" y="677" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="773.93" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_init_new_dir (50,505,050 samples, 0.32%)</title><rect x="701.8" y="581" width="4.3" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="704.75" y="591.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="541.5" y="565" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="544.51" y="575.5" ></text>
+</g>
+<g >
+<title>__fput (20,202,020 samples, 0.13%)</title><rect x="327.0" y="709" width="1.7" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="329.98" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (20,202,020 samples, 0.13%)</title><rect x="788.4" y="533" width="1.8" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="791.44" y="543.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="693.0" y="565" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="695.99" y="575.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="784.9" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="787.94" y="511.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (90,909,090 samples, 0.57%)</title><rect x="410.2" y="773" width="7.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="413.16" y="783.5" ></text>
+</g>
+<g >
+<title>process_measurement (10,101,010 samples, 0.06%)</title><rect x="749.0" y="549" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="752.04" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mb_prefetch (20,202,020 samples, 0.13%)</title><rect x="961.8" y="437" width="1.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="964.81" y="447.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="725" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1247.64" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="213.1" y="725" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="216.15" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_time_wait (10,101,010 samples, 0.06%)</title><rect x="38.0" y="165" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="41.02" y="175.5" ></text>
+</g>
+<g >
+<title>__strftime_l (10,101,010 samples, 0.06%)</title><rect x="17.0" y="949" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="20.01" y="959.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="504.7" y="645" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="507.73" y="655.5" ></text>
+</g>
+<g >
+<title>hook_path_unlink (10,101,010 samples, 0.06%)</title><rect x="308.6" y="645" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="311.59" y="655.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (80,808,080 samples, 0.51%)</title><rect x="760.4" y="709" width="7.0" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="763.42" y="719.5" ></text>
+</g>
+<g >
+<title>security_inode_alloc (10,101,010 samples, 0.06%)</title><rect x="989.0" y="581" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="991.96" y="591.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="524.9" y="581" width="0.8" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="527.87" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="682.5" y="805" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="685.49" y="815.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="749.0" y="629" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="752.04" y="639.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="439.9" y="565" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="442.94" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (464,646,460 samples, 2.92%)</title><rect x="640.5" y="789" width="40.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="643.46" y="799.5" >[li..</text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="311.2" y="661" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="314.22" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="439.9" y="757" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="442.94" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="974.9" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="977.95" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="707.9" y="677" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="710.88" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="535.4" y="613" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="538.38" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (464,646,460 samples, 2.92%)</title><rect x="438.2" y="853" width="40.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="441.19" y="863.5" >[li..</text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (40,404,040 samples, 0.25%)</title><rect x="466.2" y="613" width="3.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="469.21" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (171,717,170 samples, 1.08%)</title><rect x="77.4" y="965" width="14.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="80.42" y="975.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="661" width="2.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1336.08" y="671.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="318.2" y="613" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="321.22" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="809.5" y="725" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="812.45" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="620.3" y="597" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="623.32" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (60,606,060 samples, 0.38%)</title><rect x="423.3" y="789" width="5.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="426.30" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1211.4" y="741" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1214.37" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1125.6" y="549" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1128.56" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="685.1" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="688.11" y="703.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (131,313,130 samples, 0.82%)</title><rect x="460.1" y="725" width="11.4" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="463.08" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="717.5" y="517" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="720.51" y="527.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="756.0" y="629" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="759.04" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="901.4" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="904.40" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_read_inode_bitmap (10,101,010 samples, 0.06%)</title><rect x="698.2" y="565" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="701.25" y="575.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1234.1" y="725" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1237.14" y="735.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1195.6" y="789" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1198.61" y="799.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="446.1" y="661" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="449.07" y="671.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="249.9" y="421" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="252.92" y="431.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (20,202,020 samples, 0.13%)</title><rect x="566.9" y="613" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="569.90" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="772.7" y="437" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="775.68" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_create (20,202,020 samples, 0.13%)</title><rect x="988.1" y="661" width="1.7" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="991.08" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="338.4" y="581" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="341.36" y="591.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="523.1" y="645" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="526.12" y="655.5" ></text>
+</g>
+<g >
+<title>open64 (131,313,130 samples, 0.82%)</title><rect x="1049.4" y="805" width="11.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1052.38" y="815.5" ></text>
+</g>
+<g >
+<title>scsi_done (10,101,010 samples, 0.06%)</title><rect x="631.7" y="485" width="0.9" height="15.0" fill="rgb(0,205,63)" rx="2" ry="2" />
+<text x="634.70" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="979.3" y="421" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="982.33" y="431.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="789" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1243.27" y="799.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1209.99" y="623.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="91.4" y="757" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="94.43" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="298.1" y="453" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="301.08" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="755.2" y="757" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="758.16" y="767.5" ></text>
+</g>
+<g >
+<title>git_repository_config_snapshot (121,212,120 samples, 0.76%)</title><rect x="897.9" y="789" width="10.5" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="900.89" y="799.5" ></text>
+</g>
+<g >
+<title>atime_needs_update (10,101,010 samples, 0.06%)</title><rect x="885.6" y="581" width="0.9" height="15.0" fill="rgb(0,202,51)" rx="2" ry="2" />
+<text x="888.63" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="888.3" y="597" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="891.26" y="607.5" ></text>
+</g>
+<g >
+<title>ip_local_out (50,505,050 samples, 0.32%)</title><rect x="35.4" y="565" width="4.4" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="38.39" y="575.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1054.6" y="613" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1057.63" y="623.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="1094.9" y="549" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1097.91" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.06%)</title><rect x="511.7" y="629" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="514.74" y="639.5" ></text>
+</g>
+<g >
+<title>__dcgettext (10,101,010 samples, 0.06%)</title><rect x="690.4" y="629" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="693.37" y="639.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1112.4" y="741" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1115.42" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="892.6" y="757" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="895.64" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.06%)</title><rect x="508.2" y="629" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="511.24" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="527.5" y="773" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="530.50" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="1270.0" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1273.04" y="703.5" ></text>
+</g>
+<g >
+<title>hook_file_alloc_security (10,101,010 samples, 0.06%)</title><rect x="918.9" y="549" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="921.91" y="559.5" ></text>
+</g>
+<g >
+<title>mntput_no_expire (10,101,010 samples, 0.06%)</title><rect x="370.8" y="661" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="373.76" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="940.8" y="565" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="943.80" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="548.5" y="805" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="551.52" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="315.6" y="773" width="5.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="318.60" y="783.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="867.2" y="565" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="870.25" y="575.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="911.9" y="693" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="914.90" y="703.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="12.6" y="565" width="1.8" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="15.63" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (111,111,110 samples, 0.70%)</title><rect x="1201.7" y="741" width="9.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1204.74" y="751.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1322.6" y="725" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1325.58" y="735.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="156.2" y="821" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="159.23" y="831.5" ></text>
+</g>
+<g >
+<title>tcp_conn_request (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="309" width="0.8" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1390.37" y="319.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="910.2" y="773" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="913.15" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="570.4" y="549" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="573.41" y="559.5" ></text>
+</g>
+<g >
+<title>__fput_sync (90,909,090 samples, 0.57%)</title><rect x="1369.0" y="837" width="7.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1371.98" y="847.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="980.2" y="661" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="983.20" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1122.9" y="501" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1125.93" y="511.5" ></text>
+</g>
+<g >
+<title>new_inode (10,101,010 samples, 0.06%)</title><rect x="773.6" y="501" width="0.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="776.55" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (424,242,420 samples, 2.66%)</title><rect x="686.9" y="773" width="36.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="689.87" y="783.5" >[li..</text>
+</g>
+<g >
+<title>ip_output (20,202,020 samples, 0.13%)</title><rect x="12.6" y="645" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="15.63" y="655.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (20,202,020 samples, 0.13%)</title><rect x="732.4" y="581" width="1.7" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="735.40" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="397.0" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="400.03" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="177.2" y="645" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="180.25" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="74.8" y="901" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="77.80" y="911.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="485.5" y="613" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="488.47" y="623.5" ></text>
+</g>
+<g >
+<title>remove (90,909,090 samples, 0.57%)</title><rect x="184.3" y="709" width="7.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="187.25" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="774.4" y="469" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="777.43" y="479.5" ></text>
+</g>
+<g >
+<title>blkcg_set_ioprio (10,101,010 samples, 0.06%)</title><rect x="1136.1" y="469" width="0.8" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="1139.07" y="479.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1321.7" y="837" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1324.70" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="789" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1202.11" y="799.5" ></text>
+</g>
+<g >
+<title>net_rx_action (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="533" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1348.34" y="543.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="1065.1" y="613" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1068.14" y="623.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="293" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1040.99" y="303.5" ></text>
+</g>
+<g >
+<title>sbitmap_queue_get_shallow (10,101,010 samples, 0.06%)</title><rect x="1136.9" y="357" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1139.94" y="367.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="901" width="12.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1379.87" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="407.5" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="410.54" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (40,404,040 samples, 0.25%)</title><rect x="1068.6" y="693" width="3.5" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1071.64" y="703.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (10,101,010 samples, 0.06%)</title><rect x="541.5" y="581" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="544.51" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (10,101,010 samples, 0.06%)</title><rect x="817.3" y="565" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="820.34" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.19%)</title><rect x="1165.0" y="549" width="2.6" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1167.96" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mb_new_blocks (30,303,030 samples, 0.19%)</title><rect x="702.6" y="485" width="2.7" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="705.63" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="965.3" y="629" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="968.32" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (131,313,130 samples, 0.82%)</title><rect x="352.4" y="629" width="11.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="355.37" y="639.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.06%)</title><rect x="948.7" y="501" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="951.68" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_statx (30,303,030 samples, 0.19%)</title><rect x="969.7" y="613" width="2.6" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="972.70" y="623.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="544.1" y="741" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="547.14" y="751.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (50,505,050 samples, 0.32%)</title><rect x="1363.7" y="549" width="4.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1366.73" y="559.5" ></text>
+</g>
+<g >
+<title>readlink (50,505,050 samples, 0.32%)</title><rect x="490.7" y="757" width="4.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="493.72" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (505,050,500 samples, 3.17%)</title><rect x="934.7" y="773" width="43.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="937.67" y="783.5" >[lib..</text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="821" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1247.64" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.63%)</title><rect x="1104.5" y="757" width="8.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1107.54" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="830.5" y="773" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="833.47" y="783.5" ></text>
+</g>
+<g >
+<title>inode_set_flags (10,101,010 samples, 0.06%)</title><rect x="510.0" y="629" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="512.99" y="639.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.06%)</title><rect x="877.8" y="533" width="0.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="880.75" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (20,202,020 samples, 0.13%)</title><rect x="824.3" y="629" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="827.34" y="639.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="968.8" y="517" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="971.82" y="527.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (50,505,050 samples, 0.32%)</title><rect x="555.5" y="885" width="4.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="558.52" y="895.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="611.6" y="645" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="614.56" y="655.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="955.7" y="421" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="958.69" y="431.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="725" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1262.53" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (121,212,120 samples, 0.76%)</title><rect x="614.2" y="741" width="10.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="617.19" y="751.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (30,303,030 samples, 0.19%)</title><rect x="475.0" y="821" width="2.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="477.96" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="953.1" y="549" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="956.06" y="559.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="728.9" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="731.90" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="474.1" y="677" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="477.09" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="507.4" y="565" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="510.36" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (171,717,170 samples, 1.08%)</title><rect x="811.2" y="709" width="14.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="814.21" y="719.5" ></text>
+</g>
+<g >
+<title>readdir64 (10,101,010 samples, 0.06%)</title><rect x="680.7" y="821" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="683.74" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.06%)</title><rect x="834.0" y="581" width="0.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="836.97" y="591.5" ></text>
+</g>
+<g >
+<title>git_refdb_open (40,404,040 samples, 0.25%)</title><rect x="888.3" y="773" width="3.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="891.26" y="783.5" ></text>
+</g>
+<g >
+<title>open64 (111,111,110 samples, 0.70%)</title><rect x="996.0" y="773" width="9.6" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="998.96" y="783.5" ></text>
+</g>
+<g >
+<title>loopback_xmit (10,101,010 samples, 0.06%)</title><rect x="1367.2" y="501" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1370.23" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_ext_determine_insert_hole (10,101,010 samples, 0.06%)</title><rect x="1177.2" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1180.22" y="639.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (20,202,020 samples, 0.13%)</title><rect x="1007.3" y="533" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1010.35" y="543.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (20,202,020 samples, 0.13%)</title><rect x="1364.6" y="213" width="1.8" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1367.61" y="223.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (313,131,310 samples, 1.97%)</title><rect x="686.9" y="741" width="27.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="689.87" y="751.5" >[..</text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (20,202,020 samples, 0.13%)</title><rect x="822.6" y="581" width="1.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="825.59" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="798.9" y="645" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="801.95" y="655.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (20,202,020 samples, 0.13%)</title><rect x="276.2" y="581" width="1.7" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="279.19" y="591.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_uncharge (10,101,010 samples, 0.06%)</title><rect x="784.9" y="597" width="0.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="787.94" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="834.0" y="693" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="836.97" y="703.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="1213.1" y="581" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1216.12" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_link (20,202,020 samples, 0.13%)</title><rect x="974.9" y="613" width="1.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="977.95" y="623.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="546.8" y="549" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="549.76" y="559.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="769.2" y="645" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="772.18" y="655.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (10,101,010 samples, 0.06%)</title><rect x="1367.2" y="517" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1370.23" y="527.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="693" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1019.98" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="798.1" y="709" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="801.07" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (101,010,100 samples, 0.63%)</title><rect x="599.3" y="725" width="8.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="602.30" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1097.5" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1100.54" y="511.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (10,101,010 samples, 0.06%)</title><rect x="791.1" y="437" width="0.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="794.07" y="447.5" ></text>
+</g>
+<g >
+<title>generic_update_time (10,101,010 samples, 0.06%)</title><rect x="506.5" y="661" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="509.48" y="671.5" ></text>
+</g>
+<g >
+<title>__call_rcu_common.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="302.5" y="549" width="1.7" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="305.46" y="559.5" ></text>
+</g>
+<g >
+<title>fault_in_iov_iter_readable (10,101,010 samples, 0.06%)</title><rect x="539.8" y="645" width="0.8" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="542.76" y="655.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (20,202,020 samples, 0.13%)</title><rect x="12.6" y="357" width="1.8" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="15.63" y="367.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (20,202,020 samples, 0.13%)</title><rect x="186.9" y="533" width="1.7" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="189.88" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="228.9" y="501" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="231.91" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="775.3" y="565" width="1.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="778.30" y="575.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="74.8" y="805" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="77.80" y="815.5" ></text>
+</g>
+<g >
+<title>process_backlog (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="405" width="4.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1380.74" y="415.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (1,414,141,400 samples, 8.88%)</title><rect x="559.9" y="837" width="122.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="562.90" y="847.5" >[libgit2.so.1.7..</text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="758.7" y="725" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="761.67" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="816.5" y="533" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="819.46" y="543.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="993.3" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="996.34" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="979.3" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="982.33" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="656.2" y="517" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="659.22" y="527.5" ></text>
+</g>
+<g >
+<title>__check_heap_object (10,101,010 samples, 0.06%)</title><rect x="1182.5" y="645" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1185.47" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="534.5" y="613" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="537.51" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="805" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1022.61" y="815.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="537.1" y="613" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="540.13" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="344.5" y="645" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="347.49" y="655.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="900.5" y="597" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="903.52" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="1083.5" y="725" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1086.53" y="735.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="597" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1363.23" y="607.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="264.8" y="565" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="267.81" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="524.9" y="645" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="527.87" y="655.5" ></text>
+</g>
+<g >
+<title>errseq_check (10,101,010 samples, 0.06%)</title><rect x="567.8" y="597" width="0.9" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="570.78" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="439.9" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="442.94" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_es_free_extent (20,202,020 samples, 0.13%)</title><rect x="358.5" y="549" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="361.50" y="559.5" ></text>
+</g>
+<g >
+<title>copy_p4d_range (131,313,130 samples, 0.82%)</title><rect x="1282.3" y="693" width="11.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1285.30" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.57%)</title><rect x="1096.7" y="725" width="7.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1099.66" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="958.3" y="421" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="961.31" y="431.5" ></text>
+</g>
+<g >
+<title>__fsnotify_parent (10,101,010 samples, 0.06%)</title><rect x="904.0" y="517" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="907.02" y="527.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (353,535,350 samples, 2.22%)</title><rect x="563.4" y="677" width="30.6" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="566.40" y="687.5" >do..</text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="581" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1026.98" y="591.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="325" width="2.6" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="1367.61" y="335.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="409.3" y="725" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="412.29" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="1260.4" y="693" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1263.41" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="730.6" y="661" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="733.65" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="667.6" y="469" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="670.60" y="479.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="244.7" y="725" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="247.67" y="735.5" ></text>
+</g>
+<g >
+<title>scsi_dma_unmap (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="549" width="0.9" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" />
+<text x="1371.98" y="559.5" ></text>
+</g>
+<g >
+<title>memcg_list_lru_alloc (10,101,010 samples, 0.06%)</title><rect x="1017.9" y="549" width="0.8" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="1020.86" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="749.0" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="752.04" y="703.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (30,303,030 samples, 0.19%)</title><rect x="707.9" y="565" width="2.6" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="710.88" y="575.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1207.9" y="645" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1210.87" y="655.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1168.5" y="533" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1171.46" y="543.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="677" width="1.8" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="1387.75" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1220.1" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1223.13" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="752.5" y="613" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="755.54" y="623.5" ></text>
+</g>
+<g >
+<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="381.3" y="485" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="384.27" y="495.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (30,303,030 samples, 0.19%)</title><rect x="1133.4" y="469" width="2.7" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1136.44" y="479.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1092.3" y="693" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1095.28" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="711.4" y="613" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="714.38" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="425.1" y="597" width="1.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="428.05" y="607.5" ></text>
+</g>
+<g >
+<title>lockref_get (10,101,010 samples, 0.06%)</title><rect x="215.8" y="597" width="0.8" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="218.77" y="607.5" ></text>
+</g>
+<g >
+<title>mas_wr_end_piv (10,101,010 samples, 0.06%)</title><rect x="1302.4" y="693" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1305.44" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1323.5" y="837" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1326.45" y="847.5" ></text>
+</g>
+<g >
+<title>getdents64 (101,010,100 samples, 0.63%)</title><rect x="331.4" y="789" width="8.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="334.36" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_release_file (10,101,010 samples, 0.06%)</title><rect x="1016.1" y="709" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1019.10" y="719.5" ></text>
+</g>
+<g >
+<title>inc_rlimit_ucounts (10,101,010 samples, 0.06%)</title><rect x="52.0" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="55.03" y="703.5" ></text>
+</g>
+<g >
+<title>map_id_range_down (10,101,010 samples, 0.06%)</title><rect x="1151.0" y="661" width="0.8" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1153.95" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (161,616,160 samples, 1.02%)</title><rect x="1162.3" y="613" width="14.0" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="1165.34" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="777.9" y="581" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="780.93" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="783.2" y="549" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="786.19" y="559.5" ></text>
+</g>
+<g >
+<title>gettid (20,202,020 samples, 0.13%)</title><rect x="69.5" y="917" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="72.54" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (30,303,030 samples, 0.19%)</title><rect x="1172.8" y="581" width="2.7" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1175.84" y="591.5" ></text>
+</g>
+<g >
+<title>cgroup_post_fork (20,202,020 samples, 0.13%)</title><rect x="50.3" y="709" width="1.7" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="53.28" y="719.5" ></text>
+</g>
+<g >
+<title>alloc_file (10,101,010 samples, 0.06%)</title><rect x="1322.6" y="757" width="0.9" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="1325.58" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="752.5" y="501" width="2.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="755.54" y="511.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="167.6" y="821" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="170.61" y="831.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="1006.5" y="549" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1009.47" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (40,404,040 samples, 0.25%)</title><rect x="147.5" y="837" width="3.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="150.47" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (10,101,010 samples, 0.06%)</title><rect x="176.4" y="517" width="0.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="179.37" y="527.5" ></text>
+</g>
+<g >
+<title>__fput_sync (20,202,020 samples, 0.13%)</title><rect x="518.7" y="741" width="1.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="521.74" y="751.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (50,505,050 samples, 0.32%)</title><rect x="461.8" y="677" width="4.4" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="464.83" y="687.5" ></text>
+</g>
+<g >
+<title>brk (10,101,010 samples, 0.06%)</title><rect x="328.7" y="725" width="0.9" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="331.73" y="735.5" ></text>
+</g>
+<g >
+<title>__blk_mq_do_dispatch_sched (20,202,020 samples, 0.13%)</title><rect x="822.6" y="389" width="1.7" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="825.59" y="399.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="911.0" y="789" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="914.03" y="799.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="365.5" y="661" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="368.51" y="671.5" ></text>
+</g>
+<g >
+<title>lh_table_lookup_entry_w_hash (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="821" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1392.12" y="831.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="710.5" y="613" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="713.51" y="623.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="730.6" y="565" width="1.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="733.65" y="575.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="469" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1347.47" y="479.5" ></text>
+</g>
+<g >
+<title>process_output_dump (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="949" width="1.8" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="1349.22" y="959.5" ></text>
+</g>
+<g >
+<title>ext4_link (60,606,060 samples, 0.38%)</title><rect x="602.8" y="661" width="5.3" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="605.80" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="955.7" y="453" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="958.69" y="463.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.19%)</title><rect x="752.5" y="469" width="2.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="755.54" y="479.5" ></text>
+</g>
+<g >
+<title>path_openat (40,404,040 samples, 0.25%)</title><rect x="918.0" y="597" width="3.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="921.03" y="607.5" ></text>
+</g>
+<g >
+<title>sk_free (10,101,010 samples, 0.06%)</title><rect x="40.6" y="677" width="0.9" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="43.65" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="858.5" y="789" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="861.49" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.06%)</title><rect x="1237.6" y="629" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="1240.64" y="639.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="258.7" y="693" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="261.68" y="703.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="165" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1375.49" y="175.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="538.0" y="565" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="541.01" y="575.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (10,101,010 samples, 0.06%)</title><rect x="35.4" y="469" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="38.39" y="479.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="1006.5" y="581" width="0.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1009.47" y="591.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="248.2" y="533" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="251.17" y="543.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="784.1" y="549" width="0.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="787.06" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_setent (10,101,010 samples, 0.06%)</title><rect x="678.1" y="613" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="681.11" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (30,303,030 samples, 0.19%)</title><rect x="1328.7" y="853" width="2.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1331.71" y="863.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="458.3" y="789" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="461.32" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="489.0" y="741" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="491.97" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (10,101,010 samples, 0.06%)</title><rect x="776.2" y="533" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="779.18" y="543.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstat (10,101,010 samples, 0.06%)</title><rect x="610.7" y="693" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="613.69" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (30,303,030 samples, 0.19%)</title><rect x="341.0" y="629" width="2.6" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="343.99" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (50,505,050 samples, 0.32%)</title><rect x="940.8" y="581" width="4.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="943.80" y="591.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.06%)</title><rect x="1131.7" y="581" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1134.69" y="591.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (10,101,010 samples, 0.06%)</title><rect x="72.2" y="869" width="0.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="75.17" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.06%)</title><rect x="680.7" y="709" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="683.74" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="902.3" y="693" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="905.27" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_connect (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="869" width="12.2" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1379.87" y="879.5" ></text>
+</g>
+<g >
+<title>stop_this_handle (10,101,010 samples, 0.06%)</title><rect x="344.5" y="613" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="347.49" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="338.4" y="549" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="341.36" y="559.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="1354.1" y="805" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1357.10" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (10,101,010 samples, 0.06%)</title><rect x="1127.3" y="453" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1130.31" y="463.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="486.3" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="489.35" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (20,202,020 samples, 0.13%)</title><rect x="518.7" y="757" width="1.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="521.74" y="767.5" ></text>
+</g>
+<g >
+<title>__destroy_inode (10,101,010 samples, 0.06%)</title><rect x="925.0" y="597" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" />
+<text x="928.04" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (40,404,040 samples, 0.25%)</title><rect x="937.3" y="597" width="3.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="940.30" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="219.3" y="613" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="222.28" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1100.2" y="389" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1103.16" y="399.5" ></text>
+</g>
+<g >
+<title>pcre2_compile_8 (20,202,020 samples, 0.13%)</title><rect x="828.7" y="789" width="1.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="831.72" y="799.5" ></text>
+</g>
+<g >
+<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="469" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1014.73" y="479.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="722.8" y="709" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="725.77" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="445.2" y="741" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="448.19" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.70%)</title><rect x="1073.9" y="805" width="9.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1076.90" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="600.2" y="661" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="603.18" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="916.3" y="757" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="919.28" y="767.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.06%)</title><rect x="440.8" y="709" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="443.81" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="805" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1247.64" y="815.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="525.7" y="581" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="528.75" y="591.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="547.6" y="725" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="550.64" y="735.5" ></text>
+</g>
+<g >
+<title>__memset (30,303,030 samples, 0.19%)</title><rect x="1306.8" y="693" width="2.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1309.81" y="703.5" ></text>
+</g>
+<g >
+<title>__netif_rx (10,101,010 samples, 0.06%)</title><rect x="1367.2" y="485" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1370.23" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="994.2" y="773" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="997.21" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (141,414,140 samples, 0.89%)</title><rect x="837.5" y="725" width="12.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="840.47" y="735.5" ></text>
+</g>
+<g >
+<title>bio_alloc_bioset (10,101,010 samples, 0.06%)</title><rect x="795.4" y="421" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="798.44" y="431.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="110.7" y="725" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="113.70" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="738.5" y="821" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="741.53" y="831.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="204.4" y="437" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="207.39" y="447.5" ></text>
+</g>
+<g >
+<title>srso_alias_return_thunk (10,101,010 samples, 0.06%)</title><rect x="1202.6" y="549" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1205.61" y="559.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1327.0" y="661" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1329.95" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="329.6" y="789" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="332.61" y="799.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="580.0" y="549" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="583.04" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (121,212,120 samples, 0.76%)</title><rect x="855.9" y="853" width="10.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="858.86" y="863.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="20.5" y="933" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="23.51" y="943.5" ></text>
+</g>
+<g >
+<title>_raw_write_lock_bh (10,101,010 samples, 0.06%)</title><rect x="66.0" y="757" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="69.04" y="767.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="261" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1140.82" y="271.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="181.6" y="645" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="184.62" y="655.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="457.4" y="805" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="460.45" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="673.7" y="565" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="676.73" y="575.5" ></text>
+</g>
+<g >
+<title>__newlocale (10,101,010 samples, 0.06%)</title><rect x="1355.9" y="821" width="0.8" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1358.85" y="831.5" ></text>
+</g>
+<g >
+<title>json_tokener_parse_verbose (50,505,050 samples, 0.32%)</title><rect x="1353.2" y="853" width="4.4" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" />
+<text x="1356.22" y="863.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="738.5" y="677" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="741.53" y="687.5" ></text>
+</g>
+<g >
+<title>alloc_file (10,101,010 samples, 0.06%)</title><rect x="1341.0" y="805" width="0.8" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="1343.96" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="81.8" y="821" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="84.80" y="831.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1003.8" y="645" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1006.85" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="383.9" y="453" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="386.90" y="463.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getcwd (10,101,010 samples, 0.06%)</title><rect x="158.0" y="837" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="160.98" y="847.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="986.3" y="629" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="989.33" y="639.5" ></text>
+</g>
+<g >
+<title>tasklet_action_common.isra.0 (10,101,010 samples, 0.06%)</title><rect x="631.7" y="549" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="634.70" y="559.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_recv (101,010,100 samples, 0.63%)</title><rect x="1351.5" y="901" width="8.7" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1354.47" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1146.6" y="661" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1149.57" y="671.5" ></text>
+</g>
+<g >
+<title>__close (20,202,020 samples, 0.13%)</title><rect x="1015.2" y="805" width="1.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1018.23" y="815.5" ></text>
+</g>
+<g >
+<title>git_signature_default (40,404,040 samples, 0.25%)</title><rect x="981.1" y="773" width="3.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="984.08" y="783.5" ></text>
+</g>
+<g >
+<title>__do_softirq (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="469" width="4.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1380.74" y="479.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="446.1" y="645" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="449.07" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="542.4" y="773" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="545.39" y="783.5" ></text>
+</g>
+<g >
+<title>cfree (40,404,040 samples, 0.25%)</title><rect x="160.6" y="805" width="3.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="163.61" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (30,303,030 samples, 0.19%)</title><rect x="383.9" y="565" width="2.6" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="386.90" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (171,717,170 samples, 1.08%)</title><rect x="625.6" y="773" width="14.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="628.57" y="783.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1181.6" y="677" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="1184.60" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_link (20,202,020 samples, 0.13%)</title><rect x="974.9" y="645" width="1.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="977.95" y="655.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="271.8" y="533" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="274.81" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="360.3" y="533" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="363.25" y="543.5" ></text>
+</g>
+<g >
+<title>tcp_v6_conn_request (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="341" width="0.9" height="15.0" fill="rgb(0,236,197)" rx="2" ry="2" />
+<text x="1348.34" y="351.5" ></text>
+</g>
+<g >
+<title>wbt_wait (10,101,010 samples, 0.06%)</title><rect x="1139.6" y="405" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1142.57" y="415.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="876.9" y="661" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="879.88" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (30,303,030 samples, 0.19%)</title><rect x="161.5" y="789" width="2.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="164.48" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="732.4" y="661" width="1.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="735.40" y="671.5" ></text>
+</g>
+<g >
+<title>git_reference_symbolic_create (101,010,100 samples, 0.63%)</title><rect x="729.8" y="837" width="8.7" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="732.77" y="847.5" ></text>
+</g>
+<g >
+<title>unlink_cb (70,707,070 samples, 0.44%)</title><rect x="423.3" y="869" width="6.1" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="426.30" y="879.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="1236.8" y="645" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1239.76" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="394.4" y="597" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="397.40" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (50,505,050 samples, 0.32%)</title><rect x="616.8" y="661" width="4.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="619.81" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="805" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1349.22" y="815.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="948.7" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="951.68" y="655.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="469" width="5.2" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1372.86" y="479.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="1361.1" y="693" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="1364.10" y="703.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="714.0" y="597" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="717.01" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="200.9" y="501" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="203.89" y="511.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.06%)</title><rect x="454.8" y="517" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="457.82" y="527.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="601.1" y="677" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="604.05" y="687.5" ></text>
+</g>
+<g >
+<title>init_file (10,101,010 samples, 0.06%)</title><rect x="181.6" y="597" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="184.62" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="322.6" y="709" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="325.60" y="719.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="485" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1037.49" y="495.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="784.9" y="645" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="787.94" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (20,202,020 samples, 0.13%)</title><rect x="732.4" y="565" width="1.7" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="735.40" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="487.2" y="725" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="490.22" y="735.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="94.9" y="917" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="97.94" y="927.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="81.8" y="789" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="84.80" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (171,717,170 samples, 1.08%)</title><rect x="664.1" y="645" width="14.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="667.10" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="693" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1371.98" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="125.6" y="805" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="128.58" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="174.6" y="501" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="177.62" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="296.3" y="421" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="299.33" y="431.5" ></text>
+</g>
+<g >
+<title>scsi_dispatch_cmd (10,101,010 samples, 0.06%)</title><rect x="930.3" y="357" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="933.29" y="367.5" ></text>
+</g>
+<g >
+<title>git_odb_read_header (40,404,040 samples, 0.25%)</title><rect x="471.5" y="837" width="3.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="474.46" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="421" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1040.99" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="292.8" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="295.83" y="511.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="183.4" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="186.38" y="607.5" ></text>
+</g>
+<g >
+<title>evict (50,505,050 samples, 0.32%)</title><rect x="184.3" y="581" width="4.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="187.25" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="348.0" y="629" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="350.99" y="639.5" ></text>
+</g>
+<g >
+<title>folio_wait_bit_common (20,202,020 samples, 0.13%)</title><rect x="659.7" y="485" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="662.72" y="495.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="200.9" y="469" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="203.89" y="479.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="971.4" y="517" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="974.45" y="527.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.06%)</title><rect x="510.9" y="629" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="513.86" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="309" width="2.6" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1367.61" y="319.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="835.7" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="838.72" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (464,646,460 samples, 2.92%)</title><rect x="640.5" y="773" width="40.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="643.46" y="783.5" >[li..</text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="447.8" y="677" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="450.82" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="1094.0" y="629" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1097.04" y="639.5" ></text>
+</g>
+<g >
+<title>__dd_dispatch_request (10,101,010 samples, 0.06%)</title><rect x="823.5" y="357" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="826.46" y="367.5" ></text>
+</g>
+<g >
+<title>getdents64 (20,202,020 samples, 0.13%)</title><rect x="505.6" y="773" width="1.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="508.61" y="783.5" ></text>
+</g>
+<g >
+<title>__es_remove_extent (20,202,020 samples, 0.13%)</title><rect x="788.4" y="501" width="1.8" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="791.44" y="511.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="483.7" y="597" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="486.72" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="955.7" y="469" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="958.69" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_mb_regular_allocator (40,404,040 samples, 0.25%)</title><rect x="87.9" y="741" width="3.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="90.93" y="751.5" ></text>
+</g>
+<g >
+<title>destroy_inode (10,101,010 samples, 0.06%)</title><rect x="925.0" y="613" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="928.04" y="623.5" ></text>
+</g>
+<g >
+<title>client_destroy_handler (151,515,150 samples, 0.95%)</title><rect x="29.3" y="933" width="13.1" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="32.26" y="943.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="215.8" y="645" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="218.77" y="655.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="876.0" y="693" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="879.00" y="703.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="882.1" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="885.13" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (60,606,060 samples, 0.38%)</title><rect x="315.6" y="741" width="5.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="318.60" y="751.5" ></text>
+</g>
+<g >
+<title>blk_finish_plug (20,202,020 samples, 0.13%)</title><rect x="822.6" y="517" width="1.7" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="825.59" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="500.4" y="741" width="4.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="503.36" y="751.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="865.5" y="533" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="868.49" y="543.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (20,202,020 samples, 0.13%)</title><rect x="527.5" y="853" width="1.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="530.50" y="863.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_free_hook (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="453" width="0.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1347.47" y="463.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="558.1" y="709" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="561.15" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="782.3" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="785.31" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="469" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1040.99" y="479.5" ></text>
+</g>
+<g >
+<title>inet6_sendmsg (40,404,040 samples, 0.25%)</title><rect x="11.8" y="805" width="3.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="14.75" y="815.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="864.6" y="549" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="867.62" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="980.2" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="983.20" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="817.3" y="437" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="820.34" y="447.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="1156.2" y="661" width="2.6" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1159.21" y="671.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="732.4" y="645" width="1.7" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="735.40" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1147.4" y="565" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1150.45" y="575.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="645" width="1.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1389.50" y="655.5" ></text>
+</g>
+<g >
+<title>mb_update_avg_fragment_size (10,101,010 samples, 0.06%)</title><rect x="589.7" y="453" width="0.8" height="15.0" fill="rgb(0,233,180)" rx="2" ry="2" />
+<text x="592.67" y="463.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="645" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1188.98" y="655.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="629.1" y="693" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="632.07" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="1383.9" y="757" width="0.8" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1386.87" y="767.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="757.8" y="629" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="760.79" y="639.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="366.4" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="369.38" y="623.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="677" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1026.11" y="687.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="1057.3" y="581" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1060.26" y="591.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.06%)</title><rect x="1068.6" y="613" width="0.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="1071.64" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="850.6" y="725" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="853.61" y="735.5" ></text>
+</g>
+<g >
+<title>__block_commit_write (10,101,010 samples, 0.06%)</title><rect x="807.7" y="549" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="810.70" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="404.0" y="773" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="407.04" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="608.9" y="741" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="611.93" y="751.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="986.3" y="677" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="989.33" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (585,858,580 samples, 3.68%)</title><rect x="934.7" y="789" width="50.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="937.67" y="799.5" >[libg..</text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="356.8" y="565" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="359.75" y="575.5" ></text>
+</g>
+<g >
+<title>skb_do_copy_data_nocache (10,101,010 samples, 0.06%)</title><rect x="1361.1" y="725" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1364.10" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="727.1" y="629" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="730.14" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (30,303,030 samples, 0.19%)</title><rect x="1165.0" y="517" width="2.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1167.96" y="527.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1222.8" y="661" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1225.75" y="671.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (202,020,200 samples, 1.27%)</title><rect x="1087.0" y="805" width="17.5" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="1090.03" y="815.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (20,202,020 samples, 0.13%)</title><rect x="1264.8" y="757" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1267.78" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="857.6" y="725" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="860.61" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="783.2" y="629" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="786.19" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="555.5" y="853" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="558.52" y="863.5" ></text>
+</g>
+<g >
+<title>alloc_file_pseudo (10,101,010 samples, 0.06%)</title><rect x="1321.7" y="789" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1324.70" y="799.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="615.9" y="645" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="618.94" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1141.3" y="581" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1144.32" y="591.5" ></text>
+</g>
+<g >
+<title>find_group_orlov (10,101,010 samples, 0.06%)</title><rect x="1149.2" y="677" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="1152.20" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="222.8" y="581" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="225.78" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_htree_store_dirent (10,101,010 samples, 0.06%)</title><rect x="249.9" y="597" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="252.92" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="357.6" y="565" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="360.63" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="784.9" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="787.94" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="966.2" y="677" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="969.19" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="936.4" y="645" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="939.42" y="655.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.13%)</title><rect x="1273.5" y="757" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1276.54" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="91.4" y="805" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="94.43" y="815.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_pre_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="633.5" y="549" width="0.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="636.45" y="559.5" ></text>
+</g>
+<g >
+<title>do_rmdir (505,050,500 samples, 3.17%)</title><rect x="261.3" y="661" width="43.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="264.31" y="671.5" >do_r..</text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="727.1" y="709" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="730.14" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="393.5" y="645" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="396.53" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="326.1" y="645" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="329.10" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="220.2" y="629" width="0.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="223.15" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (70,707,070 samples, 0.44%)</title><rect x="1362.0" y="693" width="6.1" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1364.98" y="703.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="966.2" y="565" width="1.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="969.19" y="575.5" ></text>
+</g>
+<g >
+<title>path_parentat (20,202,020 samples, 0.13%)</title><rect x="1143.9" y="693" width="1.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="1146.95" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="728.0" y="581" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="731.02" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (40,404,040 samples, 0.25%)</title><rect x="770.9" y="517" width="3.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="773.93" y="527.5" ></text>
+</g>
+<g >
+<title>insert_inode_locked (20,202,020 samples, 0.13%)</title><rect x="572.2" y="613" width="1.7" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="575.16" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (20,202,020 samples, 0.13%)</title><rect x="130.0" y="773" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="132.96" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="524.9" y="693" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="527.87" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (20,202,020 samples, 0.13%)</title><rect x="1372.5" y="277" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1375.49" y="287.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="155.4" y="805" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="158.36" y="815.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="263.1" y="453" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="266.06" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="713.1" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="716.13" y="719.5" ></text>
+</g>
+<g >
+<title>submit_bio (50,505,050 samples, 0.32%)</title><rect x="1136.1" y="485" width="4.3" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="1139.07" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_mkdir (90,909,090 samples, 0.57%)</title><rect x="1041.5" y="741" width="7.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1044.50" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_release_folio (10,101,010 samples, 0.06%)</title><rect x="389.1" y="549" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="392.15" y="559.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (20,202,020 samples, 0.13%)</title><rect x="274.4" y="565" width="1.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="277.44" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="758.7" y="709" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="761.67" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="547.6" y="741" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="550.64" y="751.5" ></text>
+</g>
+<g >
+<title>inet_sendmsg (80,808,080 samples, 0.51%)</title><rect x="1361.1" y="773" width="7.0" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1364.10" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_clear_inode (20,202,020 samples, 0.13%)</title><rect x="284.9" y="565" width="1.8" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="287.95" y="575.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (10,101,010 samples, 0.06%)</title><rect x="464.5" y="597" width="0.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="467.45" y="607.5" ></text>
+</g>
+<g >
+<title>iput (90,909,090 samples, 0.57%)</title><rect x="1122.9" y="613" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1125.93" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="1192.1" y="757" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1195.11" y="767.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (10,101,010 samples, 0.06%)</title><rect x="342.7" y="565" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="345.74" y="575.5" ></text>
+</g>
+<g >
+<title>kmalloc_reserve (10,101,010 samples, 0.06%)</title><rect x="1336.6" y="693" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="1339.59" y="703.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="909.3" y="677" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="912.28" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="840.1" y="549" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="843.10" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_generic_delete_entry (10,101,010 samples, 0.06%)</title><rect x="545.9" y="661" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="548.89" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="862.0" y="757" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="864.99" y="767.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="597" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1108.42" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="505.6" y="597" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="508.61" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_match (10,101,010 samples, 0.06%)</title><rect x="580.9" y="581" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="583.91" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (444,444,440 samples, 2.79%)</title><rect x="1104.5" y="805" width="38.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1107.54" y="815.5" >[li..</text>
+</g>
+<g >
+<title>inet_csk_route_child_sock (10,101,010 samples, 0.06%)</title><rect x="1377.7" y="229" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1380.74" y="239.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="1247.3" y="789" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1250.27" y="799.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="1083.5" y="581" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="1086.53" y="591.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="709" width="2.6" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1336.08" y="719.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1207.9" y="629" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1210.87" y="639.5" ></text>
+</g>
+<g >
+<title>xas_descend (10,101,010 samples, 0.06%)</title><rect x="1160.6" y="533" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1163.58" y="543.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="740.3" y="501" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="743.28" y="511.5" ></text>
+</g>
+<g >
+<title>copy_creds (10,101,010 samples, 0.06%)</title><rect x="52.0" y="709" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="55.03" y="719.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1208.7" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1211.74" y="671.5" ></text>
+</g>
+<g >
+<title>fault_in_iov_iter_readable (10,101,010 samples, 0.06%)</title><rect x="1071.3" y="645" width="0.8" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="1074.27" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1197.73" y="687.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="1187.7" y="741" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1190.73" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (30,303,030 samples, 0.19%)</title><rect x="675.5" y="613" width="2.6" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="678.48" y="623.5" ></text>
+</g>
+<g >
+<title>security_inode_need_killpriv (10,101,010 samples, 0.06%)</title><rect x="515.2" y="613" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="518.24" y="623.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="995.1" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="998.09" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (20,202,020 samples, 0.13%)</title><rect x="842.7" y="517" width="1.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="845.73" y="527.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.06%)</title><rect x="960.9" y="373" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="963.94" y="383.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="874.3" y="757" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="877.25" y="767.5" ></text>
+</g>
+<g >
+<title>vm_area_dup (90,909,090 samples, 0.57%)</title><rect x="1305.9" y="709" width="7.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1308.94" y="719.5" ></text>
+</g>
+<g >
+<title>block_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="819.1" y="501" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="822.09" y="511.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="357.6" y="581" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="360.63" y="591.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="440.8" y="549" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="443.81" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="817.3" y="453" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="820.34" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="418.0" y="853" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="421.05" y="863.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.25%)</title><rect x="380.4" y="565" width="3.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="383.39" y="575.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="677" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1248.52" y="687.5" ></text>
+</g>
+<g >
+<title>server_wait_for_action (20,202,020 samples, 0.13%)</title><rect x="22.3" y="997" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="25.26" y="1007.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="208.8" y="309" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="211.77" y="319.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="645" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1241.52" y="655.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="475.0" y="741" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="477.96" y="751.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (20,202,020 samples, 0.13%)</title><rect x="12.6" y="597" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="15.63" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="443.4" y="661" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="446.44" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="903.1" y="629" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="906.15" y="639.5" ></text>
+</g>
+<g >
+<title>do_writepages (20,202,020 samples, 0.13%)</title><rect x="822.6" y="565" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="825.59" y="575.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rename (242,424,240 samples, 1.52%)</title><rect x="1121.2" y="693" width="21.0" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="1124.18" y="703.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="661" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1241.52" y="671.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.06%)</title><rect x="693.0" y="533" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="695.99" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1100.2" y="437" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1103.16" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="346.2" y="597" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="349.24" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="149.2" y="805" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="152.23" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="891.8" y="789" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="894.76" y="799.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="1193.9" y="581" width="0.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="1196.86" y="591.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="698.2" y="549" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="701.25" y="559.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (30,303,030 samples, 0.19%)</title><rect x="1378.6" y="245" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1381.62" y="255.5" ></text>
+</g>
+<g >
+<title>inet_release (80,808,080 samples, 0.51%)</title><rect x="34.5" y="709" width="7.0" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="37.52" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="888.3" y="661" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="891.26" y="671.5" ></text>
+</g>
+<g >
+<title>security_file_alloc (10,101,010 samples, 0.06%)</title><rect x="877.8" y="517" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="880.75" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_rename (40,404,040 samples, 0.25%)</title><rect x="846.2" y="645" width="3.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="849.23" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (30,303,030 samples, 0.19%)</title><rect x="630.8" y="645" width="2.7" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="633.82" y="655.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="68.7" y="725" width="0.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="71.67" y="735.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_node (20,202,020 samples, 0.13%)</title><rect x="59.0" y="693" width="1.8" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="62.04" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="546.8" y="485" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="549.76" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="667.6" y="405" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="670.60" y="415.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (90,909,090 samples, 0.57%)</title><rect x="184.3" y="645" width="7.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="187.25" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (10,101,010 samples, 0.06%)</title><rect x="658.0" y="453" width="0.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="660.97" y="463.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (20,202,020 samples, 0.13%)</title><rect x="700.0" y="565" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="703.00" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="498.6" y="757" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="501.60" y="767.5" ></text>
+</g>
+<g >
+<title>rmqueue (10,101,010 samples, 0.06%)</title><rect x="1008.2" y="501" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1011.22" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="475.0" y="773" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="477.96" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="700.0" y="549" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="703.00" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="450.4" y="581" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="453.44" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (10,101,010 samples, 0.06%)</title><rect x="779.7" y="581" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="782.68" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1262.2" y="613" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1265.16" y="623.5" ></text>
+</g>
+<g >
+<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="785.8" y="661" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="788.81" y="671.5" ></text>
+</g>
+<g >
+<title>__fsnotify_parent (10,101,010 samples, 0.06%)</title><rect x="764.8" y="437" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="767.80" y="447.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.06%)</title><rect x="1080.0" y="533" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1083.03" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="463.6" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="466.58" y="527.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.06%)</title><rect x="1160.6" y="549" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="1163.58" y="559.5" ></text>
+</g>
+<g >
+<title>do_open (10,101,010 samples, 0.06%)</title><rect x="1224.5" y="581" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1227.51" y="591.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="734.1" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="737.15" y="623.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="493.4" y="629" width="1.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="496.35" y="639.5" ></text>
+</g>
+<g >
+<title>git_reference_symbolic_create (404,040,400 samples, 2.54%)</title><rect x="768.3" y="821" width="35.0" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="771.30" y="831.5" >gi..</text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1234.1" y="757" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1237.14" y="767.5" ></text>
+</g>
+<g >
+<title>ip_output (10,101,010 samples, 0.06%)</title><rect x="1366.4" y="149" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1369.36" y="159.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (20,202,020 samples, 0.13%)</title><rect x="274.4" y="581" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="277.44" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (313,131,310 samples, 1.97%)</title><rect x="480.2" y="805" width="27.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="483.22" y="815.5" >[..</text>
+</g>
+<g >
+<title>do_syscall_64 (101,010,100 samples, 0.63%)</title><rect x="331.4" y="757" width="8.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="334.36" y="767.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="904.9" y="565" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="907.90" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="548.5" y="821" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="551.52" y="831.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="882.1" y="613" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="885.13" y="623.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="942.6" y="501" width="0.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="945.55" y="511.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (20,202,020 samples, 0.13%)</title><rect x="850.6" y="821" width="1.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="853.61" y="831.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1000.3" y="533" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1003.34" y="543.5" ></text>
+</g>
+<g >
+<title>iterate_dir (10,101,010 samples, 0.06%)</title><rect x="859.4" y="661" width="0.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="862.37" y="671.5" ></text>
+</g>
+<g >
+<title>filename_lookup (101,010,100 samples, 0.63%)</title><rect x="1074.8" y="693" width="8.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1077.77" y="703.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.06%)</title><rect x="262.2" y="629" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="265.18" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (10,101,010 samples, 0.06%)</title><rect x="193.9" y="661" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="196.88" y="671.5" ></text>
+</g>
+<g >
+<title>net_send_buf (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="917" width="6.1" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1335.21" y="927.5" ></text>
+</g>
+<g >
+<title>inode_set_ctime_current (10,101,010 samples, 0.06%)</title><rect x="300.7" y="565" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="303.71" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="846.2" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="849.23" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1029.61" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1027.5" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1030.49" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="835.7" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="838.72" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (20,202,020 samples, 0.13%)</title><rect x="38.0" y="197" width="1.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="41.02" y="207.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.13%)</title><rect x="932.0" y="501" width="1.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="935.04" y="511.5" ></text>
+</g>
+<g >
+<title>tcp_check_req (10,101,010 samples, 0.06%)</title><rect x="1377.7" y="277" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1380.74" y="287.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="899.6" y="549" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="902.64" y="559.5" ></text>
+</g>
+<g >
+<title>git_reference_dwim (30,303,030 samples, 0.19%)</title><rect x="552.9" y="853" width="2.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="555.89" y="863.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="851.5" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="854.48" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="1325.2" y="805" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1328.20" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="635.2" y="581" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="638.20" y="591.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="1182.5" y="677" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1185.47" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="482.0" y="693" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="484.97" y="703.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.06%)</title><rect x="665.9" y="357" width="0.8" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="668.85" y="367.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="1146.6" y="613" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1149.57" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_discard_preallocations (10,101,010 samples, 0.06%)</title><rect x="406.7" y="613" width="0.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="409.66" y="623.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="613.3" y="645" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="616.31" y="655.5" ></text>
+</g>
+<g >
+<title>getname_flags (40,404,040 samples, 0.25%)</title><rect x="625.6" y="693" width="3.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="628.57" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="709" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1371.98" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="710.5" y="645" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="713.51" y="655.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="273.6" y="501" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="276.57" y="511.5" ></text>
+</g>
+<g >
+<title>shrink_dentry_list (20,202,020 samples, 0.13%)</title><rect x="302.5" y="613" width="1.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="305.46" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="489.0" y="693" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="491.97" y="703.5" ></text>
+</g>
+<g >
+<title>unmap_vmas (20,202,020 samples, 0.13%)</title><rect x="399.7" y="629" width="1.7" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" />
+<text x="402.66" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (20,202,020 samples, 0.13%)</title><rect x="1065.1" y="693" width="1.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1068.14" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_find_dest_de (10,101,010 samples, 0.06%)</title><rect x="1002.1" y="549" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1005.09" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="539.8" y="837" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="542.76" y="847.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1247.64" y="687.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="440.8" y="629" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="443.81" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_da_update_reserve_space (10,101,010 samples, 0.06%)</title><rect x="468.0" y="501" width="0.8" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="470.96" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="516.1" y="613" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="519.12" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="166.7" y="837" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="169.74" y="847.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="717.5" y="533" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="720.51" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="657.1" y="485" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="660.09" y="495.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="612.4" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="615.44" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="749.0" y="645" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="752.04" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1219.3" y="629" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1222.25" y="639.5" ></text>
+</g>
+<g >
+<title>set_close_on_exec (10,101,010 samples, 0.06%)</title><rect x="329.6" y="677" width="0.9" height="15.0" fill="rgb(0,215,109)" rx="2" ry="2" />
+<text x="332.61" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="643.1" y="693" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="646.08" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="649.2" y="709" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="652.21" y="719.5" ></text>
+</g>
+<g >
+<title>xa_load (10,101,010 samples, 0.06%)</title><rect x="1017.9" y="533" width="0.8" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1020.86" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="1230.6" y="565" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1233.63" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (20,202,020 samples, 0.13%)</title><rect x="717.5" y="549" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="720.51" y="559.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (20,202,020 samples, 0.13%)</title><rect x="606.3" y="613" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="609.31" y="623.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (40,404,040 samples, 0.25%)</title><rect x="658.8" y="565" width="3.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="661.85" y="575.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (30,303,030 samples, 0.19%)</title><rect x="453.9" y="581" width="2.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="456.95" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="479.3" y="853" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="482.34" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (40,404,040 samples, 0.25%)</title><rect x="1006.5" y="613" width="3.5" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1009.47" y="623.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="791.1" y="533" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="794.07" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="922.4" y="645" width="1.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="925.41" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1115.9" y="661" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1118.93" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1353.2" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1356.22" y="815.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (20,202,020 samples, 0.13%)</title><rect x="12.6" y="549" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="15.63" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_find_extent (10,101,010 samples, 0.06%)</title><rect x="468.8" y="501" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="471.83" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="750.8" y="629" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="753.79" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="565" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1197.73" y="575.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="629" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1217.00" y="639.5" ></text>
+</g>
+<g >
+<title>rcu_core (10,101,010 samples, 0.06%)</title><rect x="1236.8" y="581" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1239.76" y="591.5" ></text>
+</g>
+<g >
+<title>lockref_get_not_dead (10,101,010 samples, 0.06%)</title><rect x="197.4" y="533" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="200.39" y="543.5" ></text>
+</g>
+<g >
+<title>netif_rx_internal (10,101,010 samples, 0.06%)</title><rect x="1367.2" y="469" width="0.9" height="15.0" fill="rgb(0,198,33)" rx="2" ry="2" />
+<text x="1370.23" y="479.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="758.7" y="677" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="761.67" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1349.7" y="885" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1352.72" y="895.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="681.6" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="684.61" y="815.5" ></text>
+</g>
+<g >
+<title>mas_next_slot (10,101,010 samples, 0.06%)</title><rect x="1301.6" y="693" width="0.8" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="1304.56" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="348.9" y="613" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="351.87" y="623.5" ></text>
+</g>
+<g >
+<title>__kmalloc (10,101,010 samples, 0.06%)</title><rect x="881.3" y="501" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="884.26" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_da_blocks (90,909,090 samples, 0.57%)</title><rect x="1132.6" y="613" width="7.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1135.56" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="171.1" y="469" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="174.12" y="479.5" ></text>
+</g>
+<g >
+<title>__blk_flush_plug (20,202,020 samples, 0.13%)</title><rect x="665.9" y="485" width="1.7" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="668.85" y="495.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1263.0" y="773" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1266.03" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.06%)</title><rect x="680.7" y="677" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="683.74" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="629.1" y="677" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="632.07" y="687.5" ></text>
+</g>
+<g >
+<title>do_wait (10,101,010 samples, 0.06%)</title><rect x="1323.5" y="757" width="0.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1326.45" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="890.0" y="533" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="893.01" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (212,121,210 samples, 1.33%)</title><rect x="831.3" y="789" width="18.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="834.35" y="799.5" ></text>
+</g>
+<g >
+<title>submit_bio (10,101,010 samples, 0.06%)</title><rect x="1035.4" y="469" width="0.8" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="1038.37" y="479.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="582.7" y="533" width="0.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="585.66" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="1228.0" y="661" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1231.01" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1192.1" y="741" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1195.11" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="892.6" y="773" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="895.64" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="924.2" y="757" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="927.16" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (151,515,150 samples, 0.95%)</title><rect x="1028.4" y="709" width="13.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1031.36" y="719.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="405" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1221.38" y="415.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.06%)</title><rect x="474.1" y="741" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="477.09" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="439.9" y="597" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="442.94" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="520.5" y="773" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="523.49" y="783.5" ></text>
+</g>
+<g >
+<title>vfs_write (30,303,030 samples, 0.19%)</title><rect x="1108.9" y="629" width="2.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1111.92" y="639.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="367.3" y="709" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="370.26" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="863.7" y="613" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="866.74" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="1214.9" y="677" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1217.87" y="687.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1093.2" y="597" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1096.16" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.19%)</title><rect x="353.2" y="597" width="2.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="356.25" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="966.2" y="693" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="969.19" y="703.5" ></text>
+</g>
+<g >
+<title>git_signature_now (10,101,010 samples, 0.06%)</title><rect x="728.9" y="789" width="0.9" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="731.90" y="799.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1096.7" y="517" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1099.66" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (10,101,010 samples, 0.06%)</title><rect x="817.3" y="469" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="820.34" y="479.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="446.9" y="773" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="449.94" y="783.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="918.0" y="517" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="921.03" y="527.5" ></text>
+</g>
+<g >
+<title>tcp_v4_syn_recv_sock (10,101,010 samples, 0.06%)</title><rect x="1377.7" y="245" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1380.74" y="255.5" ></text>
+</g>
+<g >
+<title>storvsc_do_io (10,101,010 samples, 0.06%)</title><rect x="930.3" y="325" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="933.29" y="335.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="975.8" y="565" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="978.82" y="575.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (20,202,020 samples, 0.13%)</title><rect x="822.6" y="421" width="1.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="825.59" y="431.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1115.9" y="709" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1118.93" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="748.2" y="597" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="751.16" y="607.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="158.0" y="805" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="160.98" y="815.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.06%)</title><rect x="732.4" y="533" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="735.40" y="543.5" ></text>
+</g>
+<g >
+<title>_copy_to_user (10,101,010 samples, 0.06%)</title><rect x="501.2" y="565" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="504.23" y="575.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (10,101,010 samples, 0.06%)</title><rect x="791.1" y="469" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="794.07" y="479.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="613" width="0.8" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1322.07" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="73.9" y="965" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="76.92" y="975.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (171,717,170 samples, 1.08%)</title><rect x="625.6" y="757" width="14.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="628.57" y="767.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="939.9" y="453" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="942.92" y="463.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="908.4" y="741" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="911.40" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (20,202,020 samples, 0.13%)</title><rect x="179.9" y="485" width="1.7" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="182.87" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1117.7" y="741" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1120.68" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.06%)</title><rect x="1043.2" y="677" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1046.25" y="687.5" ></text>
+</g>
+<g >
+<title>__d_alloc (20,202,020 samples, 0.13%)</title><rect x="1050.3" y="613" width="1.7" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" />
+<text x="1053.25" y="623.5" ></text>
+</g>
+<g >
+<title>free_pgtables (10,101,010 samples, 0.06%)</title><rect x="328.7" y="597" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="331.73" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_table (10,101,010 samples, 0.06%)</title><rect x="396.2" y="597" width="0.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="399.15" y="607.5" ></text>
+</g>
+<g >
+<title>__vfs_getxattr (10,101,010 samples, 0.06%)</title><rect x="515.2" y="581" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="518.24" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="543.3" y="725" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="546.26" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.06%)</title><rect x="1010.0" y="613" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1012.97" y="623.5" ></text>
+</g>
+<g >
+<title>link (30,303,030 samples, 0.19%)</title><rect x="720.1" y="757" width="2.7" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="723.14" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="880.4" y="501" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="883.38" y="511.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="74.8" y="981" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="77.80" y="991.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="777.1" y="693" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="780.06" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1209.99" y="639.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="152.7" y="869" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="155.73" y="879.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="646.6" y="501" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="649.59" y="511.5" ></text>
+</g>
+<g >
+<title>vfs_statx (60,606,060 samples, 0.38%)</title><rect x="714.9" y="629" width="5.2" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="717.89" y="639.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="693" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1322.07" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="560.8" y="789" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="563.77" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (10,101,010 samples, 0.06%)</title><rect x="1031.0" y="501" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1033.99" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="546.8" y="629" width="0.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="549.76" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="725" width="0.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1258.15" y="735.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="1006.5" y="565" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1009.47" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="500.4" y="677" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="503.36" y="687.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="988.1" y="613" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="991.08" y="623.5" ></text>
+</g>
+<g >
+<title>ip_local_out (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="149" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1375.49" y="159.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="263.1" y="581" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="266.06" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="453.9" y="741" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="456.95" y="751.5" ></text>
+</g>
+<g >
+<title>git_remote_update_tips (898,989,890 samples, 5.65%)</title><rect x="912.8" y="853" width="77.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="915.78" y="863.5" >git_remot..</text>
+</g>
+<g >
+<title>ext4_read_block_bitmap (10,101,010 samples, 0.06%)</title><rect x="1172.0" y="549" width="0.8" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="1174.97" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="806.0" y="533" width="1.7" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="808.95" y="543.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="805" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1332.58" y="815.5" ></text>
+</g>
+<g >
+<title>cfree (30,303,030 samples, 0.19%)</title><rect x="398.8" y="821" width="2.6" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="401.78" y="831.5" ></text>
+</g>
+<g >
+<title>mas_wr_walk (20,202,020 samples, 0.13%)</title><rect x="1304.2" y="677" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1307.19" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="985.5" y="789" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="988.46" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="416.3" y="677" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="419.29" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (20,202,020 samples, 0.13%)</title><rect x="533.6" y="645" width="1.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="536.63" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="515.2" y="741" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="518.24" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="1341.8" y="901" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1344.84" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="1043.2" y="645" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1046.25" y="655.5" ></text>
+</g>
+<g >
+<title>inode_set_ctime_current (10,101,010 samples, 0.06%)</title><rect x="1066.0" y="677" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="1069.02" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (40,404,040 samples, 0.25%)</title><rect x="1000.3" y="597" width="3.5" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1003.34" y="607.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (90,909,090 samples, 0.57%)</title><rect x="410.2" y="741" width="7.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="413.16" y="751.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="748.2" y="517" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="751.16" y="527.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1192.1" y="677" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1195.11" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (60,606,060 samples, 0.38%)</title><rect x="366.4" y="757" width="5.2" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="369.38" y="767.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="691.2" y="597" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="694.24" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="739.4" y="645" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="742.40" y="655.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="523.1" y="613" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="526.12" y="623.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="770.1" y="533" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="773.05" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="958.3" y="389" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="961.31" y="399.5" ></text>
+</g>
+<g >
+<title>filemap_alloc_folio (10,101,010 samples, 0.06%)</title><rect x="805.1" y="549" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="808.08" y="559.5" ></text>
+</g>
+<g >
+<title>dd_bio_merge (10,101,010 samples, 0.06%)</title><rect x="1138.7" y="389" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1141.69" y="399.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="850.6" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="853.61" y="751.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="451.3" y="741" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="454.32" y="751.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="582.7" y="517" width="0.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="585.66" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="228.0" y="565" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="231.03" y="575.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="885" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1349.22" y="895.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="322.6" y="725" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="325.60" y="735.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (30,303,030 samples, 0.19%)</title><rect x="37.1" y="261" width="2.7" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="40.14" y="271.5" ></text>
+</g>
+<g >
+<title>do_poll.constprop.0 (50,505,050 samples, 0.32%)</title><rect x="24.9" y="837" width="4.4" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="27.89" y="847.5" ></text>
+</g>
+<g >
+<title>getdents64 (10,101,010 samples, 0.06%)</title><rect x="859.4" y="741" width="0.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="862.37" y="751.5" ></text>
+</g>
+<g >
+<title>unlink_cb (50,505,050 samples, 0.32%)</title><rect x="177.2" y="709" width="4.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="180.25" y="719.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (10,101,010 samples, 0.06%)</title><rect x="1334.8" y="53" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="1337.84" y="63.5" ></text>
+</g>
+<g >
+<title>ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="620.3" y="613" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="623.32" y="623.5" ></text>
+</g>
+<g >
+<title>write (10,101,010 samples, 0.06%)</title><rect x="72.2" y="837" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="75.17" y="847.5" ></text>
+</g>
+<g >
+<title>ip_rcv (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="373" width="2.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1336.08" y="383.5" ></text>
+</g>
+<g >
+<title>log_prefix_timestamp (40,404,040 samples, 0.25%)</title><rect x="1328.7" y="901" width="3.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1331.71" y="911.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="654.5" y="501" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="657.47" y="511.5" ></text>
+</g>
+<g >
+<title>nf_nat_ipv4_local_fn (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="661" width="1.8" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="1387.75" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="449.6" y="661" width="1.7" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="452.57" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="1045.0" y="549" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="1048.00" y="559.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="693" width="0.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1347.47" y="703.5" ></text>
+</g>
+<g >
+<title>net_rx_action (20,202,020 samples, 0.13%)</title><rect x="12.6" y="485" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="15.63" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="594.9" y="757" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="597.92" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1251.6" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1254.65" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="453.9" y="773" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="456.95" y="783.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="515.2" y="549" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="518.24" y="559.5" ></text>
+</g>
+<g >
+<title>link (121,212,120 samples, 0.76%)</title><rect x="597.6" y="773" width="10.5" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="600.55" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="392.7" y="645" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="395.65" y="655.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="157.1" y="853" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="160.11" y="863.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.06%)</title><rect x="985.5" y="629" width="0.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="988.46" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="453.9" y="629" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="456.95" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (20,202,020 samples, 0.13%)</title><rect x="337.5" y="645" width="1.7" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="340.49" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="564.3" y="597" width="1.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="567.28" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1231.5" y="533" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1234.51" y="543.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (40,404,040 samples, 0.25%)</title><rect x="1068.6" y="661" width="3.5" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="1071.64" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1235.9" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1238.89" y="751.5" ></text>
+</g>
+<g >
+<title>unlink_cb (313,131,310 samples, 1.97%)</title><rect x="371.6" y="821" width="27.2" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="374.64" y="831.5" >u..</text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="249.9" y="453" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="252.92" y="463.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="1363.7" y="453" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1366.73" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="714.9" y="533" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="717.89" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="951.3" y="565" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="954.31" y="575.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="725.4" y="581" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="728.39" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="362.0" y="533" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="365.01" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1115.1" y="725" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1118.05" y="735.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (10,101,010 samples, 0.06%)</title><rect x="13.5" y="261" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="16.50" y="271.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="511.7" y="565" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="514.74" y="575.5" ></text>
+</g>
+<g >
+<title>git_repository_config_snapshot (101,010,100 samples, 0.63%)</title><rect x="1254.3" y="837" width="8.7" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1257.28" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="1258.7" y="629" width="0.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1261.65" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="192.1" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="195.13" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="650.1" y="709" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="653.09" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="851.5" y="629" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="854.48" y="639.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="749.9" y="485" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="752.91" y="495.5" ></text>
+</g>
+<g >
+<title>readlink (20,202,020 samples, 0.13%)</title><rect x="1197.4" y="773" width="1.7" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="1200.36" y="783.5" ></text>
+</g>
+<g >
+<title>dup_task_struct (70,707,070 samples, 0.44%)</title><rect x="54.7" y="709" width="6.1" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="57.66" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1027.5" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1030.49" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="1193.9" y="533" width="0.8" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="1196.86" y="543.5" ></text>
+</g>
+<g >
+<title>list_lru_add (10,101,010 samples, 0.06%)</title><rect x="971.4" y="469" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="974.45" y="479.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="853.2" y="533" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="856.24" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="395.3" y="597" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="398.28" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (414,141,410 samples, 2.60%)</title><rect x="1145.7" y="725" width="35.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1148.70" y="735.5" >vfs..</text>
+</g>
+<g >
+<title>ext4_free_blocks (10,101,010 samples, 0.06%)</title><rect x="817.3" y="501" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="820.34" y="511.5" ></text>
+</g>
+<g >
+<title>file_modified (10,101,010 samples, 0.06%)</title><rect x="779.7" y="565" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="782.68" y="575.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="1158.8" y="613" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1161.83" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (242,424,240 samples, 1.52%)</title><rect x="1121.2" y="741" width="21.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1124.18" y="751.5" ></text>
+</g>
+<g >
+<title>__do_softirq (40,404,040 samples, 0.25%)</title><rect x="1363.7" y="485" width="3.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1366.73" y="495.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="535.4" y="629" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="538.38" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="894.4" y="693" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="897.39" y="703.5" ></text>
+</g>
+<g >
+<title>dput (101,010,100 samples, 0.63%)</title><rect x="1122.1" y="661" width="8.7" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1125.06" y="671.5" ></text>
+</g>
+<g >
+<title>libjson_recv (90,909,090 samples, 0.57%)</title><rect x="1352.3" y="885" width="7.9" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" />
+<text x="1355.35" y="895.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1035.4" y="421" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1038.37" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.19%)</title><rect x="380.4" y="533" width="2.6" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="383.39" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_write (40,404,040 samples, 0.25%)</title><rect x="515.2" y="693" width="3.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="518.24" y="703.5" ></text>
+</g>
+<g >
+<title>dup_mm.constprop.0 (434,343,430 samples, 2.73%)</title><rect x="1276.2" y="741" width="37.6" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="1279.17" y="751.5" >dup..</text>
+</g>
+<g >
+<title>__open64_nocancel (20,202,020 samples, 0.13%)</title><rect x="876.9" y="677" width="1.7" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="879.88" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="810.3" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="813.33" y="767.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="735.0" y="741" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="738.03" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="710.5" y="725" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="713.51" y="735.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="535.4" y="645" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="538.38" y="655.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="356.8" y="533" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="359.75" y="543.5" ></text>
+</g>
+<g >
+<title>storvsc_on_io_completion (10,101,010 samples, 0.06%)</title><rect x="631.7" y="501" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="634.70" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1260.4" y="709" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1263.41" y="719.5" ></text>
+</g>
+<g >
+<title>dquot_alloc_inode (10,101,010 samples, 0.06%)</title><rect x="79.2" y="837" width="0.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="82.18" y="847.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_dispatch_requests (20,202,020 samples, 0.13%)</title><rect x="665.9" y="405" width="1.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="668.85" y="415.5" ></text>
+</g>
+<g >
+<title>__fput (111,111,110 samples, 0.70%)</title><rect x="32.8" y="773" width="9.6" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="35.77" y="783.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_uncharge (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="693" width="0.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="1319.45" y="703.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="763.0" y="629" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="766.05" y="639.5" ></text>
+</g>
+<g >
+<title>dentry_free (10,101,010 samples, 0.06%)</title><rect x="33.6" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="36.64" y="735.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="725.4" y="613" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="728.39" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="440.8" y="597" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="443.81" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_xattr_security_get (10,101,010 samples, 0.06%)</title><rect x="779.7" y="485" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" />
+<text x="782.68" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="488.1" y="581" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="491.10" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_remove_blocks (30,303,030 samples, 0.19%)</title><rect x="383.9" y="581" width="2.6" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" />
+<text x="386.90" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1041.5" y="661" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1044.50" y="671.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="443.4" y="565" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="446.44" y="575.5" ></text>
+</g>
+<g >
+<title>blk_mq_get_tag (10,101,010 samples, 0.06%)</title><rect x="1136.9" y="389" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="1139.94" y="399.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="215.8" y="661" width="0.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="218.77" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="839.2" y="533" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="842.23" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_inode_block_valid (10,101,010 samples, 0.06%)</title><rect x="299.8" y="533" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="302.84" y="543.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="538.9" y="629" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="541.88" y="639.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="980.2" y="565" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="983.20" y="575.5" ></text>
+</g>
+<g >
+<title>__napi_poll (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="421" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1345.72" y="431.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="888.3" y="693" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="891.26" y="703.5" ></text>
+</g>
+<g >
+<title>unlink (20,202,020 samples, 0.13%)</title><rect x="211.4" y="709" width="1.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="214.40" y="719.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.06%)</title><rect x="1217.5" y="517" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1220.50" y="527.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="774.4" y="501" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="777.43" y="511.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1353.2" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1356.22" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (90,909,090 samples, 0.57%)</title><rect x="1041.5" y="693" width="7.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1044.50" y="703.5" ></text>
+</g>
+<g >
+<title>open64 (30,303,030 samples, 0.19%)</title><rect x="453.9" y="661" width="2.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="456.95" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="72.2" y="741" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="75.17" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.06%)</title><rect x="1127.3" y="437" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="1130.31" y="447.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="726.3" y="629" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="729.27" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="738.5" y="757" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="741.53" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (20,202,020 samples, 0.13%)</title><rect x="657.1" y="549" width="1.7" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="660.09" y="559.5" ></text>
+</g>
+<g >
+<title>do_rmdir (161,616,160 samples, 1.02%)</title><rect x="197.4" y="629" width="14.0" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="200.39" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="789" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1361.48" y="799.5" ></text>
+</g>
+<g >
+<title>ip_local_out (20,202,020 samples, 0.13%)</title><rect x="12.6" y="661" width="1.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="15.63" y="671.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="867.2" y="597" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="870.25" y="607.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.06%)</title><rect x="1154.5" y="677" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1157.45" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,868,686,840 samples, 18.02%)</title><rect x="169.4" y="869" width="248.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="172.37" y="879.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>vfs_rmdir (60,606,060 samples, 0.38%)</title><rect x="423.3" y="741" width="5.3" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="426.30" y="751.5" ></text>
+</g>
+<g >
+<title>git_config_free (10,101,010 samples, 0.06%)</title><rect x="830.5" y="837" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="833.47" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="354.1" y="565" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="357.12" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="153.6" y="965" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="156.60" y="975.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1013.5" y="789" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1016.48" y="799.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="677" width="1.7" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1361.48" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="114.2" y="741" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="117.20" y="751.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.06%)</title><rect x="604.6" y="533" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="607.56" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (10,101,010 samples, 0.06%)</title><rect x="310.3" y="645" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="313.34" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1219.3" y="645" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1222.25" y="655.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.06%)</title><rect x="569.5" y="549" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="572.53" y="559.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (20,202,020 samples, 0.13%)</title><rect x="1133.4" y="341" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1136.44" y="351.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (222,222,220 samples, 1.40%)</title><rect x="915.4" y="805" width="19.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="918.41" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (171,717,170 samples, 1.08%)</title><rect x="625.6" y="789" width="14.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="628.57" y="799.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (30,303,030 samples, 0.19%)</title><rect x="1341.8" y="661" width="2.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1344.84" y="671.5" ></text>
+</g>
+<g >
+<title>unlink_cb (50,505,050 samples, 0.32%)</title><rect x="404.0" y="837" width="4.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="407.04" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (30,303,030 samples, 0.19%)</title><rect x="425.1" y="677" width="2.6" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="428.05" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="208.8" y="341" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="211.77" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="1270.0" y="677" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1273.04" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="412.8" y="597" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="415.79" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="23.1" y="885" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="26.13" y="895.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="986.3" y="565" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="989.33" y="575.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="911.9" y="677" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="914.90" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_htree_fill_tree (10,101,010 samples, 0.06%)</title><rect x="505.6" y="645" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" />
+<text x="508.61" y="655.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="725" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1114.55" y="735.5" ></text>
+</g>
+<g >
+<title>set_cpus_allowed_ptr (10,101,010 samples, 0.06%)</title><rect x="51.2" y="677" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="54.15" y="687.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="1258.7" y="597" width="0.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="1261.65" y="607.5" ></text>
+</g>
+<g >
+<title>printbuf_memappend (10,101,010 samples, 0.06%)</title><rect x="1356.7" y="821" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1359.73" y="831.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (10,101,010 samples, 0.06%)</title><rect x="730.6" y="533" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="733.65" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_bread (202,020,200 samples, 1.27%)</title><rect x="1158.8" y="661" width="17.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1161.83" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.57%)</title><rect x="410.2" y="805" width="7.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="413.16" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="383.9" y="501" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="386.90" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_release_dir (10,101,010 samples, 0.06%)</title><rect x="608.9" y="677" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="611.93" y="687.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="581" width="4.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1380.74" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="858.5" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="861.49" y="735.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="87.1" y="725" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="90.06" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="709" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1243.27" y="719.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="28.4" y="789" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="31.39" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="296.3" y="437" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="299.33" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (50,505,050 samples, 0.32%)</title><rect x="247.3" y="645" width="4.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="250.30" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="1153.6" y="677" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="1156.58" y="687.5" ></text>
+</g>
+<g >
+<title>libjson_free (10,101,010 samples, 0.06%)</title><rect x="1350.6" y="885" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="1353.60" y="895.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (40,404,040 samples, 0.25%)</title><rect x="1266.5" y="741" width="3.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1269.54" y="751.5" ></text>
+</g>
+<g >
+<title>net_close (10,101,010 samples, 0.06%)</title><rect x="20.5" y="965" width="0.9" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="23.51" y="975.5" ></text>
+</g>
+<g >
+<title>__d_add (10,101,010 samples, 0.06%)</title><rect x="1327.0" y="677" width="0.8" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" />
+<text x="1329.95" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1197.4" y="645" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1200.36" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="1186.9" y="789" width="4.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1189.85" y="799.5" ></text>
+</g>
+<g >
+<title>wp_page_copy (10,101,010 samples, 0.06%)</title><rect x="1314.7" y="757" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1317.70" y="767.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (50,505,050 samples, 0.32%)</title><rect x="1363.7" y="581" width="4.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="1366.73" y="591.5" ></text>
+</g>
+<g >
+<title>__default_morecore (20,202,020 samples, 0.13%)</title><rect x="241.2" y="709" width="1.7" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="244.17" y="719.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="677" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="1116.30" y="687.5" ></text>
+</g>
+<g >
+<title>json_tokener_parse_ex (30,303,030 samples, 0.19%)</title><rect x="1355.0" y="837" width="2.6" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1357.97" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="629" width="5.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1102.29" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="1264.8" y="693" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="1267.78" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="785.8" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="788.81" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (40,404,040 samples, 0.25%)</title><rect x="295.5" y="485" width="3.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="298.46" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="739.4" y="629" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="742.40" y="639.5" ></text>
+</g>
+<g >
+<title>fprintf (10,101,010 samples, 0.06%)</title><rect x="430.3" y="869" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="433.30" y="879.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.13%)</title><rect x="1183.4" y="725" width="1.7" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1186.35" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="501.2" y="597" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="504.23" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="758.7" y="661" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="761.67" y="671.5" ></text>
+</g>
+<g >
+<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="341" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="1037.49" y="351.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="773" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1022.61" y="783.5" ></text>
+</g>
+<g >
+<title>apparmor_file_permission (10,101,010 samples, 0.06%)</title><rect x="615.1" y="677" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="618.06" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="735.9" y="709" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="738.90" y="719.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="1223.6" y="629" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1226.63" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="180.7" y="389" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" />
+<text x="183.75" y="399.5" ></text>
+</g>
+<g >
+<title>geteuid (10,101,010 samples, 0.06%)</title><rect x="910.2" y="805" width="0.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="913.15" y="815.5" ></text>
+</g>
+<g >
+<title>__memset (20,202,020 samples, 0.13%)</title><rect x="708.8" y="517" width="1.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="711.76" y="527.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (10,101,010 samples, 0.06%)</title><rect x="1349.7" y="853" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1352.72" y="863.5" ></text>
+</g>
+<g >
+<title>nd_jump_root (10,101,010 samples, 0.06%)</title><rect x="1076.5" y="645" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="1079.52" y="655.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="890.9" y="709" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="893.89" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="243.8" y="741" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="246.79" y="751.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="485" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1014.73" y="495.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="850.6" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="853.61" y="703.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (10,101,010 samples, 0.06%)</title><rect x="845.4" y="677" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="848.36" y="687.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (30,303,030 samples, 0.19%)</title><rect x="575.7" y="565" width="2.6" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="578.66" y="575.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (50,505,050 samples, 0.32%)</title><rect x="1006.5" y="629" width="4.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="1009.47" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="482.8" y="661" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="485.84" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="642.2" y="741" width="5.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="645.21" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="482.0" y="629" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="484.97" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_data_ready (10,101,010 samples, 0.06%)</title><rect x="13.5" y="277" width="0.9" height="15.0" fill="rgb(0,217,113)" rx="2" ry="2" />
+<text x="16.50" y="287.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="536.3" y="725" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="539.26" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (10,101,010 samples, 0.06%)</title><rect x="1055.5" y="629" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="1058.51" y="639.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_pre_alloc_hook (20,202,020 samples, 0.13%)</title><rect x="1079.1" y="565" width="1.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1082.15" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_add (20,202,020 samples, 0.13%)</title><rect x="200.0" y="581" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="203.01" y="591.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="482.0" y="565" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="484.97" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="757" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1235.39" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="693" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1235.39" y="703.5" ></text>
+</g>
+<g >
+<title>copy_page_range (131,313,130 samples, 0.82%)</title><rect x="1282.3" y="709" width="11.4" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="1285.30" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="208.8" y="373" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="211.77" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="782.3" y="533" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="785.31" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="1264.8" y="725" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1267.78" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1229.8" y="709" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1232.76" y="719.5" ></text>
+</g>
+<g >
+<title>filemap_get_entry (10,101,010 samples, 0.06%)</title><rect x="248.2" y="485" width="0.8" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="251.17" y="495.5" ></text>
+</g>
+<g >
+<title>alloc_pages_mpol (10,101,010 samples, 0.06%)</title><rect x="805.1" y="517" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="808.08" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="323.5" y="613" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="326.48" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (444,444,440 samples, 2.79%)</title><rect x="1143.1" y="789" width="38.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1146.07" y="799.5" >do_..</text>
+</g>
+<g >
+<title>__x64_sys_unlink (60,606,060 samples, 0.38%)</title><rect x="306.0" y="677" width="5.2" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="308.96" y="687.5" ></text>
+</g>
+<g >
+<title>__fput_sync (111,111,110 samples, 0.70%)</title><rect x="32.8" y="789" width="9.6" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="35.77" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.57%)</title><rect x="916.3" y="773" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="919.28" y="783.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1209.6" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1212.62" y="719.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (20,202,020 samples, 0.13%)</title><rect x="617.7" y="565" width="1.7" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="620.69" y="575.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="437" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1221.38" y="447.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (90,909,090 samples, 0.57%)</title><rect x="410.2" y="757" width="7.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="413.16" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (303,030,300 samples, 1.90%)</title><rect x="804.2" y="837" width="26.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="807.20" y="847.5" >[..</text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (80,808,080 samples, 0.51%)</title><rect x="901.4" y="741" width="7.0" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="904.40" y="751.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.06%)</title><rect x="713.1" y="581" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="716.13" y="591.5" ></text>
+</g>
+<g >
+<title>ip_rcv_finish_core.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1343.6" y="341" width="0.9" height="15.0" fill="rgb(0,192,11)" rx="2" ry="2" />
+<text x="1346.59" y="351.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.13%)</title><rect x="906.6" y="613" width="1.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="909.65" y="623.5" ></text>
+</g>
+<g >
+<title>xas_load (10,101,010 samples, 0.06%)</title><rect x="248.2" y="469" width="0.8" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="251.17" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (90,909,090 samples, 0.57%)</title><rect x="202.6" y="565" width="7.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="205.64" y="575.5" ></text>
+</g>
+<g >
+<title>filemap_flush (60,606,060 samples, 0.38%)</title><rect x="791.9" y="581" width="5.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="794.94" y="591.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="453" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1221.38" y="463.5" ></text>
+</g>
+<g >
+<title>nft_update_chain_stats (10,101,010 samples, 0.06%)</title><rect x="35.4" y="485" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="38.39" y="495.5" ></text>
+</g>
+<g >
+<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="341.9" y="581" width="0.8" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="344.87" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mb_complex_scan_group (20,202,020 samples, 0.13%)</title><rect x="589.7" y="501" width="1.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="592.67" y="511.5" ></text>
+</g>
+<g >
+<title>radix_tree_lookup (10,101,010 samples, 0.06%)</title><rect x="1324.3" y="725" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1327.33" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (131,313,130 samples, 0.82%)</title><rect x="245.5" y="725" width="11.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="248.55" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="505.6" y="725" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="508.61" y="735.5" ></text>
+</g>
+<g >
+<title>git_signature_free (10,101,010 samples, 0.06%)</title><rect x="158.9" y="837" width="0.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="161.86" y="847.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="404.0" y="789" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="407.04" y="799.5" ></text>
+</g>
+<g >
+<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="714.9" y="565" width="1.7" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="717.89" y="575.5" ></text>
+</g>
+<g >
+<title>unlink_cb (303,030,300 samples, 1.90%)</title><rect x="340.1" y="805" width="26.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="343.11" y="815.5" >u..</text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (20,202,020 samples, 0.13%)</title><rect x="179.9" y="469" width="1.7" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="182.87" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.06%)</title><rect x="1127.3" y="469" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1130.31" y="479.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="926.8" y="533" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="929.79" y="543.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="1223.6" y="581" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="1226.63" y="591.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="916.3" y="517" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="919.28" y="527.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="1250.8" y="549" width="0.8" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="1253.77" y="559.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="315.6" y="629" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="318.60" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="789" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1349.22" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (131,313,130 samples, 0.82%)</title><rect x="786.7" y="709" width="11.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="789.69" y="719.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited_flags (10,101,010 samples, 0.06%)</title><rect x="775.3" y="517" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="778.30" y="527.5" ></text>
+</g>
+<g >
+<title>mas_find (10,101,010 samples, 0.06%)</title><rect x="242.0" y="581" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="245.04" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (80,808,080 samples, 0.51%)</title><rect x="1266.5" y="757" width="7.0" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1269.54" y="767.5" ></text>
+</g>
+<g >
+<title>git_error_set (10,101,010 samples, 0.06%)</title><rect x="862.0" y="709" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="864.99" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="1124.7" y="565" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1127.68" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_read_block_bitmap (10,101,010 samples, 0.06%)</title><rect x="587.0" y="485" width="0.9" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" />
+<text x="590.04" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="824.3" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="827.34" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1270.9" y="645" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1273.91" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_write (40,404,040 samples, 0.25%)</title><rect x="1068.6" y="709" width="3.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1071.64" y="719.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="969.7" y="725" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="972.70" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="855.9" y="805" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="858.86" y="815.5" ></text>
+</g>
+<g >
+<title>block_write_end (10,101,010 samples, 0.06%)</title><rect x="517.0" y="613" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" />
+<text x="519.99" y="623.5" ></text>
+</g>
+<g >
+<title>readlink (10,101,010 samples, 0.06%)</title><rect x="757.8" y="725" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="760.79" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (30,303,030 samples, 0.19%)</title><rect x="897.9" y="629" width="2.6" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="900.89" y="639.5" ></text>
+</g>
+<g >
+<title>rename (151,515,150 samples, 0.95%)</title><rect x="836.6" y="773" width="13.1" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="839.60" y="783.5" ></text>
+</g>
+<g >
+<title>__folio_batch_release (10,101,010 samples, 0.06%)</title><rect x="658.8" y="533" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" />
+<text x="661.85" y="543.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (40,404,040 samples, 0.25%)</title><rect x="658.8" y="549" width="3.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="661.85" y="559.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="709" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1116.30" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="925.9" y="597" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="928.91" y="607.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.06%)</title><rect x="1236.8" y="565" width="0.8" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="1239.76" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (151,515,150 samples, 0.95%)</title><rect x="1028.4" y="693" width="13.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1031.36" y="703.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.06%)</title><rect x="751.7" y="645" width="0.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="754.66" y="655.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.06%)</title><rect x="263.1" y="485" width="0.8" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="266.06" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (121,212,120 samples, 0.76%)</title><rect x="897.9" y="773" width="10.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="900.89" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (10,101,010 samples, 0.06%)</title><rect x="932.0" y="453" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="935.04" y="463.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (141,414,140 samples, 0.89%)</title><rect x="951.3" y="597" width="12.3" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="954.31" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_setent (10,101,010 samples, 0.06%)</title><rect x="1040.6" y="597" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="1043.62" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="486.3" y="741" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="489.35" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="869" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1349.22" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.06%)</title><rect x="505.6" y="661" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="508.61" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="685.1" y="661" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="688.11" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="437" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1040.99" y="447.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="1114.2" y="757" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1117.18" y="767.5" ></text>
+</g>
+<g >
+<title>ipv4_conntrack_local (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="101" width="0.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1375.49" y="111.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="471.5" y="757" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="474.46" y="767.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="778.8" y="709" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="781.81" y="719.5" ></text>
+</g>
+<g >
+<title>client_create (252,525,250 samples, 1.59%)</title><rect x="44.1" y="901" width="21.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="47.15" y="911.5" >c..</text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="853.2" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="856.24" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.57%)</title><rect x="1221.0" y="741" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1224.00" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1256.0" y="709" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1259.03" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="750.8" y="709" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="753.79" y="719.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_state (10,101,010 samples, 0.06%)</title><rect x="400.5" y="517" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="403.53" y="527.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="539.8" y="741" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="542.76" y="751.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="501.2" y="661" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="504.23" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_es_can_be_merged.isra.0 (10,101,010 samples, 0.06%)</title><rect x="806.8" y="501" width="0.9" height="15.0" fill="rgb(0,227,159)" rx="2" ry="2" />
+<text x="809.83" y="511.5" ></text>
+</g>
+<g >
+<title>request_create_new_worker (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="949" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1392.12" y="959.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (111,111,110 samples, 0.70%)</title><rect x="144.0" y="949" width="9.6" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="146.97" y="959.5" ></text>
+</g>
+<g >
+<title>ip_output (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="613" width="5.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1372.86" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1123.8" y="533" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="1126.81" y="543.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (10,101,010 samples, 0.06%)</title><rect x="402.3" y="677" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="405.28" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (10,101,010 samples, 0.06%)</title><rect x="737.7" y="661" width="0.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="740.65" y="671.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1129.1" y="565" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1132.06" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="979.3" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="982.33" y="671.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_free_hook (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="709" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="1319.45" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="355.0" y="549" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="358.00" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="710.5" y="629" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="713.51" y="639.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="1043.2" y="613" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1046.25" y="623.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.06%)</title><rect x="269.2" y="565" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="272.19" y="575.5" ></text>
+</g>
+<g >
+<title>git_reference_list (202,020,200 samples, 1.27%)</title><rect x="874.3" y="821" width="17.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="877.25" y="831.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="613" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1188.98" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="966.2" y="597" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="969.19" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="750.8" y="581" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="753.79" y="591.5" ></text>
+</g>
+<g >
+<title>do_vmi_align_munmap (30,303,030 samples, 0.19%)</title><rect x="398.8" y="661" width="2.6" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="401.78" y="671.5" ></text>
+</g>
+<g >
+<title>htree_dirblock_to_tree (20,202,020 samples, 0.13%)</title><rect x="880.4" y="533" width="1.7" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="883.38" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="595.8" y="661" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="598.80" y="671.5" ></text>
+</g>
+<g >
+<title>ksys_write (30,303,030 samples, 0.19%)</title><rect x="707.9" y="629" width="2.6" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="710.88" y="639.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="580.9" y="549" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="583.91" y="559.5" ></text>
+</g>
+<g >
+<title>git_refdb_open (40,404,040 samples, 0.25%)</title><rect x="1239.4" y="821" width="3.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="1242.39" y="831.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="482.0" y="581" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="484.97" y="591.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="495.1" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="498.10" y="703.5" ></text>
+</g>
+<g >
+<title>inode_init_always (10,101,010 samples, 0.06%)</title><rect x="989.0" y="597" width="0.8" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="991.96" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="214.0" y="725" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="217.02" y="735.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="629" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1026.11" y="639.5" ></text>
+</g>
+<g >
+<title>__block_commit_write (10,101,010 samples, 0.06%)</title><rect x="541.5" y="597" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="544.51" y="607.5" ></text>
+</g>
+<g >
+<title>__fdget_pos (10,101,010 samples, 0.06%)</title><rect x="614.2" y="693" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="617.19" y="703.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="855.0" y="741" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="857.99" y="751.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="734.1" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="737.15" y="655.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.06%)</title><rect x="732.4" y="485" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="735.40" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_find_entry (20,202,020 samples, 0.13%)</title><rect x="469.7" y="661" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="472.71" y="671.5" ></text>
+</g>
+<g >
+<title>do_unlinkat (10,101,010 samples, 0.06%)</title><rect x="211.4" y="629" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="214.40" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (515,151,510 samples, 3.24%)</title><rect x="866.4" y="837" width="44.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="869.37" y="847.5" >[lib..</text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="770.1" y="677" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="773.05" y="687.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="889.1" y="533" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="892.14" y="543.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_set_param_int (20,202,020 samples, 0.13%)</title><rect x="18.8" y="965" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="21.76" y="975.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="268.3" y="517" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="271.31" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (10,101,010 samples, 0.06%)</title><rect x="1236.8" y="677" width="0.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1239.76" y="687.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="597" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1348.34" y="607.5" ></text>
+</g>
+<g >
+<title>ipv4_conntrack_local (20,202,020 samples, 0.13%)</title><rect x="1362.0" y="581" width="1.7" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1364.98" y="591.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="156.2" y="789" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="159.23" y="799.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (242,424,240 samples, 1.52%)</title><rect x="1121.2" y="677" width="21.0" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="1124.18" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="192.1" y="677" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="195.13" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="979.3" y="389" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="982.33" y="399.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.06%)</title><rect x="1197.4" y="629" width="0.8" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="1200.36" y="639.5" ></text>
+</g>
+<g >
+<title>do_writepages (70,707,070 samples, 0.44%)</title><rect x="1034.5" y="533" width="6.1" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1037.49" y="543.5" ></text>
+</g>
+<g >
+<title>free_page_and_swap_cache (10,101,010 samples, 0.06%)</title><rect x="35.4" y="341" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="38.39" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (50,505,050 samples, 0.32%)</title><rect x="1006.5" y="645" width="4.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1009.47" y="655.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="663.2" y="501" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="666.22" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (20,202,020 samples, 0.13%)</title><rect x="806.0" y="549" width="1.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="808.95" y="559.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="597" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1209.99" y="607.5" ></text>
+</g>
+<g >
+<title>find_lock_entries (20,202,020 samples, 0.13%)</title><rect x="387.4" y="613" width="1.7" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" />
+<text x="390.40" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="846.2" y="565" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="849.23" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1266.5" y="709" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1269.54" y="719.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.06%)</title><rect x="856.7" y="613" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="859.74" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="228.0" y="533" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="231.03" y="543.5" ></text>
+</g>
+<g >
+<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="1363.7" y="341" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1366.73" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="426.8" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="429.80" y="559.5" ></text>
+</g>
+<g >
+<title>__pmd_alloc (10,101,010 samples, 0.06%)</title><rect x="1283.2" y="677" width="0.8" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="1286.17" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_readdir (50,505,050 samples, 0.32%)</title><rect x="332.2" y="693" width="4.4" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="335.23" y="703.5" ></text>
+</g>
+<g >
+<title>sd_uninit_command (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="245" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="1140.82" y="255.5" ></text>
+</g>
+<g >
+<title>truncate_inode_partial_folio (30,303,030 samples, 0.19%)</title><rect x="659.7" y="533" width="2.6" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="662.72" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1197.4" y="741" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1200.36" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="837" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1319.45" y="847.5" ></text>
+</g>
+<g >
+<title>do_writepages (40,404,040 samples, 0.25%)</title><rect x="930.3" y="581" width="3.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="933.29" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="892.6" y="629" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="895.64" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (20,202,020 samples, 0.13%)</title><rect x="657.1" y="565" width="1.7" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="660.09" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (60,606,060 samples, 0.38%)</title><rect x="24.0" y="885" width="5.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="27.01" y="895.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1009.1" y="565" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="1012.10" y="575.5" ></text>
+</g>
+<g >
+<title>readdir64 (10,101,010 samples, 0.06%)</title><rect x="859.4" y="757" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="862.37" y="767.5" ></text>
+</g>
+<g >
+<title>__check_heap_object (10,101,010 samples, 0.06%)</title><rect x="905.8" y="453" width="0.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="908.77" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.19%)</title><rect x="289.3" y="533" width="2.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="292.33" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="903.1" y="613" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="906.15" y="623.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="546.8" y="613" width="0.8" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="549.76" y="623.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="805.1" y="565" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="808.08" y="575.5" ></text>
+</g>
+<g >
+<title>path_put (10,101,010 samples, 0.06%)</title><rect x="370.8" y="693" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="373.76" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="424.2" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="427.18" y="671.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="476.7" y="549" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="479.71" y="559.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="448.7" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="451.69" y="639.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="367.3" y="693" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="370.26" y="703.5" ></text>
+</g>
+<g >
+<title>alloc_pages (10,101,010 samples, 0.06%)</title><rect x="791.1" y="485" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="794.07" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (90,909,090 samples, 0.57%)</title><rect x="654.5" y="581" width="7.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="657.47" y="591.5" ></text>
+</g>
+<g >
+<title>_IO_file_write (10,101,010 samples, 0.06%)</title><rect x="72.2" y="853" width="0.8" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" />
+<text x="75.17" y="863.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="535.4" y="725" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="538.38" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="775.3" y="661" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="778.30" y="671.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_uncharge_skmem (10,101,010 samples, 0.06%)</title><rect x="1359.4" y="613" width="0.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="1362.35" y="623.5" ></text>
+</g>
+<g >
+<title>rmdir (50,505,050 samples, 0.32%)</title><rect x="177.2" y="677" width="4.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="180.25" y="687.5" ></text>
+</g>
+<g >
+<title>vfs_rename (70,707,070 samples, 0.44%)</title><rect x="928.5" y="693" width="6.2" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="931.54" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="204.4" y="453" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="207.39" y="463.5" ></text>
+</g>
+<g >
+<title>__close (10,101,010 samples, 0.06%)</title><rect x="1219.3" y="677" width="0.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1222.25" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1037.1" y="453" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1040.12" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="978.5" y="693" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="981.45" y="703.5" ></text>
+</g>
+<g >
+<title>git_index_write (80,808,080 samples, 0.51%)</title><rect x="539.8" y="869" width="7.0" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="542.76" y="879.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (50,505,050 samples, 0.32%)</title><rect x="322.6" y="693" width="4.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="325.60" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_pipe2 (20,202,020 samples, 0.13%)</title><rect x="1321.7" y="821" width="1.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1324.70" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="684.2" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="687.24" y="751.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="327.9" y="677" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="330.86" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="114.2" y="773" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="117.20" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_match (10,101,010 samples, 0.06%)</title><rect x="1080.9" y="581" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="1083.90" y="591.5" ></text>
+</g>
+<g >
+<title>unlink_cb (90,909,090 samples, 0.57%)</title><rect x="184.3" y="725" width="7.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="187.25" y="735.5" ></text>
+</g>
+<g >
+<title>dput (50,505,050 samples, 0.32%)</title><rect x="1028.4" y="645" width="4.3" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1031.36" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="895.3" y="741" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="898.27" y="751.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.06%)</title><rect x="730.6" y="517" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="733.65" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_mkdir (343,434,340 samples, 2.16%)</title><rect x="564.3" y="661" width="29.7" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="567.28" y="671.5" >vf..</text>
+</g>
+<g >
+<title>__ip_local_out (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="693" width="1.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1387.75" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.06%)</title><rect x="815.6" y="565" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="818.58" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="216.6" y="725" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="219.65" y="735.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="579.2" y="581" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="582.16" y="591.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="805" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1188.98" y="815.5" ></text>
+</g>
+<g >
+<title>kernel_clone (464,646,460 samples, 2.92%)</title><rect x="1273.5" y="773" width="40.3" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1276.54" y="783.5" >ker..</text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="778.8" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="781.81" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (30,303,030 samples, 0.19%)</title><rect x="467.1" y="533" width="2.6" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="470.08" y="543.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (555,555,550 samples, 3.49%)</title><rect x="95.8" y="917" width="48.2" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="98.81" y="927.5" >do_s..</text>
+</g>
+<g >
+<title>__x64_sys_write (30,303,030 samples, 0.19%)</title><rect x="539.8" y="725" width="2.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="542.76" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="447.8" y="645" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="450.82" y="655.5" ></text>
+</g>
+<g >
+<title>process_backlog (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="405" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1345.72" y="415.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="80.1" y="757" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="83.05" y="767.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (50,505,050 samples, 0.32%)</title><rect x="35.4" y="613" width="4.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="38.39" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_empty_dir (30,303,030 samples, 0.19%)</title><rect x="270.1" y="613" width="2.6" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="273.06" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1022.2" y="725" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1025.23" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="736.8" y="709" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="739.78" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="890.0" y="517" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="893.01" y="527.5" ></text>
+</g>
+<g >
+<title>delete_from_page_cache_batch (20,202,020 samples, 0.13%)</title><rect x="172.9" y="485" width="1.7" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="175.87" y="495.5" ></text>
+</g>
+<g >
+<title>libjson_has (10,101,010 samples, 0.06%)</title><rect x="1351.5" y="821" width="0.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1354.47" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="180.7" y="341" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="183.75" y="351.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="990.7" y="805" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="993.71" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="610.7" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="613.69" y="751.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="921.5" y="693" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" />
+<text x="924.54" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="203.5" y="517" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="206.52" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_rmdir (40,404,040 samples, 0.25%)</title><rect x="198.3" y="597" width="3.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="201.26" y="607.5" ></text>
+</g>
+<g >
+<title>step_into (10,101,010 samples, 0.06%)</title><rect x="1233.3" y="597" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1236.26" y="607.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="734.1" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="737.15" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_check_dir_entry (10,101,010 samples, 0.06%)</title><rect x="233.3" y="549" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="236.29" y="559.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.06%)</title><rect x="394.4" y="581" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="397.40" y="591.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="1231.5" y="645" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="1234.51" y="655.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="608.1" y="773" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="611.06" y="783.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="834.8" y="613" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="837.85" y="623.5" ></text>
+</g>
+<g >
+<title>__mod_node_page_state (10,101,010 samples, 0.06%)</title><rect x="400.5" y="501" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="403.53" y="511.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="1235.9" y="677" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1238.89" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="784.9" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="787.94" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="878.6" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="881.63" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1045.0" y="533" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1048.00" y="543.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="734.1" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="737.15" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="442.6" y="661" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="445.56" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="548.5" y="677" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="551.52" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1042.4" y="629" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1045.37" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="198.3" y="565" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="201.26" y="575.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="974.1" y="453" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="977.07" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_rename2 (40,404,040 samples, 0.25%)</title><rect x="846.2" y="661" width="3.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="849.23" y="671.5" ></text>
+</g>
+<g >
+<title>tasklet_action (10,101,010 samples, 0.06%)</title><rect x="631.7" y="565" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="634.70" y="575.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="197" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1375.49" y="207.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="177.2" y="629" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="180.25" y="639.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="631.7" y="581" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="634.70" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (50,505,050 samples, 0.32%)</title><rect x="206.1" y="549" width="4.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="209.14" y="559.5" ></text>
+</g>
+<g >
+<title>filemap_flush (90,909,090 samples, 0.57%)</title><rect x="1132.6" y="597" width="7.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1135.56" y="607.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1066.9" y="677" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1069.89" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (10,101,010 samples, 0.06%)</title><rect x="859.4" y="677" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="862.37" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="182.5" y="725" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="185.50" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_mkdir (111,111,110 samples, 0.70%)</title><rect x="696.5" y="597" width="9.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="699.50" y="607.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (60,606,060 samples, 0.38%)</title><rect x="1257.8" y="773" width="5.2" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1260.78" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="972.3" y="565" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="975.32" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="524.0" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="527.00" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_gettid (10,101,010 samples, 0.06%)</title><rect x="70.4" y="869" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="73.42" y="879.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="408.4" y="773" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="411.41" y="783.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="787.6" y="533" width="0.8" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="790.56" y="543.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="661" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1371.98" y="671.5" ></text>
+</g>
+<g >
+<title>unlink (10,101,010 samples, 0.06%)</title><rect x="428.6" y="837" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="431.55" y="847.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="741" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1202.11" y="751.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (10,101,010 samples, 0.06%)</title><rect x="1388.2" y="741" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1391.25" y="751.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="984.6" y="549" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="987.58" y="559.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="437" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" />
+<text x="1348.34" y="447.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="448.7" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="451.69" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (282,828,280 samples, 1.78%)</title><rect x="341.0" y="725" width="24.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="343.99" y="735.5" >x..</text>
+</g>
+<g >
+<title>ipv4_conntrack_local (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="245" width="0.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1390.37" y="255.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="926.8" y="581" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="929.79" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_orphan_del (10,101,010 samples, 0.06%)</title><rect x="816.5" y="581" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="819.46" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="837" width="6.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1335.21" y="847.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="422.4" y="725" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="425.42" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (30,303,030 samples, 0.19%)</title><rect x="11.8" y="725" width="2.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="14.75" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="341" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1040.99" y="351.5" ></text>
+</g>
+<g >
+<title>srso_alias_return_thunk (10,101,010 samples, 0.06%)</title><rect x="12.6" y="293" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="15.63" y="303.5" ></text>
+</g>
+<g >
+<title>__task_pid_nr_ns (10,101,010 samples, 0.06%)</title><rect x="241.2" y="469" width="0.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="244.17" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (30,303,030 samples, 0.19%)</title><rect x="462.7" y="629" width="2.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="465.70" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1014.4" y="677" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1017.35" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_rearm_rto (10,101,010 samples, 0.06%)</title><rect x="1376.9" y="693" width="0.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1379.87" y="703.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="867.2" y="693" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="870.25" y="703.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (40,404,040 samples, 0.25%)</title><rect x="432.9" y="821" width="3.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="435.93" y="831.5" ></text>
+</g>
+<g >
+<title>d_lru_del (10,101,010 samples, 0.06%)</title><rect x="786.7" y="613" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="789.69" y="623.5" ></text>
+</g>
+<g >
+<title>path_openat (545,454,540 samples, 3.43%)</title><rect x="95.8" y="885" width="47.3" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="98.81" y="895.5" >path..</text>
+</g>
+<g >
+<title>iterate_dir (10,101,010 samples, 0.06%)</title><rect x="1237.6" y="677" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="1240.64" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="172.0" y="453" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="174.99" y="463.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="309" width="2.6" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1336.08" y="319.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="898.8" y="597" width="1.7" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="901.77" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="713.1" y="629" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="716.13" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="373" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1390.37" y="383.5" ></text>
+</g>
+<g >
+<title>jsonrpc_check_version (10,101,010 samples, 0.06%)</title><rect x="1351.5" y="869" width="0.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="1354.47" y="879.5" ></text>
+</g>
+<g >
+<title>libjson_get (10,101,010 samples, 0.06%)</title><rect x="1351.5" y="837" width="0.8" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" />
+<text x="1354.47" y="847.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (2,999,999,970 samples, 18.85%)</title><rect x="169.4" y="885" width="260.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="172.37" y="895.5" >[libc.so.6]</text>
+</g>
+<g >
+<title>snprintf (10,101,010 samples, 0.06%)</title><rect x="1331.3" y="885" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="1334.33" y="895.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.06%)</title><rect x="633.5" y="597" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="636.45" y="607.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (30,303,030 samples, 0.19%)</title><rect x="1310.3" y="693" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1313.32" y="703.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (70,707,070 samples, 0.44%)</title><rect x="839.2" y="661" width="6.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="842.23" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1241.1" y="613" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1244.14" y="623.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="108.1" y="645" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="111.07" y="655.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (10,101,010 samples, 0.06%)</title><rect x="1129.9" y="549" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="1132.94" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_mb_clear_bb (10,101,010 samples, 0.06%)</title><rect x="658.0" y="469" width="0.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="660.97" y="479.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="835.7" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="838.72" y="719.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (20,202,020 samples, 0.13%)</title><rect x="717.5" y="565" width="1.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="720.51" y="575.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="580.0" y="581" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="583.04" y="591.5" ></text>
+</g>
+<g >
+<title>generic_update_time (10,101,010 samples, 0.06%)</title><rect x="435.6" y="645" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="438.56" y="655.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.06%)</title><rect x="930.3" y="485" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" />
+<text x="933.29" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1029.61" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="154.5" y="901" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="157.48" y="911.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="1235.9" y="693" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="1238.89" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="749.0" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="752.04" y="671.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1209.99" y="655.5" ></text>
+</g>
+<g >
+<title>alloc_user_cpus_ptr (10,101,010 samples, 0.06%)</title><rect x="58.2" y="677" width="0.8" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" />
+<text x="61.16" y="687.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="189.5" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="192.51" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="165.9" y="853" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="168.86" y="863.5" ></text>
+</g>
+<g >
+<title>inet_recvmsg (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="693" width="1.7" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" />
+<text x="1361.48" y="703.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="725.4" y="549" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="728.39" y="559.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (10,101,010 samples, 0.06%)</title><rect x="123.0" y="725" width="0.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="125.96" y="735.5" ></text>
+</g>
+<g >
+<title>blk_mq_run_hw_queue (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="405" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1037.49" y="415.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="379.5" y="613" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="382.52" y="623.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.06%)</title><rect x="924.2" y="677" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="927.16" y="687.5" ></text>
+</g>
+<g >
+<title>net_send_part (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="885" width="7.9" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="1363.23" y="895.5" ></text>
+</g>
+<g >
+<title>path_put (20,202,020 samples, 0.13%)</title><rect x="1260.4" y="645" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1263.41" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (10,101,010 samples, 0.06%)</title><rect x="1031.0" y="517" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="1033.99" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="520.5" y="805" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="523.49" y="815.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (60,606,060 samples, 0.38%)</title><rect x="366.4" y="773" width="5.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="369.38" y="783.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="863.7" y="581" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="866.74" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="187.8" y="501" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="190.75" y="511.5" ></text>
+</g>
+<g >
+<title>scsi_queue_rq (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="325" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1037.49" y="335.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="484.6" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="487.59" y="719.5" ></text>
+</g>
+<g >
+<title>json_object_object_add_ex (10,101,010 samples, 0.06%)</title><rect x="1348.8" y="869" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1351.85" y="879.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="442.6" y="677" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="445.56" y="687.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="859.4" y="693" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="862.37" y="703.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_final (40,404,040 samples, 0.25%)</title><rect x="386.5" y="645" width="3.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" />
+<text x="389.52" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="475.8" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="478.84" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="692.1" y="581" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="695.12" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1100.2" y="405" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1103.16" y="415.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="995.1" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="998.09" y="687.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="847.1" y="565" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="850.11" y="575.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (30,303,030 samples, 0.19%)</title><rect x="1078.3" y="581" width="2.6" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="1081.27" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="324.4" y="597" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="327.35" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (40,404,040 samples, 0.25%)</title><rect x="549.4" y="629" width="3.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="552.39" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="31.9" y="837" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="34.89" y="847.5" ></text>
+</g>
+<g >
+<title>mktime (10,101,010 samples, 0.06%)</title><rect x="802.4" y="757" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="805.45" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_rename (171,717,170 samples, 1.08%)</title><rect x="664.1" y="629" width="14.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="667.10" y="639.5" ></text>
+</g>
+<g >
+<title>d_lru_add (10,101,010 samples, 0.06%)</title><rect x="719.3" y="549" width="0.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="722.26" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="228.9" y="517" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="231.91" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="222.8" y="565" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="225.78" y="575.5" ></text>
+</g>
+<g >
+<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.06%)</title><rect x="201.8" y="565" width="0.8" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" />
+<text x="204.76" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="219.3" y="645" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="222.28" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.06%)</title><rect x="960.9" y="437" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="963.94" y="447.5" ></text>
+</g>
+<g >
+<title>ima_file_check (10,101,010 samples, 0.06%)</title><rect x="749.0" y="565" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="752.04" y="575.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1094.9" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1097.91" y="623.5" ></text>
+</g>
+<g >
+<title>libjson_send (50,505,050 samples, 0.32%)</title><rect x="10.9" y="965" width="4.4" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="13.88" y="975.5" ></text>
+</g>
+<g >
+<title>brk (20,202,020 samples, 0.13%)</title><rect x="241.2" y="677" width="1.7" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" />
+<text x="244.17" y="687.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (70,707,070 samples, 0.44%)</title><rect x="1034.5" y="549" width="6.1" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="1037.49" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1036.2" y="437" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1039.24" y="447.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="741.2" y="469" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="744.15" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1193.9" y="501" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1196.86" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="780.6" y="661" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="783.56" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="158.0" y="885" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="160.98" y="895.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="985.5" y="709" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="988.46" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1122.9" y="485" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1125.93" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (404,040,400 samples, 2.54%)</title><rect x="768.3" y="789" width="35.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="771.30" y="799.5" >[l..</text>
+</g>
+<g >
+<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="1048.5" y="661" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" />
+<text x="1051.50" y="671.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="631.7" y="597" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="634.70" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.57%)</title><rect x="1201.7" y="725" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1204.74" y="735.5" ></text>
+</g>
+<g >
+<title>__next_zones_zonelist (10,101,010 samples, 0.06%)</title><rect x="1007.3" y="517" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1010.35" y="527.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="455.7" y="533" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="458.70" y="543.5" ></text>
+</g>
+<g >
+<title>should_failslab.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="597" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1217.00" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="432.1" y="821" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="435.06" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="769.2" y="677" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="772.18" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="531.9" y="677" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="534.88" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1192.1" y="693" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1195.11" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="211.4" y="661" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="214.40" y="671.5" ></text>
+</g>
+<g >
+<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="896.1" y="581" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="899.14" y="591.5" ></text>
+</g>
+<g >
+<title>vm_area_free_rcu_cb (10,101,010 samples, 0.06%)</title><rect x="918.0" y="437" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" />
+<text x="921.03" y="447.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="266.6" y="533" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="269.56" y="543.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="254.3" y="597" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="257.30" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="211.4" y="693" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="214.40" y="703.5" ></text>
+</g>
+<g >
+<title>shrink_dentry_list (10,101,010 samples, 0.06%)</title><rect x="304.2" y="629" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="307.21" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="816.5" y="565" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="819.46" y="575.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="813.0" y="565" width="0.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="815.96" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="821" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1361.48" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (252,525,250 samples, 1.59%)</title><rect x="804.2" y="789" width="21.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="807.20" y="799.5" >[..</text>
+</g>
+<g >
+<title>ext4_map_blocks (30,303,030 samples, 0.19%)</title><rect x="669.4" y="485" width="2.6" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="672.35" y="495.5" ></text>
+</g>
+<g >
+<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="856.7" y="725" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="859.74" y="735.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="771.8" y="501" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="774.80" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (131,313,130 samples, 0.82%)</title><rect x="245.5" y="693" width="11.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="248.55" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="693" width="2.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1336.08" y="703.5" ></text>
+</g>
+<g >
+<title>__napi_poll (20,202,020 samples, 0.13%)</title><rect x="12.6" y="469" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="15.63" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="896.1" y="725" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="899.14" y="735.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="870.7" y="629" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="873.75" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_child_process (10,101,010 samples, 0.06%)</title><rect x="1342.7" y="277" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1345.72" y="287.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1256.0" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1259.03" y="623.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="409.3" y="709" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" />
+<text x="412.29" y="719.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1197.73" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_rename (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="613" width="5.2" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1102.29" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1323.5" y="853" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1326.45" y="863.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="482.0" y="597" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="484.97" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="656.2" y="533" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="659.22" y="543.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="706.1" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="709.13" y="671.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="377.8" y="613" width="0.8" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="380.77" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1047.6" y="645" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1050.63" y="655.5" ></text>
+</g>
+<g >
+<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="944.3" y="485" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" />
+<text x="947.30" y="495.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1209.6" y="725" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1212.62" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (40,404,040 samples, 0.25%)</title><rect x="805.1" y="613" width="3.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="808.08" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (171,717,170 samples, 1.08%)</title><rect x="1161.5" y="629" width="14.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1164.46" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="732.4" y="677" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="735.40" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.70%)</title><rect x="996.0" y="757" width="9.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="998.96" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="277" width="2.6" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="1367.61" y="287.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (60,606,060 samples, 0.38%)</title><rect x="791.9" y="565" width="5.3" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="794.94" y="575.5" ></text>
+</g>
+<g >
+<title>sock_alloc_file (10,101,010 samples, 0.06%)</title><rect x="1341.0" y="837" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="1343.96" y="847.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="709" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1114.55" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1197.73" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1029.61" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="645" width="3.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1091.78" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="20.5" y="901" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="23.51" y="911.5" ></text>
+</g>
+<g >
+<title>release_pages (10,101,010 samples, 0.06%)</title><rect x="429.4" y="645" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="432.43" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="191.3" y="517" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="194.26" y="527.5" ></text>
+</g>
+<g >
+<title>shrink_dcache_parent (10,101,010 samples, 0.06%)</title><rect x="210.5" y="597" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="213.52" y="607.5" ></text>
+</g>
+<g >
+<title>capable_wrt_inode_uidgid (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="597" width="0.8" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1258.15" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (50,505,050 samples, 0.32%)</title><rect x="418.9" y="789" width="4.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="421.92" y="799.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (20,202,020 samples, 0.13%)</title><rect x="884.8" y="629" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="887.76" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="790.2" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="793.19" y="575.5" ></text>
+</g>
+<g >
+<title>__getblk_slow (10,101,010 samples, 0.06%)</title><rect x="701.8" y="501" width="0.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="704.75" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="545.9" y="709" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="548.89" y="719.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="366.4" y="693" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="369.38" y="703.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="168.5" y="773" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="171.49" y="783.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="902.3" y="645" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="905.27" y="655.5" ></text>
+</g>
+<g >
+<title>ksys_write (40,404,040 samples, 0.25%)</title><rect x="805.1" y="661" width="3.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="808.08" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="791.1" y="581" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="794.07" y="591.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.06%)</title><rect x="552.9" y="709" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="555.89" y="719.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_handle_packet (10,101,010 samples, 0.06%)</title><rect x="1362.9" y="549" width="0.8" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="1365.86" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="1080.9" y="613" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="1083.90" y="623.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="531.9" y="613" width="1.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="534.88" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="974.9" y="725" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="977.95" y="735.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="702.6" y="389" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="705.63" y="399.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_commit_charge (10,101,010 samples, 0.06%)</title><rect x="1006.5" y="533" width="0.8" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="1009.47" y="543.5" ></text>
+</g>
+<g >
+<title>insert_inode_locked (10,101,010 samples, 0.06%)</title><rect x="120.3" y="805" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="123.33" y="815.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="986.3" y="741" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="989.33" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (30,303,030 samples, 0.19%)</title><rect x="1108.9" y="565" width="2.6" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="1111.92" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="1257.8" y="757" width="5.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1260.78" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (40,404,040 samples, 0.25%)</title><rect x="217.5" y="693" width="3.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="220.53" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg_locked (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="661" width="1.7" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" />
+<text x="1361.48" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="418.9" y="821" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="421.92" y="831.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_uncharge_pages (10,101,010 samples, 0.06%)</title><rect x="784.9" y="565" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="787.94" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="824.3" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="827.34" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="813.8" y="581" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="816.83" y="591.5" ></text>
+</g>
+<g >
+<title>apparmor_path_rename.part.0 (10,101,010 samples, 0.06%)</title><rect x="820.0" y="645" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="822.96" y="655.5" ></text>
+</g>
+<g >
+<title>libjson_set_string_internal (10,101,010 samples, 0.06%)</title><rect x="1348.0" y="869" width="0.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1350.97" y="879.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="726.3" y="709" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="729.27" y="719.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (30,303,030 samples, 0.19%)</title><rect x="787.6" y="613" width="2.6" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="790.56" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="548.5" y="869" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="551.52" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (10,101,010 samples, 0.06%)</title><rect x="407.5" y="645" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="410.54" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (80,808,080 samples, 0.51%)</title><rect x="1361.1" y="741" width="7.0" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" />
+<text x="1364.10" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (30,303,030 samples, 0.19%)</title><rect x="696.5" y="581" width="2.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="699.50" y="591.5" ></text>
+</g>
+<g >
+<title>do_wp_page (20,202,020 samples, 0.13%)</title><rect x="1313.8" y="773" width="1.8" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" />
+<text x="1316.82" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_ack (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="677" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="1371.98" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="834.8" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="837.85" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="993.3" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="996.34" y="815.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.06%)</title><rect x="924.2" y="789" width="0.8" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="927.16" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="883.9" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="886.88" y="687.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="364.6" y="661" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="367.63" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="689.5" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="692.49" y="671.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="1083.5" y="549" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1086.53" y="559.5" ></text>
+</g>
+<g >
+<title>sock_rfree (10,101,010 samples, 0.06%)</title><rect x="1359.4" y="645" width="0.8" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="1362.35" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_truncate (80,808,080 samples, 0.51%)</title><rect x="356.8" y="613" width="7.0" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="359.75" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_unlink (121,212,120 samples, 0.76%)</title><rect x="226.3" y="613" width="10.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="229.28" y="623.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="645" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1116.30" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (20,202,020 samples, 0.13%)</title><rect x="148.4" y="821" width="1.7" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="151.35" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="757" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" />
+<text x="1349.22" y="767.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1183.4" y="661" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1186.35" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="518.7" y="805" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="521.74" y="815.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="511.7" y="581" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="514.74" y="591.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="550.3" y="517" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="553.27" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (30,303,030 samples, 0.19%)</title><rect x="174.6" y="565" width="2.6" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="177.62" y="575.5" ></text>
+</g>
+<g >
+<title>free_pages_and_swap_cache (10,101,010 samples, 0.06%)</title><rect x="429.4" y="661" width="0.9" height="15.0" fill="rgb(0,207,75)" rx="2" ry="2" />
+<text x="432.43" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="864.6" y="613" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="867.62" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="154.5" y="869" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="157.48" y="879.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="714.9" y="549" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="717.89" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="394.4" y="645" width="2.6" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="397.40" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1011.7" y="757" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1014.73" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="482.8" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="485.84" y="719.5" ></text>
+</g>
+<g >
+<title>xfrm_lookup_route (10,101,010 samples, 0.06%)</title><rect x="1377.7" y="213" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1380.74" y="223.5" ></text>
+</g>
+<g >
+<title>vfs_link (70,707,070 samples, 0.44%)</title><rect x="601.9" y="677" width="6.2" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="604.93" y="687.5" ></text>
+</g>
+<g >
+<title>__filemap_fdatawrite_range (20,202,020 samples, 0.13%)</title><rect x="822.6" y="597" width="1.7" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="825.59" y="607.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="485.5" y="597" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="488.47" y="607.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (565,656,560 samples, 3.55%)</title><rect x="24.0" y="1013" width="49.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="27.01" y="1023.5" >[lib..</text>
+</g>
+<g >
+<title>git_object_lookup_prefix (20,202,020 samples, 0.13%)</title><rect x="546.8" y="869" width="1.7" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="549.76" y="879.5" ></text>
+</g>
+<g >
+<title>nf_nat_inet_fn (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="645" width="1.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1387.75" y="655.5" ></text>
+</g>
+<g >
+<title>dentry_free (20,202,020 samples, 0.13%)</title><rect x="302.5" y="581" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="305.46" y="591.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="549" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1221.38" y="559.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (20,202,020 samples, 0.13%)</title><rect x="1108.9" y="549" width="1.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="1111.92" y="559.5" ></text>
+</g>
+<g >
+<title>fsnotify (10,101,010 samples, 0.06%)</title><rect x="544.1" y="709" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="547.14" y="719.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (121,212,120 samples, 0.76%)</title><rect x="695.6" y="629" width="10.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="698.62" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (515,151,510 samples, 3.24%)</title><rect x="260.4" y="693" width="44.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="263.43" y="703.5" >x64_..</text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="551.1" y="597" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="554.14" y="607.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="546.8" y="581" width="0.8" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="549.76" y="591.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (20,202,020 samples, 0.13%)</title><rect x="1143.9" y="709" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1146.95" y="719.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="563.4" y="629" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="566.40" y="639.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="263.9" y="613" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="266.93" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="412.8" y="613" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="415.79" y="623.5" ></text>
+</g>
+<g >
+<title>worker_destroy (10,101,010 samples, 0.06%)</title><rect x="20.5" y="981" width="0.9" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="23.51" y="991.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (10,101,010 samples, 0.06%)</title><rect x="511.7" y="645" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="514.74" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (20,202,020 samples, 0.13%)</title><rect x="932.0" y="517" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="935.04" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="527.5" y="805" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="530.50" y="815.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="235.0" y="485" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="238.04" y="495.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (121,212,120 samples, 0.76%)</title><rect x="529.3" y="837" width="10.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="532.25" y="847.5" ></text>
+</g>
+<g >
+<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="565" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1014.73" y="575.5" ></text>
+</g>
+<g >
+<title>mntput (10,101,010 samples, 0.06%)</title><rect x="370.8" y="677" width="0.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="373.76" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1147.4" y="581" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1150.45" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="524.0" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="527.00" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="389.1" y="597" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="392.15" y="607.5" ></text>
+</g>
+<g >
+<title>get_rsvd (10,101,010 samples, 0.06%)</title><rect x="841.0" y="517" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="843.98" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="206.1" y="469" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="209.14" y="479.5" ></text>
+</g>
+<g >
+<title>git_odb_read_header (30,303,030 samples, 0.19%)</title><rect x="978.5" y="773" width="2.6" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="981.45" y="783.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="741" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1231.88" y="751.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="714.9" y="469" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="717.89" y="479.5" ></text>
+</g>
+<g >
+<title>rcu_core_si (10,101,010 samples, 0.06%)</title><rect x="1236.8" y="597" width="0.8" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="1239.76" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="955.7" y="501" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="958.69" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="356.8" y="581" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="359.75" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="984.6" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="987.58" y="687.5" ></text>
+</g>
+<g >
+<title>count_rsvd.isra.0 (10,101,010 samples, 0.06%)</title><rect x="323.5" y="549" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" />
+<text x="326.48" y="559.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="1224.5" y="549" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="1227.51" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1041.5" y="645" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1044.50" y="655.5" ></text>
+</g>
+<g >
+<title>mod_timer (10,101,010 samples, 0.06%)</title><rect x="38.0" y="133" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="41.02" y="143.5" ></text>
+</g>
+<g >
+<title>git_object_lookup_prefix (80,808,080 samples, 0.51%)</title><rect x="520.5" y="837" width="7.0" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="523.49" y="847.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="531.9" y="629" width="1.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="534.88" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="556.4" y="821" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="559.40" y="831.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1192.1" y="629" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1195.11" y="639.5" ></text>
+</g>
+<g >
+<title>d_lookup (10,101,010 samples, 0.06%)</title><rect x="104.6" y="837" width="0.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="107.57" y="847.5" ></text>
+</g>
+<g >
+<title>ext4_read_block_bitmap_nowait (10,101,010 samples, 0.06%)</title><rect x="702.6" y="421" width="0.9" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="705.63" y="431.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="306.0" y="725" width="5.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="308.96" y="735.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.06%)</title><rect x="1158.0" y="597" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1160.96" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="948.7" y="581" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="951.68" y="591.5" ></text>
+</g>
+<g >
+<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="731.5" y="517" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="734.52" y="527.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (101,010,100 samples, 0.63%)</title><rect x="811.2" y="661" width="8.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="814.21" y="671.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (101,010,100 samples, 0.63%)</title><rect x="996.0" y="693" width="8.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="998.96" y="703.5" ></text>
+</g>
+<g >
+<title>wait_transaction_locked (10,101,010 samples, 0.06%)</title><rect x="278.8" y="517" width="0.9" height="15.0" fill="rgb(0,217,113)" rx="2" ry="2" />
+<text x="281.82" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (202,020,200 samples, 1.27%)</title><rect x="1221.0" y="789" width="17.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1224.00" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.70%)</title><rect x="598.4" y="757" width="9.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="601.43" y="767.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="629" width="1.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1235.39" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_ext_insert_extent (10,101,010 samples, 0.06%)</title><rect x="958.3" y="469" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="961.31" y="479.5" ></text>
+</g>
+<g >
+<title>vfs_open (20,202,020 samples, 0.13%)</title><rect x="100.2" y="853" width="1.7" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="103.19" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (30,303,030 samples, 0.19%)</title><rect x="707.9" y="581" width="2.6" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="710.88" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (232,323,230 samples, 1.46%)</title><rect x="1242.9" y="853" width="20.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1245.89" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1029.2" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1032.24" y="527.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="741" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="1098.79" y="751.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1045.0" y="565" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1048.00" y="575.5" ></text>
+</g>
+<g >
+<title>should_failslab.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="335.7" y="661" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="338.74" y="671.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.06%)</title><rect x="948.7" y="485" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="951.68" y="495.5" ></text>
+</g>
+<g >
+<title>apparmor_file_alloc_security (10,101,010 samples, 0.06%)</title><rect x="1341.0" y="741" width="0.8" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="1343.96" y="751.5" ></text>
+</g>
+<g >
+<title>path_openat (111,111,110 samples, 0.70%)</title><rect x="1049.4" y="693" width="9.6" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="1052.38" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="984.6" y="565" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="987.58" y="575.5" ></text>
+</g>
+<g >
+<title>iterate_dir (20,202,020 samples, 0.13%)</title><rect x="505.6" y="693" width="1.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="508.61" y="703.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="980.2" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="983.20" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1042.4" y="597" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1045.37" y="607.5" ></text>
+</g>
+<g >
+<title>net_rx_action (40,404,040 samples, 0.25%)</title><rect x="36.3" y="389" width="3.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="39.27" y="399.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="651.8" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="654.84" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="821.7" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="824.71" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="539.8" y="853" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="542.76" y="863.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="645.7" y="725" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="648.71" y="735.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (20,202,020 samples, 0.13%)</title><rect x="460.1" y="709" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="463.08" y="719.5" ></text>
+</g>
+<g >
+<title>__find_get_block_slow (10,101,010 samples, 0.06%)</title><rect x="1160.6" y="597" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="1163.58" y="607.5" ></text>
+</g>
+<g >
+<title>blk_mq_sched_try_merge (10,101,010 samples, 0.06%)</title><rect x="466.2" y="405" width="0.9" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" />
+<text x="469.21" y="415.5" ></text>
+</g>
+<g >
+<title>stat64 (10,101,010 samples, 0.06%)</title><rect x="871.6" y="709" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="874.62" y="719.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="597" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1026.11" y="607.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.06%)</title><rect x="306.8" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="309.84" y="655.5" ></text>
+</g>
+<g >
+<title>net_close (101,010,100 samples, 0.63%)</title><rect x="1368.1" y="949" width="8.8" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1371.11" y="959.5" ></text>
+</g>
+<g >
+<title>__d_instantiate (10,101,010 samples, 0.06%)</title><rect x="126.5" y="789" width="0.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="129.46" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_file_open (10,101,010 samples, 0.06%)</title><rect x="101.1" y="821" width="0.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="104.07" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (151,515,150 samples, 0.95%)</title><rect x="950.4" y="645" width="13.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="953.43" y="655.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1098.79" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="1088.8" y="517" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="1091.78" y="527.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="502.1" y="581" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="505.11" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (60,606,060 samples, 0.38%)</title><rect x="306.0" y="693" width="5.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="308.96" y="703.5" ></text>
+</g>
+<g >
+<title>__block_commit_write (10,101,010 samples, 0.06%)</title><rect x="646.6" y="533" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="649.59" y="543.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="1193.0" y="581" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1195.98" y="591.5" ></text>
+</g>
+<g >
+<title>alloc_empty_file (20,202,020 samples, 0.13%)</title><rect x="918.0" y="581" width="1.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" />
+<text x="921.03" y="591.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="791.1" y="549" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="794.07" y="559.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (171,717,170 samples, 1.08%)</title><rect x="625.6" y="725" width="14.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="628.57" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="834.8" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="837.85" y="735.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="492.5" y="597" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="495.47" y="607.5" ></text>
+</g>
+<g >
+<title>__memset (20,202,020 samples, 0.13%)</title><rect x="231.5" y="565" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="234.54" y="575.5" ></text>
+</g>
+<g >
+<title>__brelse (10,101,010 samples, 0.06%)</title><rect x="1145.7" y="693" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1148.70" y="703.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="580.9" y="533" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="583.91" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.57%)</title><rect x="769.2" y="709" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="772.18" y="719.5" ></text>
+</g>
+<g >
+<title>evict (70,707,070 samples, 0.44%)</title><rect x="839.2" y="613" width="6.2" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="842.23" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="990.7" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="993.71" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="453.9" y="757" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="456.95" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="911.0" y="805" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="914.03" y="815.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.06%)</title><rect x="745.5" y="501" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="748.53" y="511.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (20,202,020 samples, 0.13%)</title><rect x="12.6" y="437" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="15.63" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_bread (111,111,110 samples, 0.70%)</title><rect x="582.7" y="597" width="9.6" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="585.66" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="697.4" y="565" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="700.37" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="730.6" y="741" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="733.65" y="751.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="85.3" y="741" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="88.30" y="751.5" ></text>
+</g>
+<g >
+<title>release_sock (70,707,070 samples, 0.44%)</title><rect x="1376.9" y="773" width="6.1" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1379.87" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="1214.9" y="693" width="5.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1217.87" y="703.5" ></text>
+</g>
+<g >
+<title>sock_put (10,101,010 samples, 0.06%)</title><rect x="1371.6" y="293" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1374.61" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="272.7" y="533" width="1.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="275.69" y="543.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="725" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1188.98" y="735.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (80,808,080 samples, 0.51%)</title><rect x="1361.1" y="757" width="7.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1364.10" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="835.7" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="838.72" y="703.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (50,505,050 samples, 0.32%)</title><rect x="862.0" y="821" width="4.4" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="864.99" y="831.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="320.0" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="322.97" y="671.5" ></text>
+</g>
+<g >
+<title>nft_update_chain_stats (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="629" width="0.8" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="1347.47" y="639.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="882.1" y="629" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="885.13" y="639.5" ></text>
+</g>
+<g >
+<title>fstatat64 (60,606,060 samples, 0.38%)</title><rect x="366.4" y="821" width="5.2" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="369.38" y="831.5" ></text>
+</g>
+<g >
+<title>anon_vma_fork (50,505,050 samples, 0.32%)</title><rect x="1277.9" y="709" width="4.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1280.92" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="1080.9" y="629" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1083.90" y="639.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="1336.6" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1339.59" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="198.3" y="549" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="201.26" y="559.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="760.4" y="629" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="763.42" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="940.8" y="661" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="943.80" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="974.9" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="977.95" y="607.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="592.3" y="517" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="595.30" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="732.4" y="597" width="1.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="735.40" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (50,505,050 samples, 0.32%)</title><rect x="184.3" y="565" width="4.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="187.25" y="575.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.3.0] (10,101,010 samples, 0.06%)</title><rect x="10.9" y="853" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="13.88" y="863.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="249.9" y="485" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="252.92" y="495.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="775.3" y="645" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="778.30" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1246.4" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1249.40" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_tree_init (10,101,010 samples, 0.06%)</title><rect x="80.1" y="837" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="83.05" y="847.5" ></text>
+</g>
+<g >
+<title>file_close_fd (10,101,010 samples, 0.06%)</title><rect x="20.5" y="869" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" />
+<text x="23.51" y="879.5" ></text>
+</g>
+<g >
+<title>ext4_append (90,909,090 samples, 0.57%)</title><rect x="955.7" y="549" width="7.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="958.69" y="559.5" ></text>
+</g>
+<g >
+<title>rcu_report_qs_rdp (10,101,010 samples, 0.06%)</title><rect x="235.0" y="437" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="238.04" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (171,717,170 samples, 1.08%)</title><rect x="125.6" y="821" width="14.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="128.58" y="831.5" ></text>
+</g>
+<g >
+<title>ip_local_out (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="613" width="4.4" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1380.74" y="623.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="863.7" y="677" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="866.74" y="687.5" ></text>
+</g>
+<g >
+<title>do_writepages (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="533" width="5.2" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1102.29" y="543.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="482.0" y="709" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="484.97" y="719.5" ></text>
+</g>
+<g >
+<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="970.6" y="517" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="973.57" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="860.2" y="821" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="863.24" y="831.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1193.0" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1195.98" y="607.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="1083.5" y="709" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1086.53" y="719.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="790.2" y="597" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="793.19" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="903.1" y="645" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="906.15" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (30,303,030 samples, 0.19%)</title><rect x="425.1" y="645" width="2.6" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="428.05" y="655.5" ></text>
+</g>
+<g >
+<title>touch_atime (40,404,040 samples, 0.25%)</title><rect x="253.4" y="661" width="3.5" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="256.43" y="671.5" ></text>
+</g>
+<g >
+<title>iput (50,505,050 samples, 0.32%)</title><rect x="184.3" y="597" width="4.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="187.25" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1270.9" y="693" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1273.91" y="703.5" ></text>
+</g>
+<g >
+<title>open64 (40,404,040 samples, 0.25%)</title><rect x="918.0" y="709" width="3.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="921.03" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1181.6" y="789" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1184.60" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (70,707,070 samples, 0.44%)</title><rect x="357.6" y="597" width="6.2" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="360.63" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="112.4" y="709" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="115.45" y="719.5" ></text>
+</g>
+<g >
+<title>security_d_instantiate (10,101,010 samples, 0.06%)</title><rect x="127.3" y="789" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="130.34" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="547.6" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="550.64" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="487.2" y="757" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="490.22" y="767.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="809.5" y="661" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="812.45" y="671.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_from_json (10,101,010 samples, 0.06%)</title><rect x="1351.5" y="885" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1354.47" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="159.7" y="821" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="162.73" y="831.5" ></text>
+</g>
+<g >
+<title>write (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="821" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1349.22" y="831.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1258.7" y="661" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1261.65" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.57%)</title><rect x="866.4" y="821" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="869.37" y="831.5" ></text>
+</g>
+<g >
+<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="343.6" y="629" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="346.62" y="639.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="757.8" y="581" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="760.79" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="937.3" y="613" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="940.30" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (30,303,030 samples, 0.19%)</title><rect x="1001.2" y="581" width="2.6" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="1004.22" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (10,101,010 samples, 0.06%)</title><rect x="209.6" y="437" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="212.64" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_dx_readdir (10,101,010 samples, 0.06%)</title><rect x="1237.6" y="645" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="1240.64" y="655.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (10,101,010 samples, 0.06%)</title><rect x="35.4" y="501" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="38.39" y="511.5" ></text>
+</g>
+<g >
+<title>ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="12.6" y="693" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="15.63" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (30,303,030 samples, 0.19%)</title><rect x="1341.8" y="725" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1344.84" y="735.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.06%)</title><rect x="652.7" y="757" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="655.72" y="767.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.63%)</title><rect x="1264.8" y="853" width="8.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1267.78" y="863.5" ></text>
+</g>
+<g >
+<title>alloc_file_pseudo (10,101,010 samples, 0.06%)</title><rect x="1322.6" y="773" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1325.58" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_ext_map_blocks (20,202,020 samples, 0.13%)</title><rect x="793.7" y="453" width="1.7" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" />
+<text x="796.69" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1321.7" y="853" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1324.70" y="863.5" ></text>
+</g>
+<g >
+<title>insert_inode_locked (10,101,010 samples, 0.06%)</title><rect x="1150.1" y="677" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" />
+<text x="1153.08" y="687.5" ></text>
+</g>
+<g >
+<title>get_current_fs_domain (10,101,010 samples, 0.06%)</title><rect x="919.8" y="501" width="0.9" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="922.78" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="963.6" y="677" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="966.57" y="687.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (40,404,040 samples, 0.25%)</title><rect x="1363.7" y="469" width="3.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1366.73" y="479.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="876.0" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="879.00" y="687.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="757.8" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="760.79" y="607.5" ></text>
+</g>
+<g >
+<title>__dentry_kill (40,404,040 samples, 0.25%)</title><rect x="925.0" y="677" width="3.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="928.04" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="357" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1348.34" y="367.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="681.6" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="684.61" y="799.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="896.1" y="597" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="899.14" y="607.5" ></text>
+</g>
+<g >
+<title>__es_remove_extent (20,202,020 samples, 0.13%)</title><rect x="358.5" y="565" width="1.8" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" />
+<text x="361.50" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="325" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1040.99" y="335.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1250.8" y="613" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1253.77" y="623.5" ></text>
+</g>
+<g >
+<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="1363.7" y="405" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="1366.73" y="415.5" ></text>
+</g>
+<g >
+<title>tcp_v4_connect (20,202,020 samples, 0.13%)</title><rect x="1344.5" y="789" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1347.47" y="799.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (111,111,110 samples, 0.70%)</title><rect x="582.7" y="581" width="9.6" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="585.66" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1258.7" y="677" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1261.65" y="687.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="482.8" y="741" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="485.84" y="751.5" ></text>
+</g>
+<g >
+<title>getname (10,101,010 samples, 0.06%)</title><rect x="904.9" y="549" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" />
+<text x="907.90" y="559.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="219.3" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="222.28" y="639.5" ></text>
+</g>
+<g >
+<title>do_faccessat (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="725" width="1.7" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="1019.98" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_ext_remove_space (10,101,010 samples, 0.06%)</title><rect x="817.3" y="549" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="820.34" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (505,050,500 samples, 3.17%)</title><rect x="686.0" y="805" width="43.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="688.99" y="815.5" >[lib..</text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="855.9" y="821" width="4.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="858.86" y="831.5" ></text>
+</g>
+<g >
+<title>copy_process (141,414,140 samples, 0.89%)</title><rect x="50.3" y="725" width="12.2" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" />
+<text x="53.28" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="1030.1" y="517" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="1033.11" y="527.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="966.2" y="709" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="969.19" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="651.8" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="654.84" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_socket (20,202,020 samples, 0.13%)</title><rect x="1340.1" y="869" width="1.7" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1343.09" y="879.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1219.3" y="565" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1222.25" y="575.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (20,202,020 samples, 0.13%)</title><rect x="1362.0" y="613" width="1.7" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="1364.98" y="623.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (30,303,030 samples, 0.19%)</title><rect x="154.5" y="837" width="2.6" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="157.48" y="847.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.06%)</title><rect x="563.4" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="566.40" y="655.5" ></text>
+</g>
+<g >
+<title>__lookup_slow (20,202,020 samples, 0.13%)</title><rect x="487.2" y="597" width="1.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="490.22" y="607.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1207.9" y="613" width="0.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" />
+<text x="1210.87" y="623.5" ></text>
+</g>
+<g >
+<title>[libjson-c.so.5.3.0] (10,101,010 samples, 0.06%)</title><rect x="1348.0" y="853" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1350.97" y="863.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (20,202,020 samples, 0.13%)</title><rect x="12.6" y="709" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="15.63" y="719.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="20.5" y="885" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="23.51" y="895.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1106.3" y="693" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1109.29" y="703.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1217.00" y="671.5" ></text>
+</g>
+<g >
+<title>filename_create (10,101,010 samples, 0.06%)</title><rect x="950.4" y="597" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" />
+<text x="953.43" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="608.9" y="773" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="611.93" y="783.5" ></text>
+</g>
+<g >
+<title>atime_needs_update (10,101,010 samples, 0.06%)</title><rect x="439.9" y="517" width="0.9" height="15.0" fill="rgb(0,202,51)" rx="2" ry="2" />
+<text x="442.94" y="527.5" ></text>
+</g>
+<g >
+<title>__schedule (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="725" width="1.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1322.95" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="1001.2" y="533" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1004.22" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.13%)</title><rect x="1183.4" y="741" width="1.7" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1186.35" y="751.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (111,111,110 samples, 0.70%)</title><rect x="530.1" y="773" width="9.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="533.13" y="783.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="932.0" y="405" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="935.04" y="415.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1108.42" y="719.5" ></text>
+</g>
+<g >
+<title>path_init (10,101,010 samples, 0.06%)</title><rect x="154.5" y="805" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="157.48" y="815.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="365.5" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="368.51" y="735.5" ></text>
+</g>
+<g >
+<title>apparmor_inode_unlink (10,101,010 samples, 0.06%)</title><rect x="390.9" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="393.90" y="687.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (20,202,020 samples, 0.13%)</title><rect x="18.8" y="885" width="1.7" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="21.76" y="895.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1192.1" y="773" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1195.11" y="783.5" ></text>
+</g>
+<g >
+<title>begin_current_label_crit_section (10,101,010 samples, 0.06%)</title><rect x="820.0" y="629" width="0.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="822.96" y="639.5" ></text>
+</g>
+<g >
+<title>_IO_file_xsputn (20,202,020 samples, 0.13%)</title><rect x="558.1" y="821" width="1.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="561.15" y="831.5" ></text>
+</g>
+<g >
+<title>inet_create (10,101,010 samples, 0.06%)</title><rect x="1340.1" y="821" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="1343.09" y="831.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="92.3" y="981" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="95.31" y="991.5" ></text>
+</g>
+<g >
+<title>dput (40,404,040 samples, 0.25%)</title><rect x="925.0" y="693" width="3.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="928.04" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="533.6" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="536.63" y="687.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="645" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1235.39" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_symlink (30,303,030 samples, 0.19%)</title><rect x="1060.8" y="741" width="2.6" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1063.76" y="751.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="1082.7" y="645" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1085.65" y="655.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="916.3" y="629" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="919.28" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_read_inode_bitmap (10,101,010 samples, 0.06%)</title><rect x="223.7" y="581" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="226.65" y="591.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="749.9" y="421" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="752.91" y="431.5" ></text>
+</g>
+<g >
+<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="219.3" y="565" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="222.28" y="575.5" ></text>
+</g>
+<g >
+<title>security_path_rename (10,101,010 samples, 0.06%)</title><rect x="820.0" y="677" width="0.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="822.96" y="687.5" ></text>
+</g>
+<g >
+<title>read (10,101,010 samples, 0.06%)</title><rect x="904.0" y="629" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" />
+<text x="907.02" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="422.4" y="677" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="425.42" y="687.5" ></text>
+</g>
+<g >
+<title>pthread_rwlock_wrlock (10,101,010 samples, 0.06%)</title><rect x="693.9" y="693" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" />
+<text x="696.87" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="603.7" y="629" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="606.68" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="982.8" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="985.83" y="671.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="821" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1248.52" y="831.5" ></text>
+</g>
+<g >
+<title>do_linkat (20,202,020 samples, 0.13%)</title><rect x="721.0" y="677" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="724.02" y="687.5" ></text>
+</g>
+<g >
+<title>inet_hash_connect (10,101,010 samples, 0.06%)</title><rect x="1383.9" y="773" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1386.87" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_close (90,909,090 samples, 0.57%)</title><rect x="1369.0" y="757" width="7.9" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" />
+<text x="1371.98" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="569.5" y="581" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="572.53" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1027.5" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1030.49" y="735.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="405.8" y="565" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="408.79" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="839.2" y="549" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="842.23" y="559.5" ></text>
+</g>
+<g >
+<title>link (10,101,010 samples, 0.06%)</title><rect x="735.9" y="757" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" />
+<text x="738.90" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="867.2" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="870.25" y="671.5" ></text>
+</g>
+<g >
+<title>__get_free_pages (10,101,010 samples, 0.06%)</title><rect x="791.1" y="501" width="0.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="794.07" y="511.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1217.5" y="549" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1220.50" y="559.5" ></text>
+</g>
+<g >
+<title>open_last_lookups (50,505,050 samples, 0.32%)</title><rect x="770.9" y="565" width="4.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" />
+<text x="773.93" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1206.1" y="661" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1209.12" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="193.0" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="196.01" y="703.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (40,404,040 samples, 0.25%)</title><rect x="918.0" y="629" width="3.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="921.03" y="639.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="570.4" y="533" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="573.41" y="543.5" ></text>
+</g>
+<g >
+<title>kernel_fpu_begin_mask (10,101,010 samples, 0.06%)</title><rect x="118.6" y="757" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="121.58" y="767.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="645" width="0.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="1347.47" y="655.5" ></text>
+</g>
+<g >
+<title>ima_file_check (10,101,010 samples, 0.06%)</title><rect x="554.6" y="581" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="557.64" y="591.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1115.9" y="677" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1118.93" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="867.2" y="629" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="870.25" y="639.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,101,010 samples, 0.06%)</title><rect x="926.8" y="453" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="929.79" y="463.5" ></text>
+</g>
+<g >
+<title>tcp_send_ack (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="245" width="2.6" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" />
+<text x="1367.61" y="255.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="783.2" y="661" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="786.19" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="710.5" y="661" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="713.51" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="181.6" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="184.62" y="719.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (20,202,020 samples, 0.13%)</title><rect x="775.3" y="549" width="1.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="778.30" y="559.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="502.1" y="565" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="505.11" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="352.4" y="613" width="0.8" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="355.37" y="623.5" ></text>
+</g>
+<g >
+<title>filp_flush (10,101,010 samples, 0.06%)</title><rect x="418.0" y="789" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" />
+<text x="421.05" y="799.5" ></text>
+</g>
+<g >
+<title>d_flags_for_inode (10,101,010 samples, 0.06%)</title><rect x="126.5" y="773" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="129.46" y="783.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1223.6" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1226.63" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="1087.9" y="725" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1090.91" y="735.5" ></text>
+</g>
+<g >
+<title>storvsc_do_io (10,101,010 samples, 0.06%)</title><rect x="1134.3" y="293" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1137.31" y="303.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="651.0" y="581" width="0.8" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="653.96" y="591.5" ></text>
+</g>
+<g >
+<title>__jbd2_journal_file_buffer (10,101,010 samples, 0.06%)</title><rect x="511.7" y="549" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="514.74" y="559.5" ></text>
+</g>
+<g >
+<title>anon_vma_interval_tree_insert (10,101,010 samples, 0.06%)</title><rect x="1279.7" y="677" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="1282.67" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="723.6" y="773" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="726.64" y="783.5" ></text>
+</g>
+<g >
+<title>perf_event_mmap_output (10,101,010 samples, 0.06%)</title><rect x="241.2" y="501" width="0.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="244.17" y="511.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct_nocheck (10,101,010 samples, 0.06%)</title><rect x="1099.3" y="437" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1102.29" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="985.5" y="805" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="988.46" y="815.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="533" width="2.6" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" />
+<text x="1336.08" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_fname_setup_ci_filename (10,101,010 samples, 0.06%)</title><rect x="1265.7" y="725" width="0.8" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="1268.66" y="735.5" ></text>
+</g>
+<g >
+<title>do_mkdirat (434,343,430 samples, 2.73%)</title><rect x="1143.9" y="741" width="37.7" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="1146.95" y="751.5" >do_..</text>
+</g>
+<g >
+<title>__lookup_slow (40,404,040 samples, 0.25%)</title><rect x="633.5" y="629" width="3.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="636.45" y="639.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="368.1" y="661" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="371.13" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_create (20,202,020 samples, 0.13%)</title><rect x="963.6" y="533" width="1.7" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="966.57" y="543.5" ></text>
+</g>
+<g >
+<title>process_execute_and_capture (595,959,590 samples, 3.74%)</title><rect x="1273.5" y="901" width="51.7" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="1276.54" y="911.5" >proce..</text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.13%)</title><rect x="1096.7" y="597" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1099.66" y="607.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="495.1" y="773" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="498.10" y="783.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="759.5" y="677" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="762.54" y="687.5" ></text>
+</g>
+<g >
+<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="474.1" y="661" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="477.09" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (202,020,200 samples, 1.27%)</title><rect x="1087.0" y="773" width="17.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1090.03" y="783.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="395.3" y="565" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="398.28" y="575.5" ></text>
+</g>
+<g >
+<title>clear_page_erms (10,101,010 samples, 0.06%)</title><rect x="791.1" y="421" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" />
+<text x="794.07" y="431.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1055.5" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="1058.51" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="562.5" y="757" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="565.53" y="767.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1026.11" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="879.5" y="661" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="882.51" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="507.4" y="597" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="510.36" y="607.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="183.4" y="629" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="186.38" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_state_process (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="357" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1390.37" y="367.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="107.2" y="821" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="110.20" y="831.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (60,606,060 samples, 0.38%)</title><rect x="315.6" y="725" width="5.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="318.60" y="735.5" ></text>
+</g>
+<g >
+<title>malloc (20,202,020 samples, 0.13%)</title><rect x="644.0" y="725" width="1.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="646.96" y="735.5" ></text>
+</g>
+<g >
+<title>__vfs_getxattr (10,101,010 samples, 0.06%)</title><rect x="779.7" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="782.68" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (90,909,090 samples, 0.57%)</title><rect x="184.3" y="661" width="7.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="187.25" y="671.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="444.3" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="447.31" y="607.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="98.4" y="853" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="101.44" y="863.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="338.4" y="517" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="341.36" y="527.5" ></text>
+</g>
+<g >
+<title>opendir (10,101,010 samples, 0.06%)</title><rect x="858.5" y="757" width="0.9" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="861.49" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="886.5" y="661" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="889.51" y="671.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.06%)</title><rect x="805.1" y="533" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="808.08" y="543.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="517" width="5.2" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1372.86" y="527.5" ></text>
+</g>
+<g >
+<title>do_readlinkat (40,404,040 samples, 0.25%)</title><rect x="491.6" y="677" width="3.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" />
+<text x="494.60" y="687.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="883.9" y="613" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="886.88" y="623.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="846.2" y="629" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="849.23" y="639.5" ></text>
+</g>
+<g >
+<title>__d_instantiate (10,101,010 samples, 0.06%)</title><rect x="605.4" y="613" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="608.43" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.06%)</title><rect x="721.9" y="613" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="724.89" y="623.5" ></text>
+</g>
+<g >
+<title>rmdir (50,505,050 samples, 0.32%)</title><rect x="404.0" y="805" width="4.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="407.04" y="815.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="514.4" y="805" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="517.37" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.19%)</title><rect x="266.6" y="581" width="2.6" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="269.56" y="591.5" ></text>
+</g>
+<g >
+<title>__legitimize_mnt (10,101,010 samples, 0.06%)</title><rect x="368.1" y="629" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" />
+<text x="371.13" y="639.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="734.1" y="597" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="737.15" y="607.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (50,505,050 samples, 0.32%)</title><rect x="742.0" y="597" width="4.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="745.03" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="237.7" y="725" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="240.66" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="689.5" y="629" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="692.49" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="927.7" y="597" width="0.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="930.66" y="607.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (10,101,010 samples, 0.06%)</title><rect x="541.5" y="645" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="544.51" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="535.4" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="538.38" y="719.5" ></text>
+</g>
+<g >
+<title>do_open (50,505,050 samples, 0.32%)</title><rect x="97.6" y="869" width="4.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="100.56" y="879.5" ></text>
+</g>
+<g >
+<title>handle_pte_fault (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="773" width="0.8" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" />
+<text x="1322.07" y="783.5" ></text>
+</g>
+<g >
+<title>fsnotify_find_mark (10,101,010 samples, 0.06%)</title><rect x="418.0" y="757" width="0.9" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="421.05" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="611.6" y="725" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="614.56" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="866.4" y="725" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="869.37" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="772.7" y="469" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="775.68" y="479.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1263.0" y="821" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1266.03" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="678.1" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="681.11" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="524.9" y="725" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="527.87" y="735.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="638.7" y="645" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="641.71" y="655.5" ></text>
+</g>
+<g >
+<title>__dquot_initialize (10,101,010 samples, 0.06%)</title><rect x="1052.9" y="597" width="0.9" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="1055.88" y="607.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (20,202,020 samples, 0.13%)</title><rect x="617.7" y="613" width="1.7" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="620.69" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (10,101,010 samples, 0.06%)</title><rect x="517.0" y="629" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="519.99" y="639.5" ></text>
+</g>
+<g >
+<title>git_config_add_file_ondisk (30,303,030 samples, 0.19%)</title><rect x="1083.5" y="805" width="2.7" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1086.53" y="815.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="682.5" y="821" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="685.49" y="831.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="546.8" y="837" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="549.76" y="847.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="672.0" y="437" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="674.98" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_alloc_inode (10,101,010 samples, 0.06%)</title><rect x="773.6" y="469" width="0.8" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" />
+<text x="776.55" y="479.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (10,101,010 samples, 0.06%)</title><rect x="1042.4" y="677" width="0.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1045.37" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1029.61" y="719.5" ></text>
+</g>
+<g >
+<title>inode_init_always (10,101,010 samples, 0.06%)</title><rect x="1152.7" y="645" width="0.9" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" />
+<text x="1155.70" y="655.5" ></text>
+</g>
+<g >
+<title>add_dirent_to_buf (10,101,010 samples, 0.06%)</title><rect x="1043.2" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1046.25" y="671.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="866.4" y="757" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="869.37" y="767.5" ></text>
+</g>
+<g >
+<title>nf_nat_ipv4_fn (10,101,010 samples, 0.06%)</title><rect x="1374.2" y="325" width="0.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" />
+<text x="1377.24" y="335.5" ></text>
+</g>
+<g >
+<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="587.0" y="453" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="590.04" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="975.8" y="533" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="978.82" y="543.5" ></text>
+</g>
+<g >
+<title>filemap_read (10,101,010 samples, 0.06%)</title><rect x="546.8" y="597" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="549.76" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="888.3" y="709" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="891.26" y="719.5" ></text>
+</g>
+<g >
+<title>rcu_do_batch (10,101,010 samples, 0.06%)</title><rect x="35.4" y="373" width="0.9" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" />
+<text x="38.39" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_free_blocks (50,505,050 samples, 0.32%)</title><rect x="294.6" y="501" width="4.4" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" />
+<text x="297.58" y="511.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="897.9" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="900.89" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="972.3" y="597" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="975.32" y="607.5" ></text>
+</g>
+<g >
+<title>git_config_set_string (10,101,010 samples, 0.06%)</title><rect x="153.6" y="997" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="156.60" y="1007.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="1014.4" y="661" width="0.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="1017.35" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="882.1" y="597" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="885.13" y="607.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="740.3" y="549" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="743.28" y="559.5" ></text>
+</g>
+<g >
+<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="197.4" y="597" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="200.39" y="607.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="496.0" y="645" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="498.98" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (30,303,030 samples, 0.19%)</title><rect x="969.7" y="565" width="2.6" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="972.70" y="575.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="1363.7" y="389" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1366.73" y="399.5" ></text>
+</g>
+<g >
+<title>alloc_inode (30,303,030 samples, 0.19%)</title><rect x="121.2" y="789" width="2.6" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" />
+<text x="124.21" y="799.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1011.7" y="741" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1014.73" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="805" width="7.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1363.23" y="815.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="789" width="6.1" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1335.21" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (111,111,110 samples, 0.70%)</title><rect x="1073.9" y="789" width="9.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1076.90" y="799.5" ></text>
+</g>
+<g >
+<title>ci_cleanup_git_repo (3,222,222,190 samples, 20.24%)</title><rect x="158.9" y="933" width="279.3" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="161.86" y="943.5" >ci_cleanup_git_repo</text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="685.1" y="645" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="688.11" y="655.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="934.7" y="693" width="12.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="937.67" y="703.5" ></text>
+</g>
+<g >
+<title>folio_alloc (10,101,010 samples, 0.06%)</title><rect x="707.9" y="501" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" />
+<text x="710.88" y="511.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_bh (10,101,010 samples, 0.06%)</title><rect x="1332.2" y="725" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="1335.21" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (171,717,170 samples, 1.08%)</title><rect x="77.4" y="933" width="14.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="80.42" y="943.5" ></text>
+</g>
+<g >
+<title>get_unused_fd_flags (10,101,010 samples, 0.06%)</title><rect x="1059.0" y="709" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" />
+<text x="1062.01" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="834.0" y="533" width="0.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="836.97" y="543.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="341" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1336.08" y="351.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="749.9" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="752.91" y="607.5" ></text>
+</g>
+<g >
+<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="740.3" y="405" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="743.28" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_rename (60,606,060 samples, 0.38%)</title><rect x="466.2" y="677" width="5.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="469.21" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1100.2" y="453" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="1103.16" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1087.9" y="693" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1090.91" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="442.6" y="693" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="445.56" y="703.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="12.6" y="677" width="1.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="15.63" y="687.5" ></text>
+</g>
+<g >
+<title>zap_pte_range (20,202,020 samples, 0.13%)</title><rect x="399.7" y="565" width="1.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="402.66" y="575.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="661" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1026.98" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="613" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="1014.73" y="623.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="735.9" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="738.90" y="671.5" ></text>
+</g>
+<g >
+<title>path_init (20,202,020 samples, 0.13%)</title><rect x="892.6" y="581" width="1.8" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" />
+<text x="895.64" y="591.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="876.9" y="597" width="1.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="879.88" y="607.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="712.3" y="549" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="715.26" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1015.2" y="773" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1018.23" y="783.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1043.2" y="629" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1046.25" y="639.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="741" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1258.15" y="751.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (151,515,150 samples, 0.95%)</title><rect x="950.4" y="661" width="13.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="953.43" y="671.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="1232.4" y="597" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1235.39" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="756.0" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="759.04" y="751.5" ></text>
+</g>
+<g >
+<title>evict (101,010,100 samples, 0.63%)</title><rect x="811.2" y="613" width="8.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="814.21" y="623.5" ></text>
+</g>
+<g >
+<title>symlink (30,303,030 samples, 0.19%)</title><rect x="1060.8" y="805" width="2.6" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="1063.76" y="815.5" ></text>
+</g>
+<g >
+<title>git_config_free (20,202,020 samples, 0.13%)</title><rect x="860.2" y="837" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="863.24" y="847.5" ></text>
+</g>
+<g >
+<title>security_file_open (10,101,010 samples, 0.06%)</title><rect x="1049.4" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="1052.38" y="639.5" ></text>
+</g>
+<g >
+<title>__sk_free (10,101,010 samples, 0.06%)</title><rect x="1376.0" y="725" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" />
+<text x="1378.99" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1187.7" y="757" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1190.73" y="767.5" ></text>
+</g>
+<g >
+<title>do_open (30,303,030 samples, 0.19%)</title><rect x="743.8" y="549" width="2.6" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="746.78" y="559.5" ></text>
+</g>
+<g >
+<title>evict (40,404,040 samples, 0.25%)</title><rect x="925.0" y="629" width="3.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="928.04" y="639.5" ></text>
+</g>
+<g >
+<title>_copy_to_user (10,101,010 samples, 0.06%)</title><rect x="442.6" y="613" width="0.8" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" />
+<text x="445.56" y="623.5" ></text>
+</g>
+<g >
+<title>filemap_flush (70,707,070 samples, 0.44%)</title><rect x="1034.5" y="581" width="6.1" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" />
+<text x="1037.49" y="591.5" ></text>
+</g>
+<g >
+<title>truncate_inode_partial_folio (10,101,010 samples, 0.06%)</title><rect x="819.1" y="549" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" />
+<text x="822.09" y="559.5" ></text>
+</g>
+<g >
+<title>__open64_nocancel (10,101,010 samples, 0.06%)</title><rect x="504.7" y="773" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" />
+<text x="507.73" y="783.5" ></text>
+</g>
+<g >
+<title>libjson_to_string (10,101,010 samples, 0.06%)</title><rect x="10.9" y="949" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="13.88" y="959.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="457.4" y="725" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="460.45" y="735.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="534.5" y="597" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="537.51" y="607.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="910.2" y="757" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="913.15" y="767.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1119.4" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1122.43" y="671.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1205.2" y="613" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1208.24" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="378.6" y="613" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="381.64" y="623.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="730.6" y="645" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="733.65" y="655.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="645" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1322.07" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_open (20,202,020 samples, 0.13%)</title><rect x="744.7" y="533" width="1.7" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="747.66" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="287.6" y="565" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="290.58" y="575.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="995.1" y="757" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="998.09" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1188.98" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="443.4" y="677" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="446.44" y="687.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (50,505,050 samples, 0.32%)</title><rect x="1028.4" y="613" width="4.3" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1031.36" y="623.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_pre_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="773.6" y="453" width="0.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="776.55" y="463.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="757" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1202.11" y="767.5" ></text>
+</g>
+<g >
+<title>readdir64 (30,303,030 samples, 0.19%)</title><rect x="879.5" y="693" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="882.51" y="703.5" ></text>
+</g>
+<g >
+<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="778.8" y="629" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="781.81" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="463.6" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="466.58" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="1053.8" y="613" width="0.8" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="1056.76" y="623.5" ></text>
+</g>
+<g >
+<title>path_lookupat (90,909,090 samples, 0.57%)</title><rect x="630.8" y="661" width="7.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="633.82" y="671.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (20,202,020 samples, 0.13%)</title><rect x="645.7" y="581" width="1.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" />
+<text x="648.71" y="591.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="789" width="7.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" />
+<text x="1363.23" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="759.5" y="661" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="762.54" y="671.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1266.5" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="1269.54" y="703.5" ></text>
+</g>
+<g >
+<title>jsonrpc_notification_create (10,101,010 samples, 0.06%)</title><rect x="1348.0" y="933" width="0.8" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" />
+<text x="1350.97" y="943.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (101,010,100 samples, 0.63%)</title><rect x="1368.1" y="885" width="8.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1371.11" y="895.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="765.7" y="501" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="768.67" y="511.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (464,646,460 samples, 2.92%)</title><rect x="1273.5" y="821" width="40.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1276.54" y="831.5" >x64..</text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="677" width="0.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="1322.07" y="687.5" ></text>
+</g>
+<g >
+<title>ksys_write (40,404,040 samples, 0.25%)</title><rect x="515.2" y="709" width="3.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" />
+<text x="518.24" y="719.5" ></text>
+</g>
+<g >
+<title>realloc (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="677" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="1108.42" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1185.1" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1188.10" y="767.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="613" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="1221.38" y="623.5" ></text>
+</g>
+<g >
+<title>mpage_submit_folio (30,303,030 samples, 0.19%)</title><rect x="1101.9" y="453" width="2.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1104.92" y="463.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="834.8" y="597" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" />
+<text x="837.85" y="607.5" ></text>
+</g>
+<g >
+<title>__strftime_l (10,101,010 samples, 0.06%)</title><rect x="555.5" y="869" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="558.52" y="879.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1367.2" y="453" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1370.23" y="463.5" ></text>
+</g>
+<g >
+<title>__libc_fork (494,949,490 samples, 3.11%)</title><rect x="1273.5" y="885" width="42.9" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" />
+<text x="1276.54" y="895.5" >__li..</text>
+</g>
+<g >
+<title>ext4_bread (20,202,020 samples, 0.13%)</title><rect x="617.7" y="597" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="620.69" y="607.5" ></text>
+</g>
+<g >
+<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="581" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" />
+<text x="1262.53" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="777.1" y="645" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="780.06" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="1115.9" y="645" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1118.93" y="655.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="580.0" y="565" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" />
+<text x="583.04" y="575.5" ></text>
+</g>
+<g >
+<title>d_alloc_parallel (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="629" width="1.7" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="1019.98" y="639.5" ></text>
+</g>
+<g >
+<title>do_poll.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1349.7" y="837" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" />
+<text x="1352.72" y="847.5" ></text>
+</g>
+<g >
+<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="501" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" />
+<text x="1221.38" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_sb_block_valid (10,101,010 samples, 0.06%)</title><rect x="587.9" y="501" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" />
+<text x="590.92" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (10,101,010 samples, 0.06%)</title><rect x="713.1" y="613" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="716.13" y="623.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="850.6" y="773" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="853.61" y="783.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="565" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1209.99" y="575.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (50,505,050 samples, 0.32%)</title><rect x="1363.7" y="565" width="4.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" />
+<text x="1366.73" y="575.5" ></text>
+</g>
+<g >
+<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="348.0" y="597" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="350.99" y="607.5" ></text>
+</g>
+<g >
+<title>folio_remove_rmap_ptes (20,202,020 samples, 0.13%)</title><rect x="399.7" y="549" width="1.7" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="402.66" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1260.4" y="725" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1263.41" y="735.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="597" width="1.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1389.50" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1195.6" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="1198.61" y="671.5" ></text>
+</g>
+<g >
+<title>net_send_part (40,404,040 samples, 0.25%)</title><rect x="11.8" y="917" width="3.5" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" />
+<text x="14.75" y="927.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (10,101,010 samples, 0.06%)</title><rect x="35.4" y="549" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="38.39" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1042.4" y="613" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1045.37" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_create (80,808,080 samples, 0.51%)</title><rect x="996.8" y="613" width="7.0" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="999.84" y="623.5" ></text>
+</g>
+<g >
+<title>process_backlog (20,202,020 samples, 0.13%)</title><rect x="12.6" y="453" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="15.63" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="684.2" y="789" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="687.24" y="799.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (111,111,110 samples, 0.70%)</title><rect x="32.8" y="821" width="9.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="35.77" y="831.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_put (10,101,010 samples, 0.06%)</title><rect x="1370.7" y="293" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" />
+<text x="1373.74" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (10,101,010 samples, 0.06%)</title><rect x="774.4" y="517" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="777.43" y="527.5" ></text>
+</g>
+<g >
+<title>do_faccessat (40,404,040 samples, 0.25%)</title><rect x="897.9" y="661" width="3.5" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" />
+<text x="900.89" y="671.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="356.8" y="517" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="359.75" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="439.9" y="629" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="442.94" y="639.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="985.5" y="565" width="0.8" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="988.46" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="778.8" y="613" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="781.81" y="623.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="405" width="2.6" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="1336.08" y="415.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="645.7" y="549" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" />
+<text x="648.71" y="559.5" ></text>
+</g>
+<g >
+<title>d_alloc (10,101,010 samples, 0.06%)</title><rect x="146.6" y="821" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="149.60" y="831.5" ></text>
+</g>
+<g >
+<title>mpage_submit_folio (10,101,010 samples, 0.06%)</title><rect x="795.4" y="453" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="798.44" y="463.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (212,121,210 samples, 1.33%)</title><rect x="73.9" y="997" width="18.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="76.92" y="1007.5" ></text>
+</g>
+<g >
+<title>submit_bio_wait_endio (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="597" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" />
+<text x="1241.52" y="607.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="1003.8" y="629" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="1006.85" y="639.5" ></text>
+</g>
+<g >
+<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="235.0" y="501" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="238.04" y="511.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="945.2" y="677" width="1.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="948.18" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="684.2" y="805" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="687.24" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_append (50,505,050 samples, 0.32%)</title><rect x="1044.1" y="661" width="4.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1047.12" y="671.5" ></text>
+</g>
+<g >
+<title>lookup_one_qstr_excl (10,101,010 samples, 0.06%)</title><rect x="662.3" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="665.35" y="671.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="780.6" y="693" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="783.56" y="703.5" ></text>
+</g>
+<g >
+<title>git_signature_default (20,202,020 samples, 0.13%)</title><rect x="727.1" y="789" width="1.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="730.14" y="799.5" ></text>
+</g>
+<g >
+<title>__ext4_new_inode (70,707,070 samples, 0.44%)</title><rect x="1147.4" y="693" width="6.2" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1150.45" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="381.3" y="517" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="384.27" y="527.5" ></text>
+</g>
+<g >
+<title>fsnotify (10,101,010 samples, 0.06%)</title><rect x="996.0" y="629" width="0.8" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" />
+<text x="998.96" y="639.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="473.2" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="476.21" y="703.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="545.0" y="789" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="548.01" y="799.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="722.8" y="725" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="725.77" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="539.8" y="821" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="542.76" y="831.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="558.1" y="741" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="561.15" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (161,616,160 samples, 1.02%)</title><rect x="10.0" y="1029" width="14.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="13.00" y="1039.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="436.4" y="853" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="439.43" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="484.6" y="437" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="487.59" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="484.6" y="453" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" />
+<text x="487.59" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (10,101,010 samples, 0.06%)</title><rect x="705.3" y="533" width="0.8" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="708.25" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.19%)</title><rect x="311.2" y="741" width="2.6" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="314.22" y="751.5" ></text>
+</g>
+<g >
+<title>path_lookupat (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="661" width="2.6" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1202.11" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="856.7" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="859.74" y="799.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="899.6" y="581" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="902.64" y="591.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="730.6" y="677" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="733.65" y="687.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="831.3" y="773" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="834.35" y="783.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="92.3" y="853" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="95.31" y="863.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rmdir (50,505,050 samples, 0.32%)</title><rect x="404.0" y="741" width="4.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" />
+<text x="407.04" y="751.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="501" width="4.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="1380.74" y="511.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="641.3" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="644.33" y="767.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="936.4" y="565" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="939.42" y="575.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="629" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1108.42" y="639.5" ></text>
+</g>
+<g >
+<title>start_this_handle (10,101,010 samples, 0.06%)</title><rect x="278.8" y="549" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="281.82" y="559.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getdents64 (20,202,020 samples, 0.13%)</title><rect x="1236.8" y="693" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1239.76" y="703.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1344.5" y="725" width="1.7" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="1347.47" y="735.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="734.1" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="737.15" y="703.5" ></text>
+</g>
+<g >
+<title>half_md4_transform.isra.0 (10,101,010 samples, 0.06%)</title><rect x="250.8" y="565" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="253.80" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_bio_write_folio (10,101,010 samples, 0.06%)</title><rect x="672.0" y="453" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="674.98" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.82%)</title><rect x="1049.4" y="789" width="11.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1052.38" y="799.5" ></text>
+</g>
+<g >
+<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="883.9" y="581" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" />
+<text x="886.88" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="406.7" y="645" width="0.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="409.66" y="655.5" ></text>
+</g>
+<g >
+<title>crc32c_pcl_intel_update (20,202,020 samples, 0.13%)</title><rect x="1165.8" y="453" width="1.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" />
+<text x="1168.84" y="463.5" ></text>
+</g>
+<g >
+<title>__ext4_check_dir_entry (10,101,010 samples, 0.06%)</title><rect x="680.7" y="645" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="683.74" y="655.5" ></text>
+</g>
+<g >
+<title>xas_start (10,101,010 samples, 0.06%)</title><rect x="591.4" y="421" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="594.42" y="431.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (30,303,030 samples, 0.19%)</title><rect x="25.8" y="757" width="2.6" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="28.76" y="767.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="428.6" y="805" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="431.55" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_bread (30,303,030 samples, 0.19%)</title><rect x="332.2" y="613" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="335.23" y="623.5" ></text>
+</g>
+<g >
+<title>do_vmi_align_munmap (10,101,010 samples, 0.06%)</title><rect x="429.4" y="725" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" />
+<text x="432.43" y="735.5" ></text>
+</g>
+<g >
+<title>putname (10,101,010 samples, 0.06%)</title><rect x="1189.5" y="629" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="1192.48" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="453.1" y="661" width="0.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="456.07" y="671.5" ></text>
+</g>
+<g >
+<title>new_inode (10,101,010 samples, 0.06%)</title><rect x="953.9" y="549" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" />
+<text x="956.93" y="559.5" ></text>
+</g>
+<g >
+<title>git_odb_backend_pack (20,202,020 samples, 0.13%)</title><rect x="858.5" y="805" width="1.7" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" />
+<text x="861.49" y="815.5" ></text>
+</g>
+<g >
+<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="1169.3" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1172.34" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1197.4" y="757" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1200.36" y="767.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_pre_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="577.4" y="549" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" />
+<text x="580.41" y="559.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_uncharge (10,101,010 samples, 0.06%)</title><rect x="35.4" y="309" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="38.39" y="319.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="972.3" y="693" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="975.32" y="703.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.57%)</title><rect x="1041.5" y="789" width="7.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1044.50" y="799.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="911.9" y="709" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="914.90" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1094.0" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1097.04" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_access (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="741" width="1.7" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" />
+<text x="1019.98" y="751.5" ></text>
+</g>
+<g >
+<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="1299.8" y="693" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" />
+<text x="1302.81" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_diskspace_used (30,303,030 samples, 0.19%)</title><rect x="1170.2" y="581" width="2.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1173.22" y="591.5" ></text>
+</g>
+<g >
+<title>rwsem_spin_on_owner (10,101,010 samples, 0.06%)</title><rect x="601.9" y="613" width="0.9" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="604.93" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="654.5" y="533" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="657.47" y="543.5" ></text>
+</g>
+<g >
+<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="459.2" y="741" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" />
+<text x="462.20" y="751.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="489.0" y="725" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="491.97" y="735.5" ></text>
+</g>
+<g >
+<title>do_linkat (101,010,100 samples, 0.63%)</title><rect x="599.3" y="693" width="8.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="602.30" y="703.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="934.7" y="661" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="937.67" y="671.5" ></text>
+</g>
+<g >
+<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="488.1" y="517" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" />
+<text x="491.10" y="527.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="650.1" y="677" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="653.09" y="687.5" ></text>
+</g>
+<g >
+<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="986.3" y="613" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="989.33" y="623.5" ></text>
+</g>
+<g >
+<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="458.3" y="741" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" />
+<text x="461.32" y="751.5" ></text>
+</g>
+<g >
+<title>__folio_start_writeback (10,101,010 samples, 0.06%)</title><rect x="1101.9" y="421" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="1104.92" y="431.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="677" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1258.15" y="687.5" ></text>
+</g>
+<g >
+<title>walk_component (30,303,030 samples, 0.19%)</title><rect x="969.7" y="549" width="2.6" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="972.70" y="559.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="878.6" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="881.63" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (60,606,060 samples, 0.38%)</title><rect x="958.3" y="501" width="5.3" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="961.31" y="511.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="769.2" y="693" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="772.18" y="703.5" ></text>
+</g>
+<g >
+<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="611.6" y="677" width="1.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="614.56" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_mb_use_best_found (10,101,010 samples, 0.06%)</title><rect x="589.7" y="485" width="0.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="592.67" y="495.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1192.1" y="581" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="1195.11" y="591.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="724.5" y="725" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="727.52" y="735.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="752.5" y="629" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="755.54" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="272.7" y="597" width="1.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="275.69" y="607.5" ></text>
+</g>
+<g >
+<title>open64 (20,202,020 samples, 0.13%)</title><rect x="443.4" y="725" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="446.44" y="735.5" ></text>
+</g>
+<g >
+<title>readdir64 (20,202,020 samples, 0.13%)</title><rect x="193.0" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="196.01" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_append (131,313,130 samples, 0.82%)</title><rect x="581.8" y="613" width="11.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="584.79" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_unlink (10,101,010 samples, 0.06%)</title><rect x="428.6" y="741" width="0.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="431.55" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1195.6" y="725" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1198.61" y="735.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (20,202,020 samples, 0.13%)</title><rect x="162.4" y="757" width="1.7" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" />
+<text x="165.36" y="767.5" ></text>
+</g>
+<g >
+<title>dput (50,505,050 samples, 0.32%)</title><rect x="461.8" y="709" width="4.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="464.83" y="719.5" ></text>
+</g>
+<g >
+<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="730.6" y="597" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="733.65" y="607.5" ></text>
+</g>
+<g >
+<title>chdir (30,303,030 samples, 0.19%)</title><rect x="154.5" y="917" width="2.6" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" />
+<text x="157.48" y="927.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="661" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="1221.38" y="671.5" ></text>
+</g>
+<g >
+<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="493.4" y="645" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="496.35" y="655.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1146.6" y="645" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1149.57" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="606.3" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="609.31" y="575.5" ></text>
+</g>
+<g >
+<title>neigh_hh_output (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="549" width="5.2" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" />
+<text x="1372.86" y="559.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="821.7" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="824.71" y="639.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="1247.3" y="805" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1250.27" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="272.7" y="581" width="1.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="275.69" y="591.5" ></text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="835.7" y="773" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="838.72" y="783.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="608.9" y="709" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="611.93" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="504.7" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="507.73" y="767.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="439.9" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="442.94" y="719.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="108.1" y="789" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="111.07" y="799.5" ></text>
+</g>
+<g >
+<title>jbd2_write_access_granted (10,101,010 samples, 0.06%)</title><rect x="1266.5" y="661" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="1269.54" y="671.5" ></text>
+</g>
+<g >
+<title>git_config_add_backend (50,505,050 samples, 0.32%)</title><rect x="500.4" y="773" width="4.3" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" />
+<text x="503.36" y="783.5" ></text>
+</g>
+<g >
+<title>iput (30,303,030 samples, 0.19%)</title><rect x="405.8" y="693" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="408.79" y="703.5" ></text>
+</g>
+<g >
+<title>net_send (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="901" width="6.1" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="1335.21" y="911.5" ></text>
+</g>
+<g >
+<title>ip_rcv (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="357" width="4.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1380.74" y="367.5" ></text>
+</g>
+<g >
+<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1065.1" y="629" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" />
+<text x="1068.14" y="639.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (50,505,050 samples, 0.32%)</title><rect x="1363.7" y="597" width="4.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1366.73" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_generic_delete_entry (10,101,010 samples, 0.06%)</title><rect x="233.3" y="565" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" />
+<text x="236.29" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_init_acl (10,101,010 samples, 0.06%)</title><rect x="117.7" y="805" width="0.9" height="15.0" fill="rgb(0,227,159)" rx="2" ry="2" />
+<text x="120.70" y="815.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="677" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="1243.27" y="687.5" ></text>
+</g>
+<g >
+<title>bvec_alloc (10,101,010 samples, 0.06%)</title><rect x="1103.7" y="405" width="0.8" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="1106.67" y="415.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (20,202,020 samples, 0.13%)</title><rect x="848.0" y="549" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="850.98" y="559.5" ></text>
+</g>
+<g >
+<title>__memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="576.5" y="549" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" />
+<text x="579.54" y="559.5" ></text>
+</g>
+<g >
+<title>open64 (10,101,010 samples, 0.06%)</title><rect x="691.2" y="677" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" />
+<text x="694.24" y="687.5" ></text>
+</g>
+<g >
+<title>__fput (10,101,010 samples, 0.06%)</title><rect x="31.9" y="789" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" />
+<text x="34.89" y="799.5" ></text>
+</g>
+<g >
+<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="979.3" y="517" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" />
+<text x="982.33" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="429.4" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="432.43" y="799.5" ></text>
+</g>
+<g >
+<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="524.0" y="661" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" />
+<text x="527.00" y="671.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (10,101,010 samples, 0.06%)</title><rect x="42.4" y="917" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="45.40" y="927.5" ></text>
+</g>
+<g >
+<title>git_repository_open_ext (333,333,330 samples, 2.09%)</title><rect x="1191.2" y="837" width="28.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="1194.23" y="847.5" >gi..</text>
+</g>
+<g >
+<title>truncate_inode_pages_range (20,202,020 samples, 0.13%)</title><rect x="818.2" y="565" width="1.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="821.21" y="575.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="185.1" y="501" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="188.13" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="91.4" y="773" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="94.43" y="783.5" ></text>
+</g>
+<g >
+<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1141.3" y="565" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1144.32" y="575.5" ></text>
+</g>
+<g >
+<title>dput (10,101,010 samples, 0.06%)</title><rect x="989.8" y="677" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="992.84" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="191.3" y="501" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="194.26" y="511.5" ></text>
+</g>
+<g >
+<title>scsi_dispatch_cmd (10,101,010 samples, 0.06%)</title><rect x="822.6" y="341" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="825.59" y="351.5" ></text>
+</g>
+<g >
+<title>events_to_string (10,101,010 samples, 0.06%)</title><rect x="42.4" y="933" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" />
+<text x="45.40" y="943.5" ></text>
+</g>
+<g >
+<title>ext4_claim_free_clusters (10,101,010 samples, 0.06%)</title><rect x="86.2" y="741" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" />
+<text x="89.18" y="751.5" ></text>
+</g>
+<g >
+<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="474.1" y="613" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" />
+<text x="477.09" y="623.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="1192.1" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1195.11" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_da_map_blocks.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="1069.5" y="597" width="1.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" />
+<text x="1072.52" y="607.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="757" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1248.52" y="767.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="230.7" y="549" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" />
+<text x="233.66" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (90,909,090 samples, 0.57%)</title><rect x="812.1" y="597" width="7.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="815.08" y="607.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1227.1" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="1230.13" y="607.5" ></text>
+</g>
+<g >
+<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="767.4" y="677" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="770.42" y="687.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="366.4" y="645" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="369.38" y="655.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="483.7" y="565" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="486.72" y="575.5" ></text>
+</g>
+<g >
+<title>vfs_write (40,404,040 samples, 0.25%)</title><rect x="805.1" y="645" width="3.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="808.08" y="655.5" ></text>
+</g>
+<g >
+<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1181.6" y="693" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" />
+<text x="1184.60" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="922.4" y="629" width="1.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" />
+<text x="925.41" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="645.7" y="629" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="648.71" y="639.5" ></text>
+</g>
+<g >
+<title>process_backlog (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="421" width="5.2" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" />
+<text x="1372.86" y="431.5" ></text>
+</g>
+<g >
+<title>dentry_unlink_inode (40,404,040 samples, 0.25%)</title><rect x="925.0" y="661" width="3.5" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="928.04" y="671.5" ></text>
+</g>
+<g >
+<title>truncate_cleanup_folio (10,101,010 samples, 0.06%)</title><rect x="389.1" y="613" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="392.15" y="623.5" ></text>
+</g>
+<g >
+<title>__send (40,404,040 samples, 0.25%)</title><rect x="11.8" y="901" width="3.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" />
+<text x="14.75" y="911.5" ></text>
+</g>
+<g >
+<title>ip_rcv (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="373" width="2.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1367.61" y="383.5" ></text>
+</g>
+<g >
+<title>rcu_all_qs (10,101,010 samples, 0.06%)</title><rect x="179.9" y="421" width="0.8" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" />
+<text x="182.87" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_ext_truncate (30,303,030 samples, 0.19%)</title><rect x="179.0" y="501" width="2.6" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" />
+<text x="182.00" y="511.5" ></text>
+</g>
+<g >
+<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="677" width="1.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="1019.98" y="687.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="612.4" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="615.44" y="639.5" ></text>
+</g>
+<g >
+<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="905.8" y="501" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" />
+<text x="908.77" y="511.5" ></text>
+</g>
+<g >
+<title>do_renameat2 (292,929,290 samples, 1.84%)</title><rect x="653.6" y="677" width="25.4" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" />
+<text x="656.59" y="687.5" >d..</text>
+</g>
+<g >
+<title>__libc_start_main (565,656,560 samples, 3.55%)</title><rect x="24.0" y="1029" width="49.0" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="27.01" y="1039.5" >__li..</text>
+</g>
+<g >
+<title>ext4_add_entry (10,101,010 samples, 0.06%)</title><rect x="975.8" y="597" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" />
+<text x="978.82" y="607.5" ></text>
+</g>
+<g >
+<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.06%)</title><rect x="930.3" y="421" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" />
+<text x="933.29" y="431.5" ></text>
+</g>
+<g >
+<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="537.1" y="597" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" />
+<text x="540.13" y="607.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="850.6" y="757" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="853.61" y="767.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="783.2" y="533" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="786.19" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="752.5" y="533" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="755.54" y="543.5" ></text>
+</g>
+<g >
+<title>ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="1230.6" y="581" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="1233.63" y="591.5" ></text>
+</g>
+<g >
+<title>vfs_write (30,303,030 samples, 0.19%)</title><rect x="539.8" y="693" width="2.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="542.76" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.19%)</title><rect x="988.1" y="757" width="2.6" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="991.08" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_evict_inode (50,505,050 samples, 0.32%)</title><rect x="177.2" y="533" width="4.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" />
+<text x="180.25" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_ext_determine_insert_hole (10,101,010 samples, 0.06%)</title><rect x="91.4" y="789" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" />
+<text x="94.43" y="799.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="364.6" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="367.63" y="623.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (20,202,020 samples, 0.13%)</title><rect x="1108.9" y="485" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" />
+<text x="1111.92" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="1108.0" y="709" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1111.05" y="719.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="691.2" y="613" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="694.24" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="606.3" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="609.31" y="591.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1214.9" y="661" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1217.87" y="671.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="485.5" y="677" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="488.47" y="687.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="760.4" y="645" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="763.42" y="655.5" ></text>
+</g>
+<g >
+<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1227.1" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="1230.13" y="623.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="383.9" y="469" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="386.90" y="479.5" ></text>
+</g>
+<g >
+<title>__x64_sys_unlink (50,505,050 samples, 0.32%)</title><rect x="1063.4" y="741" width="4.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" />
+<text x="1066.39" y="751.5" ></text>
+</g>
+<g >
+<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="813.0" y="581" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" />
+<text x="815.96" y="591.5" ></text>
+</g>
+<g >
+<title>mpage_submit_folio (10,101,010 samples, 0.06%)</title><rect x="672.0" y="469" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="674.98" y="479.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.63%)</title><rect x="738.5" y="709" width="8.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="741.53" y="719.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="325" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1140.82" y="335.5" ></text>
+</g>
+<g >
+<title>ext4_free_inode (20,202,020 samples, 0.13%)</title><rect x="788.4" y="549" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="791.44" y="559.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="978.5" y="709" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="981.45" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="449.6" y="757" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="452.57" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="91.4" y="821" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="94.43" y="831.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="974.9" y="517" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" />
+<text x="977.95" y="527.5" ></text>
+</g>
+<g >
+<title>__kmalloc_node (10,101,010 samples, 0.06%)</title><rect x="58.2" y="661" width="0.8" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" />
+<text x="61.16" y="671.5" ></text>
+</g>
+<g >
+<title>security_inode_free (10,101,010 samples, 0.06%)</title><rect x="351.5" y="597" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="354.50" y="607.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="475.8" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="478.84" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="713.1" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="716.13" y="703.5" ></text>
+</g>
+<g >
+<title>__vm_area_free (10,101,010 samples, 0.06%)</title><rect x="918.0" y="421" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" />
+<text x="921.03" y="431.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (70,707,070 samples, 0.44%)</title><rect x="714.0" y="677" width="6.1" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="717.01" y="687.5" ></text>
+</g>
+<g >
+<title>free_unref_page_commit (10,101,010 samples, 0.06%)</title><rect x="1129.9" y="517" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1132.94" y="527.5" ></text>
+</g>
+<g >
+<title>filemap_get_pages (10,101,010 samples, 0.06%)</title><rect x="534.5" y="549" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="537.51" y="559.5" ></text>
+</g>
+<g >
+<title>git_config_snapshot (20,202,020 samples, 0.13%)</title><rect x="727.1" y="773" width="1.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" />
+<text x="730.14" y="783.5" ></text>
+</g>
+<g >
+<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="629" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1248.52" y="639.5" ></text>
+</g>
+<g >
+<title>xas_start (10,101,010 samples, 0.06%)</title><rect x="1017.9" y="517" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" />
+<text x="1020.86" y="527.5" ></text>
+</g>
+<g >
+<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="475.8" y="629" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" />
+<text x="478.84" y="639.5" ></text>
+</g>
+<g >
+<title>__ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="545.9" y="693" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" />
+<text x="548.89" y="703.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (10,101,010 samples, 0.06%)</title><rect x="730.6" y="485" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="733.65" y="495.5" ></text>
+</g>
+<g >
+<title>git_signature_now (10,101,010 samples, 0.06%)</title><rect x="477.6" y="837" width="0.9" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" />
+<text x="480.59" y="847.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="692.1" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="695.12" y="671.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="31.9" y="773" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="34.89" y="783.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="539.8" y="773" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="542.76" y="783.5" ></text>
+</g>
+<g >
+<title>security_inode_getattr (20,202,020 samples, 0.13%)</title><rect x="316.5" y="677" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="319.47" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="693" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1091.78" y="703.5" ></text>
+</g>
+<g >
+<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="565" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1348.34" y="575.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="838.4" y="629" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="841.35" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="348.9" y="629" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" />
+<text x="351.87" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (282,828,280 samples, 1.78%)</title><rect x="341.0" y="757" width="24.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="343.99" y="767.5" >e..</text>
+</g>
+<g >
+<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="746.4" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="749.41" y="703.5" ></text>
+</g>
+<g >
+<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="1001.2" y="565" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" />
+<text x="1004.22" y="575.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="721.0" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="724.02" y="735.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1249.0" y="709" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1252.02" y="719.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="709" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="1202.11" y="719.5" ></text>
+</g>
+<g >
+<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="263.1" y="533" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" />
+<text x="266.06" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="1057.3" y="613" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" />
+<text x="1060.26" y="623.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1104.5" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="1107.54" y="751.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="1200.9" y="581" width="0.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1203.86" y="591.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="524.9" y="677" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="527.87" y="687.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="492.5" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="495.47" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="853" width="6.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" />
+<text x="1335.21" y="863.5" ></text>
+</g>
+<g >
+<title>ip_rcv (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="357" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" />
+<text x="1345.72" y="367.5" ></text>
+</g>
+<g >
+<title>sk_destruct (10,101,010 samples, 0.06%)</title><rect x="40.6" y="645" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="43.65" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_ext_rm_leaf (30,303,030 samples, 0.19%)</title><rect x="361.1" y="565" width="2.7" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" />
+<text x="364.13" y="575.5" ></text>
+</g>
+<g >
+<title>filemap_fdatawrite_wbc (60,606,060 samples, 0.38%)</title><rect x="791.9" y="549" width="5.3" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" />
+<text x="794.94" y="559.5" ></text>
+</g>
+<g >
+<title>__memset (10,101,010 samples, 0.06%)</title><rect x="1195.6" y="645" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="1198.61" y="655.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (50,505,050 samples, 0.32%)</title><rect x="24.9" y="853" width="4.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="27.89" y="863.5" ></text>
+</g>
+<g >
+<title>ext4_group_desc_csum_set (10,101,010 samples, 0.06%)</title><rect x="658.0" y="437" width="0.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" />
+<text x="660.97" y="447.5" ></text>
+</g>
+<g >
+<title>cfree (10,101,010 samples, 0.06%)</title><rect x="849.7" y="789" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" />
+<text x="852.73" y="799.5" ></text>
+</g>
+<g >
+<title>current_obj_cgroup (10,101,010 samples, 0.06%)</title><rect x="918.0" y="565" width="0.9" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" />
+<text x="921.03" y="575.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited_flags (10,101,010 samples, 0.06%)</title><rect x="967.9" y="533" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="970.94" y="543.5" ></text>
+</g>
+<g >
+<title>__es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="1110.7" y="453" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" />
+<text x="1113.67" y="463.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (30,303,030 samples, 0.19%)</title><rect x="453.9" y="597" width="2.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" />
+<text x="456.95" y="607.5" ></text>
+</g>
+<g >
+<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="735.9" y="645" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" />
+<text x="738.90" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="1080.9" y="597" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1083.90" y="607.5" ></text>
+</g>
+<g >
+<title>server_wait (20,202,020 samples, 0.13%)</title><rect x="22.3" y="981" width="1.7" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" />
+<text x="25.26" y="991.5" ></text>
+</g>
+<g >
+<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="269.2" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" />
+<text x="272.19" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_fin (10,101,010 samples, 0.06%)</title><rect x="38.0" y="181" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="41.02" y="191.5" ></text>
+</g>
+<g >
+<title>aa_inet_msg_perm (10,101,010 samples, 0.06%)</title><rect x="1337.5" y="741" width="0.8" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" />
+<text x="1340.46" y="751.5" ></text>
+</g>
+<g >
+<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="749.0" y="613" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" />
+<text x="752.04" y="623.5" ></text>
+</g>
+<g >
+<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="919.8" y="565" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" />
+<text x="922.78" y="575.5" ></text>
+</g>
+<g >
+<title>__napi_poll (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="437" width="2.6" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" />
+<text x="1367.61" y="447.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="798.9" y="661" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="801.95" y="671.5" ></text>
+</g>
+<g >
+<title>event_loop_run (121,212,120 samples, 0.76%)</title><rect x="1349.7" y="949" width="10.5" height="15.0" fill="rgb(0,235,193)" rx="2" ry="2" />
+<text x="1352.72" y="959.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="972.3" y="645" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="975.32" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="700.0" y="517" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="703.00" y="527.5" ></text>
+</g>
+<g >
+<title>anon_inode_getfile (20,202,020 samples, 0.13%)</title><rect x="64.3" y="789" width="1.7" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" />
+<text x="67.29" y="799.5" ></text>
+</g>
+<g >
+<title>__submit_bio (10,101,010 samples, 0.06%)</title><rect x="792.8" y="421" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="795.82" y="431.5" ></text>
+</g>
+<g >
+<title>ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="250.8" y="597" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" />
+<text x="253.80" y="607.5" ></text>
+</g>
+<g >
+<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="315.6" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" />
+<text x="318.60" y="671.5" ></text>
+</g>
+<g >
+<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="986.3" y="661" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" />
+<text x="989.33" y="671.5" ></text>
+</g>
+<g >
+<title>storvsc_queuecommand (20,202,020 samples, 0.13%)</title><rect x="1133.4" y="309" width="1.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" />
+<text x="1136.44" y="319.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (20,202,020 samples, 0.13%)</title><rect x="675.5" y="581" width="1.7" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="678.48" y="591.5" ></text>
+</g>
+<g >
+<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="780.6" y="725" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="783.56" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="746.4" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="749.41" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1270.9" y="661" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" />
+<text x="1273.91" y="671.5" ></text>
+</g>
+<g >
+<title>git_repository_config_snapshot (101,010,100 samples, 0.63%)</title><rect x="1211.4" y="805" width="8.7" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" />
+<text x="1214.37" y="815.5" ></text>
+</g>
+<g >
+<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1192.1" y="597" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" />
+<text x="1195.11" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="546.8" y="501" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" />
+<text x="549.76" y="511.5" ></text>
+</g>
+<g >
+<title>git_reference_name_to_id (40,404,040 samples, 0.25%)</title><rect x="453.9" y="789" width="3.5" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" />
+<text x="456.95" y="799.5" ></text>
+</g>
+<g >
+<title>ip_local_out (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="629" width="2.6" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" />
+<text x="1336.08" y="639.5" ></text>
+</g>
+<g >
+<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="514.4" y="741" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="517.37" y="751.5" ></text>
+</g>
+<g >
+<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="747.3" y="709" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="750.28" y="719.5" ></text>
+</g>
+<g >
+<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="781.4" y="549" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" />
+<text x="784.43" y="559.5" ></text>
+</g>
+<g >
+<title>memcg_charge_kernel_stack.part.0 (20,202,020 samples, 0.13%)</title><rect x="56.4" y="677" width="1.8" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" />
+<text x="59.41" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="736.8" y="725" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="739.78" y="735.5" ></text>
+</g>
+<g >
+<title>scsi_dec_host_busy (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="549" width="0.8" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" />
+<text x="1322.07" y="559.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="803.3" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="806.32" y="799.5" ></text>
+</g>
+<g >
+<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="528.4" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" />
+<text x="531.38" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1250.8" y="661" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" />
+<text x="1253.77" y="671.5" ></text>
+</g>
+<g >
+<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="663.2" y="549" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="666.22" y="559.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="985.5" y="677" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="988.46" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="425.9" y="565" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="428.93" y="575.5" ></text>
+</g>
+<g >
+<title>git_reference_normalize_name (10,101,010 samples, 0.06%)</title><rect x="456.6" y="757" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" />
+<text x="459.57" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="657.1" y="469" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" />
+<text x="660.09" y="479.5" ></text>
+</g>
+<g >
+<title>malloc (10,101,010 samples, 0.06%)</title><rect x="799.8" y="661" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" />
+<text x="802.82" y="671.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (50,505,050 samples, 0.32%)</title><rect x="35.4" y="645" width="4.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" />
+<text x="38.39" y="655.5" ></text>
+</g>
+<g >
+<title>write (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="709" width="3.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" />
+<text x="1091.78" y="719.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="783.2" y="693" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="786.19" y="703.5" ></text>
+</g>
+<g >
+<title>jsonrpc_request_create_params (10,101,010 samples, 0.06%)</title><rect x="1348.8" y="917" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="1351.85" y="927.5" ></text>
+</g>
+<g >
+<title>libjson_set_string_internal (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="869" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" />
+<text x="1392.12" y="879.5" ></text>
+</g>
+<g >
+<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="986.3" y="581" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" />
+<text x="989.33" y="591.5" ></text>
+</g>
+<g >
+<title>io_schedule (20,202,020 samples, 0.13%)</title><rect x="659.7" y="469" width="1.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" />
+<text x="662.72" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (70,707,070 samples, 0.44%)</title><rect x="1034.5" y="501" width="6.1" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" />
+<text x="1037.49" y="511.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="1108.0" y="693" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" />
+<text x="1111.05" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_mb_mark_context (10,101,010 samples, 0.06%)</title><rect x="671.1" y="421" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" />
+<text x="674.10" y="431.5" ></text>
+</g>
+<g >
+<title>iput (60,606,060 samples, 0.38%)</title><rect x="410.2" y="725" width="5.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="413.16" y="735.5" ></text>
+</g>
+<g >
+<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="853.2" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="856.24" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="467.1" y="517" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="470.08" y="527.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="738.5" y="789" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="741.53" y="799.5" ></text>
+</g>
+<g >
+<title>[libgit2.so.1.7.2] (696,969,690 samples, 4.38%)</title><rect x="479.3" y="869" width="60.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="482.34" y="879.5" >[libgi..</text>
+</g>
+<g >
+<title>dd_has_work (10,101,010 samples, 0.06%)</title><rect x="1135.2" y="357" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" />
+<text x="1138.19" y="367.5" ></text>
+</g>
+<g >
+<title>__filename_parentat (10,101,010 samples, 0.06%)</title><rect x="260.4" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" />
+<text x="263.43" y="671.5" ></text>
+</g>
+<g >
+<title>opendir (30,303,030 samples, 0.19%)</title><rect x="876.9" y="693" width="2.6" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" />
+<text x="879.88" y="703.5" ></text>
+</g>
+<g >
+<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="808.6" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" />
+<text x="811.58" y="735.5" ></text>
+</g>
+<g >
+<title>__file_remove_privs (10,101,010 samples, 0.06%)</title><rect x="515.2" y="629" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" />
+<text x="518.24" y="639.5" ></text>
+</g>
+<g >
+<title>iput (20,202,020 samples, 0.13%)</title><rect x="1063.4" y="709" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" />
+<text x="1066.39" y="719.5" ></text>
+</g>
+<g >
+<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="293" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" />
+<text x="1140.82" y="303.5" ></text>
+</g>
+<g >
+<title>evict (50,505,050 samples, 0.32%)</title><rect x="411.0" y="709" width="4.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" />
+<text x="414.04" y="719.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="482.8" y="597" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" />
+<text x="485.84" y="607.5" ></text>
+</g>
+<g >
+<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="882.1" y="549" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" />
+<text x="885.13" y="559.5" ></text>
+</g>
+<g >
+<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="411.9" y="661" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" />
+<text x="414.92" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_add_nondir (10,101,010 samples, 0.06%)</title><rect x="964.4" y="517" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" />
+<text x="967.44" y="527.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="853" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" />
+<text x="1322.07" y="863.5" ></text>
+</g>
+<g >
+<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="941.7" y="517" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" />
+<text x="944.68" y="527.5" ></text>
+</g>
+<g >
+<title>select_collect (10,101,010 samples, 0.06%)</title><rect x="210.5" y="565" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" />
+<text x="213.52" y="575.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (10,101,010 samples, 0.06%)</title><rect x="1366.4" y="133" width="0.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" />
+<text x="1369.36" y="143.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (70,707,070 samples, 0.44%)</title><rect x="1034.5" y="517" width="6.1" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" />
+<text x="1037.49" y="527.5" ></text>
+</g>
+<g >
+<title>schedule (10,101,010 samples, 0.06%)</title><rect x="108.1" y="693" width="0.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" />
+<text x="111.07" y="703.5" ></text>
+</g>
+<g >
+<title>do_rmdir (50,505,050 samples, 0.32%)</title><rect x="404.0" y="725" width="4.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" />
+<text x="407.04" y="735.5" ></text>
+</g>
+<g >
+<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="765.7" y="485" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" />
+<text x="768.67" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="524.0" y="677" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" />
+<text x="527.00" y="687.5" ></text>
+</g>
+</g>
+</svg>