aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/flame_graphs/flame_graph_output_long.svg
diff options
context:
space:
mode:
Diffstat (limited to 'flame_graphs/flame_graph_output_long.svg')
-rw-r--r--flame_graphs/flame_graph_output_long.svg35250
1 files changed, 35250 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>